/* ===== CREDIT CARD PAGE STYLES WITH PREFIX ===== */

/* Variables CSS con prefijo para Credit Card */
:root {
    --cc-primary-green: #00ff88;
    --cc-primary-green-dark: #00cc66;
    --cc-primary-green-light: #33ff99;
    --cc-primary-purple: #8b5cf6;
    --cc-primary-purple-dark: #7c3aed;
    --cc-primary-black: #000000;
    --cc-primary-gray: #1a1a1a;
    --cc-primary-gray-light: #2d2d2d;
    --cc-text-white: #ffffff;
    --cc-text-gray: #b3b3b3;
    --cc-text-gray-light: #e5e5e5;
    --cc-gradient-primary: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    --cc-gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --cc-gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    --cc-gradient-warm: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 50%, #ffa8a8 100%);
    --cc-gradient-cool: linear-gradient(135deg, #4ecdc4 0%, #44b3d6 50%, #96ceb4 100%);
    --cc-shadow-green: 0 20px 40px rgba(0, 255, 136, 0.3);
    --cc-shadow-purple: 0 20px 40px rgba(139, 92, 246, 0.3);
    --cc-shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Base Styles */
.cc-section {
    background-color: var(--cc-primary-black);
    color: var(--cc-text-white);
    padding: clamp(40px, 8vw, 80px) 0;
    position: relative;
}

.cc-section--dark {
    background: var(--cc-gradient-dark);
}

.cc-section--purple {
    background: linear-gradient(135deg, #1a0a1a 0%, #2d1a2d 50%, #1a1a1a 100%);
    position: relative;
}

.cc-section--purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cc-section--benefits {
    background: linear-gradient(135deg, #0d1a0d 0%, #1a2d1a 50%, #0d1a0d 100%);
    position: relative;
}

.cc-section--benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Hero Section */
.cc-hero {
    background: linear-gradient(135deg, var(--cc-primary-black) 0%, rgba(0, 255, 136, 0.2) 100%);
    position: relative;
    overflow: hidden;
    color: var(--cc-text-white);
    padding: clamp(60px, 10vw, 80px) 0;
    min-height: 100vh;
}

.cc-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 255, 136, 0.15), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.cc-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 255, 136, 0.4), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(139, 92, 246, 0.4), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 107, 107, 0.4), transparent),
        radial-gradient(1px 1px at 60% 90%, rgba(124, 58, 237, 0.4), transparent);
    background-repeat: repeat;
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
    animation: cc-float 20s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes cc-float {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(-10px) translateX(-10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.cc-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    gap: clamp(2rem, 6vw, 4rem);
}

.cc-hero__left,
.cc-hero__right {
    flex: 1;
}

.cc-hero__text {
    max-width: 540px;
}

.cc-hero__title {
    color: var(--cc-text-white);
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cc-hero__highlight {
    color: var(--cc-primary-green);
    font-weight: bold;
}

.cc-hero__description {
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.6;
    color: var(--cc-text-gray);
    margin-bottom: 1.5rem;
}

.cc-hero__cta {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 600;
    margin: 15px 0;
    color: var(--cc-primary-green);
}

.cc-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cc-card-image {
    width: clamp(300px, 80vw, 500px);
    height: auto;
    margin-top: 20px;
    box-shadow: var(--cc-shadow-dark);
    border-radius: 15px;
    animation: cc-card-float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

@keyframes cc-card-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Buttons */
.cc-btn {
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.5rem);
    border-radius: 30px;
    font-weight: 600;
    font-size: clamp(14px, 2.5vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cc-btn--primary {
    background: var(--cc-gradient-primary);
    color: var(--cc-primary-black);
}

.cc-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--cc-shadow-green);
}

.cc-btn--download {
    background: var(--cc-gradient-primary);
    color: var(--cc-primary-black);
    width: 100%;
    max-width: 300px;
}

.cc-btn--download:hover {
    transform: translateY(-2px);
    box-shadow: var(--cc-shadow-green);
}

/* Card Promo Container */
.cc-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 4rem) 0;
    gap: clamp(2rem, 6vw, 4rem);
    position: relative;
}

.cc-promo__content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.cc-promo__image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cc-promo__image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(250px, 50vw, 400px);
    height: clamp(250px, 50vw, 400px);
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: cc-pulse 4s ease-in-out infinite;
}

@keyframes cc-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.cc-app-image {
    max-width: 110%;
    height: auto;
    margin-left: -5%;
    transform-origin: center center;
    animation: cc-card-float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 1;
}

.cc-image-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.cc-image-decoration--top-right {
    width: clamp(100px, 20vw, 150px);
    height: clamp(100px, 20vw, 150px);
    top: clamp(-20px, -4vw, -30px);
    right: clamp(-20px, -4vw, -30px);
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, rgba(0, 255, 136, 0) 70%);
}

.cc-image-decoration--bottom-left {
    width: clamp(150px, 25vw, 200px);
    height: clamp(150px, 25vw, 200px);
    bottom: clamp(-30px, -5vw, -40px);
    left: clamp(-30px, -5vw, -40px);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0) 70%);
}

/* Steps */
.cc-steps {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.cc-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-step:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: var(--cc-primary-green);
}

.cc-step__number {
    background-color: var(--cc-primary-green);
    color: var(--cc-primary-black);
    width: clamp(32px, 6vw, 36px);
    height: clamp(32px, 6vw, 36px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    flex-shrink: 0;
}

.cc-step__content {
    flex: 1;
}

.cc-step__title {
    color: var(--cc-primary-green);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
}

.cc-step__text {
    color: var(--cc-text-gray);
    font-size: clamp(14px, 2.5vw, 16px);
    margin: 0;
    line-height: 1.6;
}

.cc-cta-buttons {
    margin-top: clamp(2rem, 4vw, 3rem);
}

/* Fees Comparison */
.cc-fees-comparison {
    max-width: 1000px;
    margin: clamp(2rem, 5vw, 4rem) auto;
    background: linear-gradient(135deg, var(--cc-primary-gray) 0%, var(--cc-primary-gray-light) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--cc-shadow-dark);
    position: relative;
    z-index: 1;
}

.cc-comparison-table {
    display: flex;
    width: 100%;
}

.cc-comparison-col {
    flex: 1;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
}

.cc-comparison-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cc-comparison-col--transfermobil {
    background: linear-gradient(135deg, var(--cc-primary-black) 0%, rgba(0, 255, 136, 0.1) 100%);
}

.cc-comparison-col--transfermobil::before {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
}

.cc-comparison-col--others {
    background: linear-gradient(135deg, var(--cc-primary-gray) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.cc-comparison-col--others::before {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.cc-comparison-col:hover::before {
    opacity: 1;
}

.cc-comparison-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    position: relative;
    z-index: 1;
}

.cc-comparison-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
}

.cc-comparison-col--transfermobil .cc-comparison-title {
    color: var(--cc-primary-green);
}

.cc-comparison-col--transfermobil .cc-comparison-title::after {
    background-color: var(--cc-primary-green);
}

.cc-comparison-col--others .cc-comparison-title {
    color: var(--cc-primary-purple);
}

.cc-comparison-col--others .cc-comparison-title::after {
    background-color: var(--cc-primary-purple);
}

.cc-fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.75rem, 2vw, 1rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.cc-fee-label {
    font-weight: 500;
    color: var(--cc-text-gray-light);
    font-size: clamp(14px, 2.5vw, 16px);
    flex: 1;
}

.cc-fee-value {
    font-weight: 600;
    font-size: clamp(14px, 2.5vw, 16px);
    text-align: right;
}

.cc-comparison-col--transfermobil .cc-fee-value {
    color: var(--cc-primary-green);
}

.cc-comparison-col--others .cc-fee-value {
    color: #ff6b6b;
}

.cc-cta-note {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
    padding: clamp(1rem, 2vw, 2rem) 0;
    color: var(--cc-text-gray);
    position: relative;
    z-index: 1;
}

.cc-cta-note a {
    color: var(--cc-primary-green);
    font-weight: 600;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cc-cta-note a:hover {
    color: var(--cc-primary-green-light);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Benefit Box */
.cc-benefit-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cc-primary-black) 0%, rgba(0, 255, 136, 0.1) 50%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    overflow: visible;
    position: relative;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
    margin: clamp(2rem, 5vw, 4rem) auto;
    max-width: 1000px;
    box-shadow: var(--cc-shadow-dark);
}

.cc-benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.cc-benefit-sides {
    width: clamp(100px, 20vw, 150px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cc-floating-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: cc-decoration-float 8s ease-in-out infinite;
}

.cc-floating-decoration--left {
    left: clamp(-40px, -8vw, -80px);
    top: clamp(-40px, -8vw, -80px);
    animation-delay: 0s;
}

.cc-floating-decoration--right {
    right: clamp(-40px, -8vw, -80px);
    bottom: clamp(-40px, -8vw, -80px);
    animation-delay: 2s;
}

@keyframes cc-decoration-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(5deg); }
    66% { transform: translateY(-5px) rotate(-3deg); }
}

.cc-decoration-img {
    width: clamp(80px, 15vw, 120px);
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.cc-benefit-content {
    padding: clamp(1rem, 3vw, 2rem);
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cc-benefit-content h2 {
    margin-top: 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1.5rem;
    color: var(--cc-text-white);
}

.cc-benefit-content p {
    color: var(--cc-text-gray);
    margin-bottom: 2rem;
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.6;
}

/* Section Headers */
.cc-section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
}

.cc-section-tag {
    display: inline-block;
    background: var(--cc-gradient-primary);
    color: var(--cc-primary-black);
    font-weight: bold;
    padding: clamp(0.25rem, 1vw, 0.4rem) clamp(0.75rem, 2vw, 1rem);
    border-radius: 20px;
    margin-bottom: 1rem;
    font-size: clamp(12px, 2vw, 14px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cc-section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--cc-text-white);
}

.cc-section-text {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--cc-text-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.cc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 5vw, 3rem);
}

.cc-feature {
    background: linear-gradient(135deg, var(--cc-primary-gray) 0%, var(--cc-primary-gray-light) 100%);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2rem);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cc-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 255, 136, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cc-feature:nth-child(even)::before {
    background: linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
}

.cc-feature:hover::before {
    opacity: 1;
}

.cc-feature:hover {
    transform: translateY(-10px);
    border-color: var(--cc-primary-green);
    box-shadow: var(--cc-shadow-green);
}

.cc-feature:nth-child(even):hover {
    border-color: var(--cc-primary-purple);
    box-shadow: var(--cc-shadow-purple);
}

.cc-feature-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--cc-primary-green);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    position: relative;
    z-index: 1;
}

.cc-feature:nth-child(even) .cc-feature-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    color: var(--cc-primary-purple);
}

.cc-feature-title {
    color: var(--cc-text-white);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cc-feature-text {
    color: var(--cc-text-gray);
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.cc-faq {
    margin-top: clamp(2rem, 5vw, 3rem);
}

.cc-faq-item {
    background: linear-gradient(135deg, var(--cc-primary-gray) 0%, var(--cc-primary-gray-light) 100%);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.cc-faq-item:hover {
    border-color: var(--cc-primary-green);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.cc-faq-question {
    padding: clamp(1rem, 3vw, 1.5rem);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.cc-faq-question h4 {
    margin: 0;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--cc-text-white);
    flex: 1;
    padding-right: 1rem;
    line-height: 1.4;
}

.cc-faq-question i {
    color: var(--cc-primary-green);
    transition: transform 0.3s ease;
    font-size: clamp(14px, 2vw, 16px);
    flex-shrink: 0;
}

.cc-faq-item.active .cc-faq-question i {
    transform: rotate(180deg);
}

.cc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.cc-faq-item.active .cc-faq-answer {
    max-height: 300px;
}

.cc-faq-answer p {
    padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
    margin: 0;
    color: var(--cc-text-gray);
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.6;
}

/* 3D Shapes */
.cc-shape-star {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: var(--cc-gradient-primary);
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.cc-shape-blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: var(--cc-gradient-purple);
    width: clamp(100px, 18vw, 150px);
    height: clamp(100px, 18vw, 150px);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cc-promo {
        gap: 3rem;
    }
    
    .cc-features {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .cc-hero__content,
    .cc-promo {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }
    
    .cc-promo__content,
    .cc-promo__image {
        max-width: 100%;
    }
    
    .cc-comparison-table {
        flex-direction: column;
    }
    
    .cc-benefit-box {
        flex-direction: column;
        padding: 2rem 1rem;
    }
    
    .cc-benefit-content {
        padding: 1rem;
    }
    
    .cc-floating-decoration {
        display: none;
    }
    
    .cc-features {
        grid-template-columns: 1fr;
    }
    
    .cc-step {
        flex-direction: column;
        text-align: center;
    }
    
    .cc-step__number {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cc-app-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .cc-btn--download {
        width: 100%;
        justify-content: center;
    }
    
    .cc-feature,
    .cc-step {
        padding: 1.25rem;
    }
    
    .cc-section {
        padding: clamp(30px, 6vw, 50px) 0;
    }
}

@media (max-width: 360px) {
    .cc-container {
        padding: 0 0.75rem;
    }
    
    .cc-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mejoras para pantallas grandes */
@media (min-width: 1600px) {
    .cc-container {
        max-width: 1600px;
    }
    
    .cc-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animaciones de entrada */
@media (prefers-reduced-motion: no-preference) {
    .cc-feature,
    .cc-step {
        animation: cc-fadeIn 0.6s ease-out forwards;
        opacity: 0;
    }
    
    .cc-feature:nth-child(1) { animation-delay: 0.1s; }
    .cc-feature:nth-child(2) { animation-delay: 0.2s; }
    .cc-feature:nth-child(3) { animation-delay: 0.3s; }
    .cc-feature:nth-child(4) { animation-delay: 0.4s; }
    
    .cc-step:nth-child(1) { animation-delay: 0.1s; }
    .cc-step:nth-child(2) { animation-delay: 0.3s; }
    .cc-step:nth-child(3) { animation-delay: 0.5s; }
}

@keyframes cc-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estados de focus para accesibilidad */
.cc-btn:focus,
.cc-faq-question:focus {
    outline: 2px solid var(--cc-primary-green);
    outline-offset: 2px;
}

/* Mejoras de contraste para accesibilidad */
@media (prefers-contrast: high) {
    .cc-text-gray {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .cc-feature,
    .cc-faq-item {
        border-color: rgba(255, 255, 255, 0.3);
    }
}