/* =====================================================
   CHEGÔ SJK - CLUBE DE CAFÉ | MODERN HOME STYLES
   
   Versão 2.0.0 - Design System #9b6f50
   Variáveis importadas de variables.css
   ===================================================== */

/* HOME-SPECIFIC ALIASES 
   Usando variáveis do Design System para consistência */
:root {
    /* Cores usando a nova paleta primária #9b6f50 */
    --coffee-dark: var(--color-neutral-950);
    --coffee-brown: var(--color-neutral-800);
    --coffee-medium: var(--color-neutral-700);
    --coffee-light: var(--color-primary-500);
    --coffee-cream: var(--color-primary-400);
    --coffee-gold: var(--color-secondary-500);
    --coffee-beige: var(--color-neutral-200);
    --coffee-white: var(--color-neutral-50);
    
    /* Text colors */
    --text-primary: var(--color-text-primary);
    --text-secondary: var(--color-text-secondary);
    --text-muted: var(--color-text-muted);
    
    /* Gradients usando nova paleta */
    --gradient-warm: linear-gradient(135deg, var(--color-neutral-950) 0%, var(--color-primary-800) 50%, var(--color-primary-700) 100%);
    --gradient-gold: linear-gradient(135deg, var(--color-secondary-500) 0%, var(--color-primary-400) 100%);
    --gradient-cream: linear-gradient(135deg, var(--color-neutral-200) 0%, var(--color-neutral-50) 100%);
}

/* =====================================================
   GLOBAL LINK STYLES FOR HOME
   ===================================================== */

/* Default links in light sections - dark color */
body a {
    color: var(--coffee-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

body a:hover {
    color: var(--coffee-cream);
}

/* Links in dark/colored backgrounds - light color */
.hero-elegant a:not(.btn-main):not(.btn-outline),
.cta-section a:not(.btn-cta-white),
.subscription-section a:not(.btn-next):not(.btn-prev):not(.btn-finalizar) {
    color: var(--color-neutral-0);
}

.hero-elegant a:not(.btn-main):not(.btn-outline):hover,
.cta-section a:not(.btn-cta-white):hover,
.subscription-section a:not(.btn-next):not(.btn-prev):not(.btn-finalizar):hover {
    color: var(--color-primary-300);
}

/* Links in light sections */
.benefits-section a,
.products-section a,
.testimonials-section a {
    color: var(--coffee-dark);
}

.benefits-section a:hover,
.products-section a:hover,
.testimonials-section a:hover {
    color: var(--coffee-cream);
}

/* Ensure buttons have correct colors */
.btn-primary,
.btn-secondary {
    text-decoration: none;
}

/* =====================================================
   HERO SECTION - ELEGANT DESIGN
   Usando variáveis do Design System
   ===================================================== */

.hero-elegant {
    background: var(--color-neutral-0);
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}

.hero-wrapper {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-6);
    align-items: stretch;
    padding: var(--space-10) 0;
}

/* -------------------------
   Content Side
   ------------------------- */
.hero-content-side {
    background: var(--color-primary-100);
    padding: var(--space-12);
    border-radius: var(--radius-3xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--color-primary-600);
    margin-bottom: var(--space-6);
    padding: var(--space-2) var(--space-4);
    background: rgba(155, 111, 80, 0.15);
    border-radius: var(--radius-full);
    border: 1px solid rgba(155, 111, 80, 0.25);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-5);
    color: var(--color-neutral-950);
}

.hero-headline span {
    color: var(--color-primary-600);
}

.hero-text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--color-neutral-700);
    margin-bottom: var(--space-5);
}

/* Hero List */
.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-10) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-neutral-800);
}

.hero-list .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--color-primary-500);
    color: var(--color-neutral-0);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--color-primary-500);
    color: var(--color-neutral-0);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    text-decoration: none;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-primary);
}

.btn-main:hover {
    background: var(--color-primary-600);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px -10px rgba(155, 111, 80, 0.5);
}

.btn-main svg {
    transition: transform var(--duration-fast) var(--ease-out);
}

.btn-main:hover svg {
    transform: translateX(3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: transparent;
    color: var(--color-neutral-800);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    text-decoration: none;
    border: 1px solid var(--color-neutral-400);
    transition: all var(--duration-normal) var(--ease-out);
}

.btn-outline:hover {
    background: var(--color-neutral-200);
    border-color: var(--color-neutral-500);
    color: var(--color-neutral-950);
}

/* -------------------------
   Image Side - Grid 2x2
   ------------------------- */
.hero-image-side {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.hero-image-grid .grid-item {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--duration-normal) var(--ease-out);
}

.hero-image-grid .grid-item:hover {
    transform: scale(1.02);
}

.hero-image-grid .grid-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Price Badge */
.hero-badge-price {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-neutral-0);
    padding: var(--space-5) var(--space-6);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    text-align: center;
    z-index: 5;
}

.hero-badge-price .badge-from {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-1);
}

.hero-badge-price strong {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-primary-600);
}

.hero-badge-price .badge-per {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* -------------------------
   Bottom Stats Bar
   ------------------------- */
.hero-bottom {
    background: var(--color-neutral-100);
    border-top: 1px solid var(--color-neutral-200);
    padding: var(--space-6) 0;
}

.hero-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-12);
}

.hero-stats-bar .stat-item {
    text-align: center;
}

.hero-stats-bar .stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--color-primary-600);
    line-height: var(--leading-tight);
}

.hero-stats-bar .stat-item span {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-neutral-600);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.hero-stats-bar .stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-neutral-300);
}

/* -------------------------
   Hero Responsive
   ------------------------- */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }
    
    .hero-content-side {
        padding: var(--space-8);
    }
    
    .hero-headline {
        font-size: var(--text-3xl);
    }
    
    .hero-image-grid .grid-item img {
        height: 180px;
    }
    
    .hero-stats-bar {
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .hero-content-side {
        text-align: center;
        padding: var(--space-8);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-grid .grid-item img {
        height: 160px;
    }
}

@media (max-width: 640px) {
    .hero-elegant {
        padding-top: 40px;
    }
    
    .hero-wrapper {
        padding: var(--space-6) 0;
    }
    
    .hero-content-side {
        padding: var(--space-6);
        border-radius: var(--radius-2xl);
    }
    
    .hero-headline {
        font-size: var(--text-4xl);
        margin-bottom: var(--space-4);
    }
    
    .hero-text {
        font-size: var(--text-base);
        margin-bottom: var(--space-6);
    }
    
    .btn-main {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image-grid {
        gap: var(--space-2);
    }
    
    .hero-image-grid .grid-item img {
        height: 150px;
    }
    
    .hero-image-grid .grid-item {
        border-radius: var(--radius-lg);
    }
    
    .hero-stats-bar {
        flex-wrap: wrap;
        gap: var(--space-6);
    }
    
    .hero-stats-bar .stat-divider {
        display: none;
    }
    
    .hero-stats-bar .stat-item strong {
        font-size: var(--text-2xl);
    }
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */

.benefits-section {
    padding: 40px 0;
    background: var(--color-neutral-100);
    position: relative;
    overflow: hidden;
}

/* Organic Wave Pattern Background */
.benefits-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' preserveAspectRatio='none'%3E%3Cpath d='M0,350 Q150,280 300,320 T600,300 T900,340 T1200,280 L1200,400 L0,400 Z' fill='none' stroke='%23c1957833' stroke-width='1.5'/%3E%3Cpath d='M0,370 Q200,300 400,350 T800,320 T1200,360 L1200,400 L0,400 Z' fill='none' stroke='%23c1957822' stroke-width='1.5'/%3E%3Cpath d='M0,390 Q180,340 350,370 T700,350 T1200,380 L1200,400 L0,400 Z' fill='none' stroke='%23c1957818' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.benefits-section > .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--coffee-light);
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--gradient-cream);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    background: var(--coffee-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--coffee-light);
    box-shadow: var(--shadow-soft);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================================================
   PRODUCT SHOWCASE
   ===================================================== */

.product-showcase {
    padding: 120px 0;
    background: var(--color-neutral-100);
    position: relative;
    overflow: hidden;
}

/* Organic Wave Pattern - Bottom Left */
.product-showcase::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 350px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 350' preserveAspectRatio='none'%3E%3Cpath d='M0,200 Q100,150 200,180 T400,160 T600,200 T800,150' fill='none' stroke='%239b6f5025' stroke-width='2'/%3E%3Cpath d='M0,240 Q120,180 250,220 T500,190 T750,240 T800,200' fill='none' stroke='%239b6f5020' stroke-width='1.5'/%3E%3Cpath d='M0,280 Q80,220 180,260 T380,230 T580,270 T800,220' fill='none' stroke='%239b6f5015' stroke-width='1.5'/%3E%3Cpath d='M0,320 Q100,260 220,300 T450,270 T680,310 T800,260' fill='none' stroke='%239b6f5012' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.product-showcase > .container {
    position: relative;
    z-index: 1;
}

.showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-badge {
    display: inline-block;
    background: var(--coffee-dark);
    color: var(--coffee-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.showcase-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-description {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.showcase-description strong {
    color: var(--coffee-dark);
}

.showcase-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--coffee-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coffee-dark);
    font-size: 12px;
    font-weight: 700;
}

.showcase-pricing {
    margin-bottom: 32px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-prefix {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    margin-right: 8px;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--coffee-dark);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--coffee-dark);
    line-height: 1;
}

.price-cents {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--coffee-dark);
}

.price-total {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--coffee-dark);
    color: var(--coffee-white);
    padding: 20px 40px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(26, 18, 11, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 18, 11, 0.3);
    background: var(--coffee-brown);
}

.btn-cta-large svg {
    transition: transform 0.3s var(--transition-smooth);
}

.btn-cta-large:hover svg {
    transform: translateX(4px);
}

/* Showcase Image */
.showcase-image {
    position: relative;
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.showcase-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.showcase-image-wrapper:hover img {
    transform: scale(1.05);
}

.showcase-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 11, 0.3), transparent);
    pointer-events: none;
}

.showcase-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--coffee-white);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-medium);
}

.floating-emoji {
    font-size: 28px;
}

.floating-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--coffee-dark);
}

/* =====================================================
   SUBSCRIPTION FORM SECTION
   ===================================================== */

.subscription-section {
    padding: 120px 0;
    background: var(--color-neutral-0);
    position: relative;
    overflow: hidden;
}

/* Organic Wave Pattern - Bottom */
.subscription-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 300' preserveAspectRatio='none'%3E%3Cpath d='M0,200 Q200,120 400,180 T800,140 T1200,200' fill='none' stroke='%239b6f5018' stroke-width='1.5'/%3E%3Cpath d='M0,240 Q180,160 380,220 T780,170 T1200,240' fill='none' stroke='%239b6f5012' stroke-width='1.5'/%3E%3Cpath d='M0,280 Q220,200 440,260 T880,210 T1200,280' fill='none' stroke='%239b6f500a' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.subscription-section > .container {
    position: relative;
    z-index: 1;
}

.subscription-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.subscription-info h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.subscription-info > p {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 48px;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--coffee-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--coffee-dark);
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 4px;
}

.step-content p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
}

/* Form Wrapper */
.subscription-form-wrapper {
    background: var(--coffee-white);
    border-radius: 32px;
    padding: 48px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(212, 165, 116, 0.15);
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Progress Bar */
.form-progress {
    margin-bottom: 48px;
}

.progress-track {
    height: 4px;
    background: var(--coffee-beige);
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 33.33%;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.5s var(--transition-smooth);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-indicator {
    width: 40px;
    height: 40px;
    background: var(--coffee-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
}

.progress-step.active .step-indicator {
    background: var(--coffee-cream);
}

.progress-step.completed .step-indicator {
    background: var(--coffee-light);
    color: var(--coffee-white);
}

.step-num {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.progress-step.active .step-num,
.progress-step.completed .step-num {
    color: var(--coffee-dark);
}

.progress-step.completed .step-num {
    display: none;
}

.step-check {
    display: none;
}

.progress-step.completed .step-check {
    display: block;
}

.step-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
}

.progress-step.active .step-label {
    color: var(--coffee-dark);
    font-weight: 500;
}

/* Form Sections */
.form-section {
    display: none;
    animation: fadeIn 0.4s var(--transition-smooth);
}

.form-section.active {
    display: block;
}

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

.form-section-header {
    margin-bottom: 32px;
}

.form-section-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 8px;
}

.form-section-header p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input {
    padding: 14px 18px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--coffee-white);
    transition: all 0.3s var(--transition-smooth);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    outline: none;
    border-color: var(--coffee-cream);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

/* Modern Checkboxes */
.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.checkbox-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-modern input {
    display: none;
}

.checkbox-box {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(212, 165, 116, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--transition-smooth);
}

.checkbox-modern input:checked + .checkbox-box {
    background: var(--coffee-light);
    border-color: var(--coffee-light);
}

.checkbox-box svg {
    opacity: 0;
    color: var(--coffee-white);
    transition: opacity 0.2s;
}

.checkbox-modern input:checked + .checkbox-box svg {
    opacity: 1;
}

.checkbox-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-text a,
.subscription-section .checkbox-text a,
.form-section .checkbox-text a {
    color: var(--coffee-cream) !important;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-text a:hover,
.subscription-section .checkbox-text a:hover,
.form-section .checkbox-text a:hover {
    color: var(--coffee-gold) !important;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
}

.form-actions.dual {
    justify-content: space-between;
}

.btn-next,
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--coffee-dark);
    color: var(--coffee-white);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--coffee-brown);
    transform: translateY(-2px);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-secondary);
    padding: 16px 24px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

.btn-back:hover {
    background: var(--coffee-beige);
    border-color: var(--coffee-cream);
}

/* Form Blocks */
.form-block {
    margin-bottom: 32px;
}

.form-block h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 16px;
}

/* Radio Group Modern */
.radio-group-modern {
    display: flex;
    gap: 16px;
}

.radio-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--coffee-beige);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    flex: 1;
}

.radio-modern:hover {
    background: rgba(212, 165, 116, 0.2);
}

.radio-modern input {
    display: none;
}

.radio-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--coffee-cream);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s var(--transition-smooth);
}

.radio-box::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--coffee-light);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.radio-modern input:checked + .radio-box {
    border-color: var(--coffee-light);
}

.radio-modern input:checked + .radio-box::after {
    opacity: 1;
}

.radio-label {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
}

.conditional-field {
    margin-top: 16px;
    padding: 20px;
    background: var(--coffee-beige);
    border-radius: 12px;
}

.conditional-field label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.conditional-field input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--coffee-white);
}

/* Checkbox Cards */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.checkbox-card {
    cursor: pointer;
}

.checkbox-card input {
    display: none;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    background: var(--coffee-beige);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s var(--transition-smooth);
}

.checkbox-card:hover .card-content {
    background: rgba(212, 165, 116, 0.2);
}

.checkbox-card input:checked + .card-content {
    border-color: var(--coffee-light);
    background: rgba(212, 165, 116, 0.15);
}

.card-icon {
    font-size: 28px;
}

.card-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Taste Cards */
.taste-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.taste-card {
    cursor: pointer;
}

.taste-card input {
    display: none;
}

.taste-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--coffee-beige);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s var(--transition-smooth);
}

.taste-card:hover .taste-content {
    background: rgba(212, 165, 116, 0.2);
}

.taste-card input:checked + .taste-content {
    border-color: var(--coffee-light);
    background: rgba(212, 165, 116, 0.15);
}

.taste-emoji {
    font-size: 36px;
}

.taste-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--coffee-dark);
    display: block;
}

.taste-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

/* Type Selector */
.type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.type-option {
    cursor: pointer;
}

.type-option input {
    display: none;
}

.type-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--coffee-beige);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s var(--transition-smooth);
}

.type-option:hover .type-content {
    background: rgba(212, 165, 116, 0.2);
}

.type-option input:checked + .type-content {
    border-color: var(--coffee-light);
    background: rgba(212, 165, 116, 0.15);
}

.type-icon {
    font-size: 40px;
}

.type-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--coffee-dark);
    display: block;
}

.type-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

/* Grind Options */
.opcoes-moagem {
    margin-bottom: 32px;
    animation: fadeIn 0.4s var(--transition-smooth);
}

.opcoes-moagem.hidden {
    display: none;
}

.opcoes-moagem h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 16px;
}

.grind-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
}

.grind-option {
    cursor: pointer;
}

.grind-option input {
    display: none;
}

.grind-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 12px;
    background: var(--coffee-beige);
    border-radius: 12px;
    border: 2px solid transparent;
    text-align: center;
    min-height: 88px;
    transition: all 0.3s var(--transition-smooth);
}

.grind-option:hover .grind-content {
    background: rgba(212, 165, 116, 0.2);
}

.grind-option input:checked + .grind-content {
    border-color: var(--coffee-light);
    background: rgba(212, 165, 116, 0.15);
}

.grind-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--coffee-dark);
    display: block;
}

.grind-use {
    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.35;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
    overflow-wrap: anywhere;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */

.testimonials-section {
    padding: 120px 0;
    background: var(--color-neutral-100);
    position: relative;
    overflow: hidden;
}

/* Organic Wave Pattern - Top & Bottom */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200' preserveAspectRatio='none'%3E%3Cpath d='M0,80 Q200,20 400,60 T800,30 T1200,80' fill='none' stroke='%239b6f5012' stroke-width='1.5'/%3E%3Cpath d='M0,40 Q180,100 380,50 T780,90 T1200,40' fill='none' stroke='%239b6f500c' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.testimonials-section > .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--coffee-white);
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card.featured {
    background: var(--gradient-warm);
    color: var(--coffee-white);
}

.testimonial-stars {
    color: var(--coffee-gold);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--coffee-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--coffee-dark);
}

.testimonial-card.featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: var(--coffee-white);
}

.author-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--coffee-dark);
    display: block;
}

.testimonial-card.featured .author-name {
    color: var(--coffee-white);
}

.author-title {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    display: block;
}

.testimonial-card.featured .author-title {
    color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    padding: 120px 0;
    background: var(--gradient-warm);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 0% 100%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--coffee-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--coffee-white);
    color: var(--coffee-dark);
    padding: 20px 40px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-white svg {
    transition: transform 0.3s var(--transition-smooth);
}

.btn-cta-white:hover svg {
    transform: translateX(4px);
}

/* =====================================================
   LOADING STATE
   ===================================================== */

.form-section.loading {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.form-section.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid var(--coffee-cream);
    border-top-color: var(--coffee-dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 10;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 1024px) {
    .hero-coffee .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-stack {
        height: 350px;
        display: flex;
        justify-content: center;
    }
    
    .hero-card-1 {
        position: relative;
        width: 220px;
        height: 280px;
    }
    
    .hero-card-2,
    .hero-card-3 {
        display: none;
    }
    
    .hero-price-tag {
        bottom: -20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .showcase-image {
        order: -1;
    }
    
    .subscription-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-coffee {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-content h1 {
        text-align: center;
    }
    
    .hero-badge {
        display: flex;
        width: fit-content;
        margin: 0 auto 24px;
    }
    
    .hero-subtitle {
        text-align: center;
        margin: 0 auto 32px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-form-wrapper {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .type-selector {
        grid-template-columns: 1fr;
    }
    
    .grind-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-actions.dual {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .btn-next,
    .btn-submit,
    .btn-back {
        width: 100%;
        justify-content: center;
    }
    
    .cta-content h2 br {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-image-stack {
        height: 280px;
    }
    
    .hero-card-1 {
        width: 180px;
        height: 230px;
    }
    
    .hero-price-tag {
        padding: 16px 20px;
    }
    
    .price-value {
        font-size: 28px;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .grind-options {
        grid-template-columns: 1fr;
    }
    
    .radio-group-modern {
        flex-direction: column;
    }
}

/* =====================================================
   AOS ANIMATIONS (if library not loaded)
   ===================================================== */

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos].aos-animate,
.aos-initialized [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Trigger animations on scroll - simple JS fallback */
.in-view [data-aos] {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* =====================================================
   FORM VALIDATION ERRORS
   ===================================================== */

.form-group.has-error input {
    border-color: #dc2626 !important;
    background-color: #fef2f2;
}

.form-group.has-error input:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}

.form-group .error-message {
    display: block;
    margin-top: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #dc2626;
    font-weight: 500;
}

label.has-error {
    color: #dc2626;
}

label.has-error .checkbox-box {
    border-color: #dc2626;
    background-color: #fef2f2;
}

/* Shake animation for errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.form-group.has-error {
    animation: shake 0.4s ease;
}
