/* =================================================================
   VENETO DISTRIBUTORI - COMPLETE PREMIUM STYLESHEET
   Design System: Corporate Boutique
   ================================================================= 
   ÍNDICE:
   1. Variables & Reset
   2. Header & Navigation
   3. Hero Section (Canvas)
   4. Client Types Section
   5. Benefits Section (Torn Paper)
   6. Products Section (Bento Grid)
   7. Brands Section (Marquee)
   8. Process Timeline
   9. Stats Section (Parallax)
   10. Testimonials
   11. FAQ Accordion
   12. Contact Form (Split Screen)
   13. Footer
   14. Animations & Utilities
   15. Responsive Design
   ================================================================= */

/* -----------------------------------------------------------------
   1. VARIABLES & RESET
   ----------------------------------------------------------------- */
:root {
    /* Color Palette - Corporate Boutique */
    --color-deep-espresso: #1C1917;
    --color-crema-gold: #C8A47E;
    --color-slate-tech: #334155;
    --color-pure-white: #FFFFFF;
    --color-signal-green: #10B981;
    --color-off-white: #F9FAFB;
    
    /* Dark Theme */
    --color-bg-dark: #020617;
    --color-bg-accent: #0f172a;
    
    /* Text Colors */
    --color-text-main: #ffffff;
    --color-text-muted: #94a3b8;
    --color-text-dark: #1a202c;
    
    /* Accent */
    --color-accent: #38bdf8;
    --color-accent-hover: #7dd3fc;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1240px;
    --header-height: 100px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.18);
    --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.2);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* -----------------------------------------------------------------
   2. HEADER & NAVIGATION
   ----------------------------------------------------------------- */
.site-header {
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 25px;
    transition: var(--transition-fast);
}

.logo-img {
    height: 200px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.brand-logo:hover .logo-img {
    opacity: 0.8;
}

.nav-list {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-list a {
    color: var(--color-text-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.nav-list a:hover::after {
    width: 100%;
}

.btn-menu {
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-menu:hover {
    background: var(--color-text-main);
    color: var(--color-bg-dark) !important;
    border-color: var(--color-text-main);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

/* -----------------------------------------------------------------
   3. HERO SECTION (Canvas Animation)
   ----------------------------------------------------------------- */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#beanField {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--color-bg-dark) 90%);
    z-index: 1;
    pointer-events: none;
}

.hero-content-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 3rem;
    width: 100%;
    height: 100%;
}

/* Hero Typography */
.hero-text-block {
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    color: var(--color-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 0.2s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.display-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.display-title .highlight {
    color: var(--color-accent);
    font-style: italic;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 520px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 2px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-accent-hover);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
}

/* Magnetic Button Effect */
.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero Visual */
.hero-visual-block {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.image-mask-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
    opacity: 0;
    transform: translateX(50px);
    animation: revealImage 1.5s cubic-bezier(0.2, 1, 0.3, 1) forwards 0.5s;
}

@keyframes revealImage {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-real {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: sepia(10%) contrast(1.1) brightness(0.9) saturate(0.9);
    transition: transform 0.5s ease;
}

.image-mask-wrapper:hover .hero-image-real {
    transform: scale(1.03);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #fff, transparent);
}

/* -----------------------------------------------------------------
   4. CLIENT TYPES SECTION
   ----------------------------------------------------------------- */
.client-type-section {
    position: relative;
    background-color: var(--color-off-white);
    padding: 8rem 0;
    z-index: 20;
}

/* Section Headers (Global) */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3rem);
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Dark Mode Headers */
.section-header.dark-mode .section-title {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.section-header.dark-mode .section-subtitle {
    color: #cbd5e1 !important;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

.client-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.client-card:hover .card-img {
    transform: scale(1.08);
}

.card-body {
    padding: 2.5rem;
    text-align: center;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.card-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
    margin: 15px auto 0 auto;
}

.card-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* -----------------------------------------------------------------
   5. BENEFITS SECTION (Torn Paper Effect)
   ----------------------------------------------------------------- */
.benefits-section {
    position: relative;
    background-color: var(--color-bg-dark);
    padding-top: 4rem;
    padding-bottom: 8rem;
    margin-top: 80px;
    z-index: 10;
}

/* Torn Paper SVG */
.torn-paper-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%) scaleY(-1);
    z-index: 20;
    pointer-events: none;
}

.torn-paper-top svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.torn-paper-top .element-fill {
    fill: var(--color-bg-dark);
}

/* Uniform Grid for Benefits */
.uniform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    text-align: center;
}

.premium-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-5px);
}

/* Fine Line Icons */
.card-icon-wrapper.icon-fine-line {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: var(--transition);
}

.icon-fine-line svg {
    stroke-width: 1.2px;
    vector-effect: non-scaling-stroke;
}

.premium-card:hover .card-icon-wrapper.icon-fine-line {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* -----------------------------------------------------------------
   6. PRODUCTS SECTION (Bento Grid)
   ----------------------------------------------------------------- */
.products-section {
    background: linear-gradient(180deg, var(--color-off-white) 0%, #ffffff 100%);
    padding: 8rem 0;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 1.5rem;
    margin-top: 4rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-card.large {
    grid-column: span 2;
}

.product-card.medium {
    grid-column: span 2;
}

.product-image-container {
    position: relative;
    height: 50%;
    overflow: hidden;
}

.product-card.large .product-image-container {
    height: 60%;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* =================================================================
   PRODUCTS DUO GRID - Layout de 2 Cards Principais
   ================================================================= */

.products-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-card-featured {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.product-card-featured:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.product-featured-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.product-featured-image .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.product-card-featured:hover .product-featured-image .product-img {
    transform: scale(1.05);
}

.product-featured-image .product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--color-signal-green);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.product-featured-info {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-featured-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-deep-espresso);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-featured-tagline {
    font-size: 1rem;
    color: var(--color-crema-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.product-featured-list {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.product-featured-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

.product-featured-list li svg {
    color: var(--color-signal-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.product-featured-list li span strong {
    color: var(--color-deep-espresso);
}

.product-card-featured .btn-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--color-deep-espresso);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.product-card-featured .btn-product:hover {
    background: var(--color-slate-tech);
    transform: translateX(5px);
}

.product-card-featured .btn-product svg {
    transition: transform 0.3s ease;
}

.product-card-featured .btn-product:hover svg {
    transform: translateX(3px);
}

/* Responsivo - Duo Grid */
@media (max-width: 968px) {
    .products-duo-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-featured-image {
        height: 280px;
    }

    .product-featured-info {
        padding: 2rem;
    }

    .product-featured-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-featured-image {
        height: 220px;
    }

    .product-featured-info {
        padding: 1.5rem;
    }

    .product-featured-name {
        font-size: 1.3rem;
    }

    .product-featured-list li {
        font-size: 0.9rem;
    }

    .product-card-featured .btn-product {
        width: 100%;
        justify-content: center;
    }
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-signal-green);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-deep-espresso);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.product-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #475569;
}

.product-features svg {
    color: var(--color-signal-green);
    flex-shrink: 0;
}

.btn-product {
    background: var(--color-deep-espresso);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
}

.btn-product:hover {
    background: var(--color-slate-tech);
    transform: translateY(-2px);
}

.btn-product-small {
    background: transparent;
    color: var(--color-accent);
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--color-accent);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
    align-self: flex-start;
}

.btn-product-small:hover {
    background: var(--color-accent);
    color: white;
}

/* -----------------------------------------------------------------
   7. BRANDS SECTION (Infinite Marquee)
   ----------------------------------------------------------------- */
.brands-section {
    background: var(--color-off-white);
    padding: 6rem 0;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-logo-item {
    flex: 0 0 500px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3rem;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition);
}

.brand-logo-item:hover {
    filter: grayscale(0%) opacity(1);
}

.marquee-track:hover {
    animation-play-state: paused;
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}
/* =================================================================
   VENETO DISTRIBUTORI - CSS PARTE 2
   Timeline, Stats, Testimonials, FAQ, Contact, Footer
   ================================================================= */

/* =================================================================
   8. PROCESS TIMELINE - COME FUNZIONA (VERSÃO CORRIGIDA)
   Timeline Vertical Interativa com Preenchimento Progressivo
   ================================================================= */

.process-section {
    background-color: var(--color-bg-dark);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Títulos da Seção */
.process-section .section-title {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.process-section .section-subtitle {
    color: #cbd5e1 !important;
}

.process-section .eyebrow {
    color: #C8A47E !important;
}

/* Container da Timeline */
.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 5rem auto 0;
    padding: 20px 0;
}

/* Linha Vertical de Fundo (Cinza) */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
    z-index: 1;
}

/* Linha de Progresso Dourada (Cresce de cima para baixo) */
.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #C8A47E 0%, #D4B896 100%);
    box-shadow: 0 0 20px rgba(200, 164, 126, 0.5);
    transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Quando ativa, a linha cresce */
.timeline-line.active::before {
    height: 100%;
}

/* Cada Passo da Timeline */
.timeline-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 8rem;
    gap: 2rem;
    z-index: 2;
    
    /* Estado Inicial: Invisível */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Último passo sem margem inferior */
.timeline-step:last-child {
    margin-bottom: 0;
}

/* Estado Visível */
.timeline-step.active {
    opacity: 1;
    transform: translateY(0);
}

/* Layout Zig-Zag Alternado */

/* Passos Ímpares (1, 3): Conteúdo à esquerda, marcador no centro */
.timeline-step:nth-child(odd) {
    grid-template-areas: "content marker empty";
}

.timeline-step:nth-child(odd) .step-content {
    grid-area: content;
    text-align: right;
    padding-right: 1rem;
}

.timeline-step:nth-child(odd) .step-marker {
    grid-area: marker;
}

/* Passos Pares (2, 4): Conteúdo à direita, marcador no centro */
.timeline-step:nth-child(even) {
    grid-template-areas: "empty marker content";
}

.timeline-step:nth-child(even) .step-content {
    grid-area: content;
    text-align: left;
    padding-left: 1rem;
}

.timeline-step:nth-child(even) .step-marker {
    grid-area: marker;
}

/* Marcador Circular (Ícone) */
.step-marker {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 3px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 5;
    justify-self: center;
}

/* Ícone dentro do Marcador */
.step-icon {
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease;
    transform: scale(1);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2px;
}

/* Estado Ativo do Marcador */
.timeline-step.active .step-marker {
    border-color: #C8A47E;
    border-width: 3px;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, rgba(200, 164, 126, 0.1) 100%);
    box-shadow: 
        0 0 30px rgba(200, 164, 126, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.timeline-step.active .step-icon {
    color: #C8A47E;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(200, 164, 126, 0.6));
}

/* Animação de Pulso no Marcador Ativo */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.timeline-step.active .step-marker::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid #C8A47E;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Conteúdo do Passo */
.step-content {
    width: 100%;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.step-content p {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 380px;
}

/* Alinhar parágrafo conforme lado */
.timeline-step:nth-child(odd) .step-content p {
    margin-left: auto;
}

.timeline-step:nth-child(even) .step-content p {
    margin-right: auto;
}

/* Número do Passo (Opcional - Badge) */
.step-content h3::before {
    content: attr(data-step);
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: rgba(200, 164, 126, 0.1);
    border: 1px solid rgba(200, 164, 126, 0.3);
    border-radius: 50%;
    font-size: 0.9rem;
    margin-right: 1rem;
    color: #C8A47E;
    font-weight: 600;
    transition: all 0.3s ease;
}

.timeline-step.active .step-content h3::before {
    background: rgba(200, 164, 126, 0.2);
    border-color: #C8A47E;
    box-shadow: 0 0 15px rgba(200, 164, 126, 0.3);
}

/* =================================================================
   RESPONSIVO - MOBILE
   ================================================================= */

@media (max-width: 768px) {
    .timeline-wrapper {
        padding-left: 0;
        max-width: 100%;
    }
    
    /* Linha vai para a esquerda */
    .timeline-line {
        left: 40px;
        transform: translateX(0);
    }
    
    /* Layout vertical simples */
    .timeline-step {
        grid-template-columns: 80px 1fr;
        grid-template-areas: "marker content";
        gap: 1.5rem;
        margin-bottom: 5rem;
        padding-right: 1rem;
    }
    
    .timeline-step:nth-child(odd),
    .timeline-step:nth-child(even) {
        grid-template-areas: "marker content";
    }
    
    /* Marcador alinhado à esquerda */
    .step-marker {
        position: relative;
        left: 0;
        transform: none !important;
        justify-self: start;
        margin-left: 0;
    }
    
    /* Conteúdo sempre à esquerda */
    .step-content {
        text-align: left !important;
        padding: 0 !important;
        grid-area: content;
    }
    
    .step-content p {
        margin: 0 !important;
        max-width: 100%;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    /* Marcador menor no mobile */
    .step-marker {
        width: 60px;
        height: 60px;
    }
    
    .step-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 5rem 0;
    }
    
    .timeline-step {
        margin-bottom: 4rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

/* =================================================================
   MODO PAISAGEM MOBILE
   ================================================================= */

@media (max-width: 768px) and (orientation: landscape) {
    .timeline-step {
        margin-bottom: 3rem;
    }
    
    .step-marker {
        width: 50px;
        height: 50px;
    }
}

/* -----------------------------------------------------------------
   9. STATS SECTION (Parallax Background)
   ----------------------------------------------------------------- */
.stats-section {
    position: relative;
    padding: 8rem 0;
    background: 
        linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.85)),
        url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?q=80&w=2000&auto=format&fit=crop') center/cover fixed;
    color: white;
    overflow: hidden;
}

.stats-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, var(--color-bg-dark));
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item.visible {
    opacity: 1;
    transform: scale(1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
}

.stat-number::after {
    content: '+';
    font-size: 0.6em;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* =================================================================
   10. TESTIMONIALS SECTION (PREMIUM GLASS)
   ================================================================= */
.testimonials-section {
    position: relative;
    background-color: var(--color-bg-dark);
    padding: 8rem 0;
    overflow: hidden;
}

/* Glow de fundo decorativo */
.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

/* Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

/* O Cartão de Vidro (Glass Card) */
.glass-card {
    background: rgba(255, 255, 255, 0.03); /* Fundo ultra sutil */
    backdrop-filter: blur(10px); /* Desfoque atrás */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borda fina */
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

/* Hover Effect: Elevação e Brilho na Borda */
.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(200, 164, 126, 0.3); /* Brilho Dourado na borda */
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Cabeçalho do Card (Estrelas e Aspas) */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.stars {
    color: #C8A47E; /* Dourado */
    letter-spacing: 3px;
    font-size: 1rem;
}

.quote-icon {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1); /* Aspas grandes e sutis */
    margin-top: -20px;
}

/* Texto da Avaliação */
.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e2e8f0; /* Branco sujo para leitura */
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Rodapé do Card (Autor) */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-circle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: linear-gradient(135deg, #C8A47E, #8c6b4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-display);
    flex-shrink: 0;
}

.reviewer-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.reviewer-role {
    font-size: 0.85rem;
    color: #94a3b8; /* Texto muted */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .glass-card {
        padding: 2rem;
    }
}

/* -----------------------------------------------------------------
   11. FAQ ACCORDION
   ----------------------------------------------------------------- */
.faq-section {
    background: var(--color-off-white);
    padding: 8rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-deep-espresso);
    cursor: pointer;
    transition: var(--transition-fast);
    background: white;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* -----------------------------------------------------------------
   12. CONTACT SECTION (Split Screen)
   ----------------------------------------------------------------- */
.contact-section {
    background: white;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.contact-image {
    position: relative;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.contact-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    color: white;
    z-index: 2;
}

.contact-overlay h3 {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.contact-form-wrapper {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-off-white);
}

.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-deep-espresso);
    margin-bottom: 1rem;
}

.form-subtitle {
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid #cbd5e1;
    background: transparent;
    font-size: 1rem;
    font-family: inherit;
    color: var(--color-deep-espresso);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--color-accent);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: #64748b;
    pointer-events: none;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -1rem;
    font-size: 0.85rem;
    color: var(--color-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
}

.form-group select + label {
    top: -1rem;
    font-size: 0.85rem;
    color: var(--color-accent);
}

.btn-form {
    margin-top: 1rem;
    width: 100%;
}

.form-privacy {
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
    margin-top: 1rem;
}

.form-privacy a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* -----------------------------------------------------------------
   13. FOOTER
   ----------------------------------------------------------------- */
.site-footer {
    background: var(--color-deep-espresso);
    color: var(--color-text-muted);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-text-muted);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* Footer Credits */
.footer-credits {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-credits p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}

.footer-credits a {
    color: var(--color-accent);
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-credits a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* -----------------------------------------------------------------
   14. ANIMATIONS & UTILITIES
   ----------------------------------------------------------------- */

/* Reveal on Scroll */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation */
.reveal-element:nth-child(1) { transition-delay: 0.1s; }
.reveal-element:nth-child(2) { transition-delay: 0.2s; }
.reveal-element:nth-child(3) { transition-delay: 0.3s; }
.reveal-element:nth-child(4) { transition-delay: 0.4s; }

/* Loading State */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    animation: spin 1s linear infinite;
}

/* -----------------------------------------------------------------
   15. RESPONSIVE DESIGN
   ----------------------------------------------------------------- */

@media (max-width: 1024px) {
    /* Header */
    .nav-list {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text-block {
        order: 1;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-visual-block {
        order: 2;
        justify-content: center;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-group .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Products Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .product-card.large,
    .product-card.medium {
        grid-column: span 1;
    }
    
    /* Timeline */
    .timeline-step {
        grid-template-columns: 1fr;
        text-align: center !important;
        gap: 1.5rem;
    }
    
    .timeline-step .step-content {
        order: 2 !important;
        text-align: center !important;
    }
    
    .timeline-step .step-number {
        display: none;
    }
    
    .timeline-line {
        left: 2rem;
    }
    
    /* Contact Split */
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .contact-image {
        min-height: 300px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Typography */
    .display-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Containers */
    .container {
        width: 95%;
    }
    
    /* Hero */
    .hero-wrapper {
        min-height: 600px;
    }
    
    /* Benefits Grid */
    .uniform-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    /* Torn Paper */
    .torn-paper-top svg {
        height: 40px;
    }
    
    .benefits-section {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    /* Typography */
    .display-title {
        font-size: 2rem;
    }
    
    .eyebrow {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* Cards */
    .card-body,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Contact */
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-overlay {
        left: 1.5rem;
        bottom: 1.5rem;
    }
    
    .contact-overlay h3 {
        font-size: 2rem;
    }
}
/* =================================================================
   VENETO DISTRIBUTORI - MOBILE MENU ENHANCEMENT
   Adicione este CSS ao final do main.css
   ================================================================= */

/* -----------------------------------------------------------------
   MOBILE NAVIGATION (Hamburguer Menu)
   ----------------------------------------------------------------- */

@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-deep-espresso);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-list a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1rem;
        opacity: 1;
    }
    
    .nav-list a::after {
        display: none;
    }
    
    .btn-menu {
        margin-top: 1rem;
        display: inline-block;
        text-align: center;
    }
    
    /* Mobile Toggle Animation */
    .mobile-toggle {
        position: relative;
        z-index: 100;
        width: 30px;
        height: 24px;
        cursor: pointer;
    }
    
    .mobile-toggle .bar {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
    }
    
    .mobile-toggle .bar:nth-child(1) {
        top: 0;
    }
    
    .mobile-toggle .bar:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-toggle .bar:nth-child(3) {
        bottom: 0;
    }
    
    /* Active State (X) */
    .mobile-toggle.active .bar:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    
    /* Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 98;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Nav Item Animation on Open */
    .main-nav.active .nav-list li {
        animation: slideInRight 0.4s ease forwards;
        opacity: 0;
    }
    
    .main-nav.active .nav-list li:nth-child(1) { animation-delay: 0.1s; }
    .main-nav.active .nav-list li:nth-child(2) { animation-delay: 0.2s; }
    .main-nav.active .nav-list li:nth-child(3) { animation-delay: 0.3s; }
    .main-nav.active .nav-list li:nth-child(4) { animation-delay: 0.4s; }
    .main-nav.active .nav-list li:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* -----------------------------------------------------------------
   MOBILE SPECIFIC IMPROVEMENTS
   ----------------------------------------------------------------- */

@media (max-width: 768px) {
    /* Better touch targets */
    .btn,
    .faq-question,
    .nav-list a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Prevent text selection on double tap */
    .btn,
    .card-title,
    .faq-question {
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Better spacing for mobile */
    section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    /* Optimize images for mobile */
    .hero-image-real,
    .card-img,
    .product-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* -----------------------------------------------------------------
   LANDSCAPE MODE ON MOBILE
   ----------------------------------------------------------------- */

@media (max-width: 1024px) and (orientation: landscape) {
    .hero-wrapper {
        min-height: 500px;
    }
    
    .hero-grid {
        gap: 1rem;
    }
    
    .display-title {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* -----------------------------------------------------------------
   PRINT STYLES (Bonus)
   ----------------------------------------------------------------- */

@media print {
    .site-header,
    .mobile-toggle,
    .scroll-indicator,
    #beanField,
    .vignette-overlay,
    .cta-group,
    .contact-section,
    .site-footer {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title,
    .display-title {
        color: black !important;
    }
    
    .client-card,
    .product-card,
    .testimonial-card {
        page-break-inside: avoid;
    }
}

/* -----------------------------------------------------------------
   ACCESSIBILITY IMPROVEMENTS
   ----------------------------------------------------------------- */

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 1rem 2rem;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    #beanField {
        display: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --color-text-muted: #e5e5e5;
        --color-accent: #00d4ff;
    }
    
    .btn-outline {
        border-width: 2px;
    }
    
    .card-title::after,
    .timeline-line {
        height: 3px;
    }
}

/* Dark mode support (if browser prefers) */
@media (prefers-color-scheme: dark) {
    .client-type-section,
    .products-section,
    .testimonials-section,
    .faq-section {
        /* Already dark, no changes needed */
    }
}