/* ==========================================
   EQUIPILATES - MINIMALIST B&W + CARAMEL
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #FFFFF0;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --caramel: #ff9f4a;          /* Ajustado para melhor contraste WCAG */
    --caramel-dark: #e88530;
    --caramel-light: #ffb875;    /* Ajustado para melhor contraste */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Subtle animated gradient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 148, 63, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 148, 63, 0.02) 0%, transparent 50%);
    animation: subtleMove 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes subtleMove {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

body > * {
    position: relative;
    z-index: 1;
}

::selection {
    background: var(--caramel);
    color: var(--black);
}

/* ==========================================
   PROGRESS BAR
   ========================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--caramel);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    transition: all 0.6s cubic-bezier(0.75, 0, 0.27, 1);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav.hidden {
    transform: translateY(-100%);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    right: 320px;
}

@media (max-width: 768px) {
    .menu-overlay {
        right: 100%;
        width: 100%;
    }
    
    .menu-overlay.active {
        right: 0;
        width: calc(100% - 320px);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .menu-overlay {
        right: 100%;
    }
    
    .menu-overlay.active {
        right: 320px;
    }
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    gap: 50px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.lang-switch {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
    margin-right: 30px;
}

/* ==========================================
   MOBILE LANGUAGE BAR (App-style footer)
   ========================================== */
.mobile-lang-bar {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-lang-bar {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9000;
        display: flex;
        gap: 8px;
        padding: 10px 16px;
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50px;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.05) inset;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-lang-bar.hidden {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
        pointer-events: none;
    }
    
    .mobile-lang-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 30px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .mobile-lang-btn .flag-icon {
        width: 18px;
        height: 13px;
        border-radius: 2px;
        object-fit: cover;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-lang-btn span {
        opacity: 0.9;
    }
    
    .mobile-lang-btn.active {
        background: rgba(255, 148, 63, 0.25);
        border-color: rgba(255, 148, 63, 0.5);
        color: var(--white);
        box-shadow: 0 0 15px rgba(255, 148, 63, 0.2);
    }
    
    .mobile-lang-btn.active .flag-icon {
        box-shadow: 0 2px 8px rgba(255, 148, 63, 0.3);
    }
    
    .mobile-lang-btn:hover:not(.active) {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.2);
        color: var(--white);
        transform: translateY(-2px);
    }
    
    .mobile-lang-btn:active {
        transform: scale(0.96);
    }
}

.lang-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.25);
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    padding: 8px 10px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.lang-btn.active {
    border-color: rgba(255, 148, 63, 0.65);
    background: rgba(255, 148, 63, 0.18);
    color: var(--white);
}

.lang-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 148, 63, 0.65);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
    display: block;
}

/* ==========================================
   HERO SECTION - MODERN REVEAL
   ========================================== */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-container {
    height: 100%;
    width: 100%;
    position: relative;
}

/* Background Carousel with Fade */
.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.bg-item.active {
    opacity: 1;
    pointer-events: auto;
}

.bg-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.content-number {
    font-family: 'Sora', sans-serif;
    font-size: 180px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-main {
    max-width: 800px;
    padding-left: 180px;
    margin-top: 60px;
}

.hero-trust {
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
}

.content-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--caramel);
    margin-bottom: 30px;
    opacity: 1;  /* LCP FIX: Visível por padrão */
    transform: none;
    filter: none;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animação apenas após o primeiro carregamento */
.content-tag.animate-ready {
    opacity: 0;
    transform: translateX(-80px);
    filter: blur(10px);
}

.content-tag.motion-in {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.content-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.title-line {
    display: block;
    opacity: 1;  /* LCP FIX: Visível por padrão para melhor performance */
    transform: none;
    filter: none;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}

/* Animação apenas após o primeiro carregamento */
.title-line.animate-ready {
    opacity: 0;
    transform: translateX(-100px) rotateX(20deg);
    filter: blur(15px);
}

.title-line.motion-in {
    opacity: 1;
    transform: translateX(0) rotateX(0deg);
    filter: blur(0);
}

.title-line.accent {
    color: var(--caramel);
}

.content-description {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 40px;
    opacity: 1;  /* LCP FIX: Visível por padrão */
    transform: none;
    filter: none;
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animação apenas após o primeiro carregamento */
.content-description.animate-ready {
    opacity: 0;
    transform: translateX(-60px) translateY(10px);
    filter: blur(8px);
}

.content-description.motion-in {
    opacity: 1;
    transform: translateX(0) translateY(0);
    filter: blur(0);
}

/* CTAs */
.content-cta {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateX(100px) translateY(-10px);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-cta.motion-in-reverse {
    opacity: 1;
    transform: translateX(0) translateY(0);
    filter: blur(0);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    background: var(--caramel);
    color: var(--black);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    transform-origin: right center;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--caramel-dark);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 148, 63, 0.3);
}

.btn-arrow {
    font-size: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: right center;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

/* Btn Outline para fundos claros */
.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    color: var(--black);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--caramel);
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-dark:hover {
    background: var(--caramel);
    color: var(--white);
    border-color: var(--caramel);
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(200, 126, 64, 0.3);
}

/* ==========================================
   WIZARD SECTION
   ========================================== */

.wizard-section {
    padding: 140px 40px;
}

.wizard-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.wizard-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto 18px;
    max-width: 900px;
    color: var(--black);
}

.wizard-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    max-width: 820px;
    margin: 0 auto 50px;
}

.wizard-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.wizard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 18px;
}

.wizard-field-full {
    grid-column: 1 / -1;
}

.wizard-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.wizard-field input,
.wizard-field select {
    width: 100%;
    padding: 16px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 1);
    color: var(--black);
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-field input:focus,
.wizard-field select:focus {
    outline: none;
    border-color: rgba(255, 148, 63, 0.9);
    box-shadow: 0 0 0 6px rgba(255, 148, 63, 0.15);
}

.wizard-hint {
    margin-top: 10px;
    font-size: 13px;
    color: var(--gray-600);
}

.wizard-result {
    margin-top: 18px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 148, 63, 0.10);
    border: 1px solid rgba(255, 148, 63, 0.25);
    color: var(--black);
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-result.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.wizard-actions {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.wizard-btn {
    flex: 1;
    min-width: 240px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-btn-primary {
    background: var(--caramel);
    border-color: rgba(255, 148, 63, 0.9);
    color: var(--black);
}

.wizard-btn-secondary {
    background: rgba(0, 0, 0, 0.03);
    color: var(--black);
}

.wizard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

.wizard-trust {
    margin-top: 18px;
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
}

#wizardLead {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-mini {
    margin-top: 18px;
    font-size: 13px;
    color: var(--gray-400);
}

/* Hero Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.hero-arrow:hover {
    opacity: 1;
    background: rgba(255, 148, 63, 0.3);
    border-color: rgba(255, 148, 63, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-arrow-prev {
    left: 40px;
}

.hero-arrow-next {
    right: 40px;
}

.hero-arrow svg {
    width: 24px;
    height: 24px;
}

/* Minimal Navigation */
.hero-nav {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.nav-dot {
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
}

.nav-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--caramel);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dot.active::before {
    width: 100%;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.scroll-bar {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: var(--caramel);
    animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
    0%, 100% { transform: translateX(-30px); }
    50% { transform: translateX(60px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--white), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--caramel);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-40px); }
    100% { transform: translateY(80px); }
}

/* ==========================================
   ELASTIC ANIMATIONS FROM SIDES
   ========================================== */

.slide-left,
.slide-right {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slide-left {
    transform: translateX(-100px);
}

.slide-right {
    transform: translateX(100px);
}

.slide-left.active,
.slide-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays for multiple elements */
.slide-left:nth-child(1),
.slide-right:nth-child(1) { transition-delay: 0.1s; }
.slide-left:nth-child(2),
.slide-right:nth-child(2) { transition-delay: 0.2s; }
.slide-left:nth-child(3),
.slide-right:nth-child(3) { transition-delay: 0.3s; }
.slide-left:nth-child(4),
.slide-right:nth-child(4) { transition-delay: 0.4s; }

/* ==========================================
   STICKY SECTIONS WITH BACKGROUNDS
   ========================================== */

.sticky-section {
    min-height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 1;
}

/* Background Colors */
.bg-white {
    background: var(--white);
    color: var(--black);
}

.bg-black {
    background: var(--black);
    color: var(--white);
}

.bg-gray {
    background: var(--gray-100);
    color: var(--black);
}

.bg-caramel {
    background: var(--caramel-light);
    color: var(--black);
}

/* Text colors for different backgrounds */
.bg-white .section-label,
.bg-gray .section-label,
.bg-caramel .section-label {
    color: var(--caramel-dark);
}

.bg-white .sticky-title,
.bg-white .sticky-text,
.bg-gray .sticky-title,
.bg-gray .sticky-text,
.bg-caramel .sticky-title,
.bg-caramel .sticky-text {
    color: var(--black);
}

.bg-white .stat-label,
.bg-gray .stat-label,
.bg-caramel .stat-label {
    color: var(--gray-600);
}

.bg-white .feature-item p,
.bg-gray .feature-item p,
.bg-caramel .feature-item p {
    color: var(--gray-600);
}

/* ==========================================
   STICKY SECTIONS
   ========================================== */

.sticky-section {
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.sticky-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.sticky-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 60px;
}

.sticky-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    transform: scale(1.1);
    transition: all 1s cubic-bezier(0.75, 0, 0.27, 1);
}

.sticky-section.active .sticky-bg {
    transform: scale(1);
    filter: brightness(0.5);
}

/* Dark Section */
.sticky-section.dark {
    background: linear-gradient(135deg, #1a0033 0%, #000000 100%);
}

.sticky-section.dark .sticky-bg {
    filter: brightness(0.3);
}

/* Light Section */
.sticky-section.light {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: var(--black);
}

.sticky-section.light .section-label,
.sticky-section.light .sticky-title,
.sticky-section.light .sticky-text {
    color: var(--black);
}

/* Gradient Section */
.sticky-section.gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.content-wrapper {
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.content-wrapper.centered {
    text-align: center;
    max-width: 1400px;
}

.section-label {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--caramel);
    display: block;
    margin-bottom: 20px;
}

.sticky-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(42px, 7vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.sticky-text {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 50px;
    font-weight: 400;
}

/* ==========================================
   CENTERED SECTIONS (WIREFRAME STYLE)
   ========================================== */

.centered-section {
    padding: 140px 40px;
    position: relative;
}

.centered-section.bg-white {
    background: var(--white);
    color: var(--black);
}

.centered-section.bg-gray {
    background: var(--gray-100);
    color: var(--black);
}

.centered-section.bg-black {
    background: var(--black);
    color: var(--white);
}

.centered-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.centered-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 auto 40px;
    max-width: 900px;
    color: var(--black);
}

.centered-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto 80px;
}

/* Image Trio */
.image-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.trio-item {
    text-align: center;
}

.trio-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trio-item:hover img {
    transform: scale(1.03);
}

.trio-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

/* Why Section */
.why-section {
    padding: 140px 40px;
    background: var(--gray-100);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.benefit-card {
    padding: 48px 36px;
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--caramel);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--black);
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.product-card {
    padding: 40px 32px;
    background: var(--gray-100);
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.product-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 18px;
    font-weight: 700;
    color: var(--caramel);
    background: rgba(255, 148, 63, 0.12);
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.product-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Tech Features Grid */
.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 64px;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tech-feature {
    text-align: left;
}

.tech-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--caramel);
    background: rgba(255, 148, 63, 0.12);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tech-feature h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

.tech-feature p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Simple Gallery */
.simple-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.gallery-item {
    text-align: left;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    margin-bottom: 16px;
}

.gallery-caption h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.gallery-caption p {
    font-size: 14px;
    color: var(--gray-600);
}

/* Stats Display */
.stats-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: var(--caramel);
    margin-bottom: 16px;
}

.stat-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    max-width: 200px;
    margin: 0 auto;
}

/* Testimonials Clean */
.testimonials-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.testimonial-clean {
    padding: 40px;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    font-style: italic;
}

.testimonial-author-clean {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author-clean strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.testimonial-author-clean span {
    font-size: 13px;
    color: var(--gray-600);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 80px 0 60px;
}

.contact-info-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 148, 63, 0.3);
    transform: translateY(-4px);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-400);
}

/* CTA Primary Button */
.cta-primary {
    display: inline-block;
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    background: var(--caramel);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 148, 63, 0.25);
    }
    50% {
        box-shadow: 0 12px 48px rgba(255, 148, 63, 0.4);
    }
}

.cta-primary:hover {
    background: #C49563;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 56px rgba(255, 148, 63, 0.5);
    animation: none;
}

/* Footer Clean */
.footer-clean {
    background: var(--gray-100);
    padding: 80px 40px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-300);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-clean .footer-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    margin-bottom: 8px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-group h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-group a {
    font-size: 15px;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-group a:hover {
    color: var(--caramel);
}

.footer-bottom-clean {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom-clean p {
    font-size: 13px;
    color: var(--gray-600);
}

/* ==========================================
   FIGMA-STYLE MOTION DESIGN
   ========================================== */

/* Smooth reveal with blur effect */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(10px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger animation for children */
.benefits-grid [data-scroll-reveal]:nth-child(1) { transition-delay: 0s; }
.benefits-grid [data-scroll-reveal]:nth-child(2) { transition-delay: 0.1s; }
.benefits-grid [data-scroll-reveal]:nth-child(3) { transition-delay: 0.15s; }
.benefits-grid [data-scroll-reveal]:nth-child(4) { transition-delay: 0.2s; }
.benefits-grid [data-scroll-reveal]:nth-child(5) { transition-delay: 0.25s; }
.benefits-grid [data-scroll-reveal]:nth-child(6) { transition-delay: 0.3s; }

.products-grid [data-scroll-reveal]:nth-child(1) { transition-delay: 0s; }
.products-grid [data-scroll-reveal]:nth-child(2) { transition-delay: 0.08s; }
.products-grid [data-scroll-reveal]:nth-child(3) { transition-delay: 0.16s; }
.products-grid [data-scroll-reveal]:nth-child(4) { transition-delay: 0.24s; }
.products-grid [data-scroll-reveal]:nth-child(5) { transition-delay: 0.32s; }
.products-grid [data-scroll-reveal]:nth-child(6) { transition-delay: 0.4s; }

.testimonials-clean [data-scroll-reveal]:nth-child(1) { transition-delay: 0.1s; }
.testimonials-clean [data-scroll-reveal]:nth-child(2) { transition-delay: 0.2s; }
.testimonials-clean [data-scroll-reveal]:nth-child(3) { transition-delay: 0.3s; }

/* Scale animation */
[data-scroll-scale] {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(8px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll-scale].revealed {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Parallax elements */
[data-parallax] {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Smooth hover effects - Figma style */
.benefit-card,
.product-card,
.tech-feature,
.gallery-item,
.testimonial-clean,
.contact-info-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.03);
}

.gallery-item img {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Magnetic button effect */
.cta-primary {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 148, 63, 0.4);
}

/* Image trio animation */
.trio-item {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.trio-item:hover {
    transform: translateY(-16px);
}

.trio-item img {
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.trio-item:hover img {
    transform: scale(1.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Smooth section transitions */
.centered-section {
    opacity: 0;
    animation: sectionFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sectionFadeIn {
    to {
        opacity: 1;
    }
}

/* Page load animation */
body {
    animation: pageLoad 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pageLoad {
    from {
        opacity: 0;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* Smooth scroll indicator */
body.is-scrolling * {
    pointer-events: none;
}

/* Title character animation */
.centered-title {
    opacity: 0;
    animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Floating animation for sections */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefit-icon,
.product-icon-large,
.tech-number,
.info-icon {
    animation: float 3s ease-in-out infinite;
}

.benefit-card:nth-child(1) .benefit-icon { animation-delay: 0s; }
.benefit-card:nth-child(2) .benefit-icon { animation-delay: 0.2s; }
.benefit-card:nth-child(3) .benefit-icon { animation-delay: 0.4s; }
.benefit-card:nth-child(4) .benefit-icon { animation-delay: 0.6s; }
.benefit-card:nth-child(5) .benefit-icon { animation-delay: 0.8s; }
.benefit-card:nth-child(6) .benefit-icon { animation-delay: 1s; }

/* Smooth transitions for all interactive elements */
a, button, input, textarea, select {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card glow effect on hover */
.benefit-card:hover,
.product-card:hover,
.testimonial-clean:hover {
    box-shadow: 0 25px 70px rgba(255, 148, 63, 0.15);
}

/* Ripple effect */
.benefit-card,
.product-card,
.gallery-item,
.testimonial-clean,
.cta-primary {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Micro-interactions */
.section-label {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-label:hover {
    letter-spacing: 3px;
    color: var(--caramel);
}

/* Stats counter animation */
.stat-number {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.stat-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }

/* Glowing border animation */
@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 148, 63, 0.2),
                    inset 0 0 20px rgba(255, 148, 63, 0.05);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 148, 63, 0.4),
                    inset 0 0 30px rgba(255, 148, 63, 0.1);
    }
}

.contact-info-card:hover {
    animation: borderGlow 2s ease-in-out infinite;
}

/* Nav items smooth hover */
.nav-item {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--caramel);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item:hover::after {
    width: 100%;
}

/* ==========================================
   RESPONSIVE - WIREFRAME STYLE
   ========================================== */

@media (max-width: 1024px) {
    .image-trio,
    .benefits-grid,
    .products-grid,
    .simple-gallery,
    .testimonials-clean,
    .stats-display,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    /* Hero Mobile Optimization */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 20px;
        align-items: center;
        justify-content: center;
    }
    
    .content-number {
        font-size: 100px;
        left: 20px;
        opacity: 0.05;
    }
    
    .content-main {
        padding-left: 0;
        max-width: 100%;
        margin-top: 40px;
    }
    
    .content-tag {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    
    .content-title {
        font-size: clamp(36px, 10vw, 48px);
        margin-bottom: 20px;
    }
    
    .content-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .content-cta {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 14px;
    }
    
    /* Hero Arrows Mobile */
    .hero-arrow {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .hero-arrow-prev {
        left: 15px;
    }
    
    .hero-arrow-next {
        right: 15px;
    }
    
    .hero-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    /* Hero Navigation Dots */
    .hero-nav {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }
    
    .nav-dot {
        width: 40px;
    }
    
    /* Scroll Hint */
    .scroll-hint {
        display: none;
    }
    
    .centered-section {
        padding: 80px 24px;
    }
    
    .why-section {
        padding: 80px 24px;
    }
    
    .image-trio,
    .benefits-grid,
    .products-grid,
    .simple-gallery,
    .testimonials-clean,
    .stats-display,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .centered-title {
        font-size: 32px;
    }
    
    .centered-description {
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
.sticky-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: all 1s cubic-bezier(0.75, 0, 0.27, 1);
    z-index: -1;
}

.sticky-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}

.sticky-section.active .sticky-bg {
    transform: scale(1);
}

/* Manifesto Horizontal Layout */
.manifesto-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
    max-width: 1600px;
    width: 100%;
}

.manifesto-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stats-compact {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-compact .stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--caramel);
}

.stat-compact .stat-label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-400);
}

/* Cards Compact Grid */
.cards-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cards-compact .elegant-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cards-compact .elegant-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 148, 63, 0.3);
    transform: translateY(-2px);
}

.card-number {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--caramel);
    background: rgba(255, 148, 63, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.cards-compact .elegant-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cards-compact .elegant-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray-400);
}

/* Two Column Layout for sections */
.two-column-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 100px;
    align-items: center;
    max-width: 1600px;
    width: 100%;
}

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

.column-right {
    width: 100%;
}

/* Products List */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 148, 63, 0.4);
    transform: translateX(8px);
}

.product-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 148, 63, 0.1);
    border-radius: 10px;
}

.product-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-content p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* Background with image class */
.bg-with-image {
    background: var(--black);
    color: var(--white);
}

/* Full Width Layout */
.full-width-layout {
    max-width: 1400px;
    width: 100%;
}

.layout-header {
    margin-bottom: 60px;
}

/* Tech Grid Horizontal */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.tech-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--caramel);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 148, 63, 0.3);
    transform: translateY(-4px);
}

.tech-card:hover::before {
    height: 100%;
}

.tech-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--caramel);
    background: rgba(255, 148, 63, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.tech-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-400);
}

/* ==========================================
   HORIZONTAL SCROLL SECTION
   ========================================== */

.horizontal-scroll {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.horizontal-scroll.bg-white {
    background: var(--white);
}

.horizontal-scroll.bg-white .item-text h3,
.horizontal-scroll.bg-white .item-text p {
    color: var(--black);
}

.horizontal-scroll.bg-white .item-text p {
    color: var(--gray-600);
}

.horizontal-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.horizontal-content {
    display: flex;
    gap: 60px;
    padding: 0 60px;
    will-change: transform;
}

.horizontal-item {
    min-width: 60vw;
    display: flex;
    gap: 60px;
    align-items: center;
}

.item-image {
    flex: 1;
    height: 70vh;
    border-radius: 20px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.75, 0, 0.27, 1);
}

.horizontal-item:hover .item-image img {
    transform: scale(1.1);
}

.item-text {
    flex: 1;
}

.item-text h3 {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.item-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
}

/* ==========================================
   TEXT REVEAL SECTION
   ========================================== */

.text-reveal-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
}

.text-reveal-section.bg-white .reveal-title {
    color: var(--black);
}

.text-reveal-container {
    text-align: center;
}

.reveal-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    line-height: 1.2;
}

.reveal-title span {
    display: block;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s cubic-bezier(0.75, 0, 0.27, 1);
}

.reveal-title.active span {
    opacity: 1;
    transform: translateY(0);
}

.reveal-title span:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal-title span:nth-child(3) {
    transition-delay: 0.4s;
}

/* ==========================================
   IMAGE GRID ZOOM SECTION
   ========================================== */

.image-grid-section {
    padding: 120px 60px;
    position: relative;
}

.image-grid-section.bg-white {
    background: var(--white);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.grid-item {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.75, 0, 0.27, 1);
}

.grid-item:hover img {
    transform: scale(1.2);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.75, 0, 0.27, 1);
}

.grid-item:hover .grid-overlay {
    transform: translateY(0);
}

.grid-overlay span {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ==========================================
   INNOVATION GRID
   ========================================== */

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.innovation-card {
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.75, 0, 0.27, 1);
    opacity: 0;
    transform: translateY(50px);
}

.innovation-card.active {
    opacity: 1;
    transform: translateY(0);
}

.innovation-card:nth-child(2) {
    transition-delay: 0.1s;
}

.innovation-card:nth-child(3) {
    transition-delay: 0.2s;
}

.innovation-card:nth-child(4) {
    transition-delay: 0.3s;
}

.innovation-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.card-number {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
    margin-bottom: 20px;
}

.innovation-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.innovation-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
}

/* ==========================================
   SPLIT SECTION
   ========================================== */

.split-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: sticky;
    top: 0;
}

.split-section.bg-black {
    background: var(--black);
    color: var(--white);
}

.split-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
    background: rgba(0, 0, 0, 0.5);
}

.split-left h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
}

.split-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
    gap: 60px;
}

.split-stat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.big-number {
    font-family: 'Sora', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    color: var(--caramel);
}

.big-label {
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-400);
}

/* ==========================================
   TESTIMONIALS SCROLL
   ========================================== */

.testimonials-scroll {
    padding: 160px 0;
    overflow: hidden;
}

.testimonials-scroll.bg-white {
    background: var(--white);
}

.testimonials-scroll.bg-white .testimonials-title {
    color: var(--black);
}

.testimonials-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(42px, 7vw, 64px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-track {
    display: flex;
    gap: 60px;
    padding: 0 60px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 60px)); }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 500px;
    padding: 60px;
    background: var(--gray-100);
    border-radius: 30px;
    border: 1px solid var(--gray-200);
}

.testimonial-card p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-style: italic;
    color: var(--gray-700);
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--black);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray-500);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.contact-item span {
    font-size: 32px;
}

.contact-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    opacity: 0.7;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--cyan);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    padding: 25px 50px;
    background: var(--white);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.75, 0, 0.27, 1);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.3);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    transition: left 0.6s cubic-bezier(0.75, 0, 0.27, 1);
    z-index: -1;
}

.submit-btn:hover .btn-bg {
    left: 0;
}

.submit-btn:hover span {
    color: var(--white);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    padding: 100px 60px 60px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-left p {
    opacity: 0.6;
    max-width: 400px;
}

.footer-right {
    display: flex;
    gap: 100px;
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    opacity: 0.6;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

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

@media (max-width: 1024px) {
    .nav {
        padding: 20px 30px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .nav.scrolled {
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .nav-logo {
        flex-shrink: 0;
    }

    .lang-switch {
        gap: 6px;
        margin-left: auto;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .lang-btn {
        font-size: 11px;
        padding: 7px 9px;
        letter-spacing: 1px;
    }
    
    .logo-img {
        filter: brightness(0) invert(1);
        z-index: 10000;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: #000000;
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 28px;
        padding: 60px 40px;
        transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 10000;
        border-left: 1px solid var(--caramel);
        display: flex !important;
        mix-blend-mode: normal !important;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #FFFFFF !important;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        text-decoration: none !important;
        mix-blend-mode: normal !important;
        filter: none !important;
        display: block !important;
        width: 100%;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--caramel);
        transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-menu a:hover {
        color: var(--caramel) !important;
    }
    
    .nav-menu a:hover::after {
        width: 100%;
    }
    
    .nav-menu.active a {
        opacity: 1 !important;
        transform: translateX(0);
        color: #FFFFFF !important;
    }
    
    .nav-menu.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active a:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active a:nth-child(5) { transition-delay: 0.3s; }
    
    .nav-toggle {
        display: flex !important;
        z-index: 10001;
        position: relative;
        flex-shrink: 0;
    }
    
    .nav-toggle span {
        background: var(--white) !important;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* Hero Responsive */
    .slide-content {
        padding: 0 30px;
    }
    
    .slide-title {
        font-size: clamp(50px, 10vw, 100px);
    }
    
    .slide-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-controls {
        bottom: 30px;
        right: 30px;
    }
    
    .slide-indicators {
        bottom: 30px;
        left: 30px;
    }
    
    .hero-stats {
        display: none;
    }
    
    .sticky-content {
        padding: 80px 30px;
    }
    
    .stats-inline {
        flex-direction: column;
        gap: 40px;
    }
    
    .horizontal-item {
        min-width: 80vw;
        flex-direction: column;
    }
    
    .contact-wrapper,
    .split-section {
        grid-template-columns: 1fr;
    }
    
    .footer-right {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* Hero Mobile */
    .slide-label {
        margin-bottom: 30px;
    }
    
    .label-line {
        width: 40px;
    }
    
    .label-text {
        font-size: 9px;
    }
    
    .slide-title {
        font-size: 50px;
        margin-bottom: 30px;
    }
    
    .slide-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 18px 35px;
        font-size: 13px;
    }
    
    .hero-controls {
        bottom: 20px;
        right: 20px;
        gap: 20px;
    }
    
    .slide-counter {
        font-size: 16px;
    }
    
    .current-slide {
        font-size: 28px;
    }
    
    .slide-btn {
        width: 45px;
        height: 45px;
    }
    
    .slide-indicators {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }
    
    .indicator {
        width: 40px;
    }
    
    .hero-title {
        font-size: 50px;
    }

    .lang-switch {
        gap: 6px;
    }

    .lang-btn {
        font-size: 11px;
        padding: 7px 9px;
        letter-spacing: 1px;
    }

    .wizard-section {
        padding: 90px 18px;
    }

    .wizard-card {
        padding: 22px;
    }

    .wizard-grid {
        grid-template-columns: 1fr;
    }

    .wizard-actions {
        flex-direction: column;
    }

    .wizard-btn {
        min-width: 100%;
    }
    
    .sticky-title {
        font-size: 50px;
    }
    
    .feature-grid,
    .innovation-grid,
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 90vw;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    /* Hide header lang-switch on small screens - use the one inside menu */
    .lang-switch {
        display: none !important;
    }
    
    .content-title {
        font-size: 32px;
    }
    
    .content-description {
        font-size: 13px;
    }
    
    .content-number {
        font-size: 80px;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 16px 25px;
        font-size: 13px;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
    }
    
    .hero-arrow-prev {
        left: 10px;
    }
    
    .hero-arrow-next {
        right: 10px;
    }
    
    .nav-dot {
        width: 35px;
        gap: 12px;
    }
}

/* ==========================================
   NEW SECTIONS STYLES
   ========================================== */

/* Common Section Styles */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 20px;
}

.section-label.light {
    color: var(--caramel-light);
}

.title-large {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--black);
}

.title-large.light {
    color: var(--white);
}

.title-medium {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}

.text-large {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.text-large.light {
    color: var(--gray-300);
}

.accent {
    color: var(--caramel);
}

/* ==========================================
   SECTION 4: Interactive Gallery
   ========================================== */
.section-gallery {
    padding: 120px 0;
    background: #FFFFF0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header .features-subtitle {
    color: #000;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #666;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff943f;
    transition: width 0.3s ease;
}

.filter-btn.active {
    color: #000;
}

.filter-btn.active::after {
    width: 100%;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.2;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-cat {
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #ff943f;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    transform: translateY(15px);
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-cat,
.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .gallery-header {
        padding: 0 15px;
    }
    
    .gallery-header .title-medium {
        font-size: 28px;
    }
    
    .gallery-header .section-label {
        font-size: 11px;
    }
    
    .gallery-header .features-subtitle {
        font-size: 14px;
    }
    
    .gallery-filters {
        gap: 8px;
        padding: 0 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 10px;
        padding: 10px 14px;
    }
    
    .gallery-item img {
        height: 280px;
    }
    
    .gallery-load-more-wrapper {
        margin-top: 30px;
    }
    
    .btn-load-more {
        padding: 14px 30px;
        font-size: 13px;
        width: calc(100% - 30px);
        justify-content: center;
    }
    
    .gallery-cta-wrapper {
        margin-top: 40px;
        padding: 0 15px 20px;
    }
    
    .btn-gallery-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 25px;
        font-size: 13px;
    }
}

/* Gallery Load More Button */
.gallery-load-more-wrapper {
    text-align: center;
    margin-top: 50px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: transparent;
    border: 2px solid #333;
    color: #333;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #333;
    color: #fff;
}

.btn-load-more .load-more-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-load-more:hover .load-more-icon {
    transform: translateY(3px);
}

.btn-load-more.hidden {
    display: none;
}

/* Gallery Item Visibility */
.gallery-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.gallery-hidden {
    display: none;
}

.gallery-item.gallery-reveal {
    animation: galleryReveal 0.5s ease forwards;
}

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

/* Gallery CTA Button */
.gallery-cta-wrapper {
    text-align: center;
    margin-top: 70px;
    padding-bottom: 20px;
}

.btn-gallery-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 22px 55px;
    background: #1a1a1a;
    border: none;
    border-radius: 0;
    color: var(--caramel);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--caramel);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-gallery-cta:hover {
    color: #000;
    transform: translateY(-3px);
}

.btn-gallery-cta:hover::before {
    transform: scaleX(1);
}

.btn-gallery-cta .btn-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
    font-weight: 400;
}

.btn-gallery-cta:hover .btn-arrow {
    transform: translateX(8px);
}

/* ==========================================
   SEÇÃO LINHA CLÁSSICA - Carrossel
   ========================================== */
.section-linha-classica {
    background: #0d0d0d;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-linha-classica::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 148, 63, 0.3), transparent);
}

.linha-classica-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.linha-classica-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.linha-classica-title .accent {
    color: var(--caramel);
    display: block;
    font-style: italic;
}

.linha-classica-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

/* ==========================================
   NEW SECTION: Warranty / Garantia
   ========================================== */
.section-warranty {
    background: #FAFAFA;
    padding: 100px 0;
}

.warranty-header {
    text-align: center;
    margin-bottom: 60px;
}

.warranty-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.warranty-card {
    background: #FFFFF0;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.warranty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 148, 63, 0.2);
    border-color: #ff943f;
}

.warranty-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff943f 0%, #ff7b1f 100%);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 148, 63, 0.3);
}

.warranty-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.3;
}

.warranty-card-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ==========================================
   SECTION: Warranty Cards - Garantia e Condições
   ========================================== */
.section-warranty-cards {
    background: #FAFAFA;
    padding: 100px 0;
    position: relative;
}

.warranty-cards-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.warranty-logo {
    margin-bottom: 30px;
}

.warranty-logo img {
    display: inline-block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.warranty-logo img:hover {
    opacity: 1;
}

.warranty-cards-header .section-label {
    display: inline-block;
    color: var(--caramel);
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.warranty-cards-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 25px 0;
}

.warranty-cards-title .accent {
    color: var(--caramel);
}

.warranty-cards-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    text-align: center;
}

.warranty-cards-description strong {
    color: var(--caramel);
    font-weight: 600;
}

.warranty-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 70px;
    padding: 0 40px;
}

.warranty-card-item {
    background: linear-gradient(145deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(255, 148, 63, 0.1);
}

.warranty-card-item:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(255, 148, 63, 0.2);
    border-color: var(--caramel);
}

.warranty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff943f 0%, #ff7b1f 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(255, 148, 63, 0.4);
}

.warranty-icon svg {
    color: #ffffff;
}

.warranty-badge-number {
    font-family: 'Sora', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.warranty-badge-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.warranty-card-item-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

.warranty-card-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

/* CTA da Warranty Section */
.warranty-cta-wrapper {
    text-align: center;
    padding: 0 20px;
}

.btn-warranty-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    background: linear-gradient(135deg, #ff943f 0%, #ff7b1f 100%);
    padding: 28px 60px;
    border-radius: 60px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px rgba(255, 148, 63, 0.4);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-warranty-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-warranty-cta:hover::before {
    left: 100%;
}

.btn-warranty-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 148, 63, 0.6);
}

.cta-main-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.cta-sub-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

/* Responsivo Warranty Cards */
@media (max-width: 1024px) {
    .warranty-cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
        margin-bottom: 60px;
    }
    
    .section-warranty-cards {
        padding: 80px 0;
    }
    
    .warranty-cards-header {
        margin-bottom: 60px;
    }

    .warranty-cards-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section-warranty-cards {
        padding: 60px 0;
    }
    
    .warranty-cards-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .warranty-logo img {
        width: 140px;
        height: auto;
    }
    
    .warranty-cards-description {
        font-size: 15px;
    }
    
    .warranty-cards-grid {
        padding: 0 20px;
        gap: 35px;
        margin-bottom: 50px;
    }
    
    .warranty-card-item {
        padding: 40px 30px;
    }
    
    .warranty-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .warranty-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .warranty-badge-number {
        font-size: 64px;
    }
    
    .warranty-badge-text {
        font-size: 15px;
    }
    
    .warranty-card-item-title {
        font-size: 20px;
    }

    .warranty-card-description {
        font-size: 14px;
    }

    .btn-warranty-cta {
        padding: 24px 40px;
        width: 100%;
        max-width: 400px;
    }

    .cta-main-text {
        font-size: 20px;
    }

    .cta-sub-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .warranty-logo img {
        width: 120px;
    }

    .warranty-card-item {
        padding: 35px 25px;
    }
    
    .warranty-icon {
        width: 60px;
        height: 60px;
    }
    
    .warranty-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .warranty-badge-number {
        font-size: 56px;
    }
    
    .warranty-badge-text {
        font-size: 14px;
    }
    
    .warranty-card-item-title {
        font-size: 18px;
    }

    .warranty-card-description {
        font-size: 13px;
    }

    .btn-warranty-cta {
        padding: 22px 35px;
    }

    .cta-main-text {
        font-size: 18px;
    }

    .cta-sub-text {
        font-size: 12px;
    }
}

/* Carrossel Container */
.classica-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
}

.classica-carousel {
    overflow: hidden;
    position: relative;
}

/* Setas nas Laterais */
.classica-prev,
.classica-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(255, 148, 63, 0.5);
    color: var(--caramel);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.classica-prev {
    left: 0;
}

.classica-next {
    right: 0;
}

.classica-prev:hover,
.classica-next:hover {
    background: var(--caramel);
    border-color: var(--caramel);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.classica-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 30px;
}

/* Slides */
.classica-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: #1a1a1a;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.classica-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.classica-slide-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.classica-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.classica-slide:hover .classica-slide-img img {
    transform: scale(1.08);
}

.classica-slide-info {
    padding: 25px 30px;
    background: #1a1a1a;
}

.classica-slide-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.classica-slide-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* Controles do Carrossel - Dots */
.classica-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.classica-dots {
    display: flex;
    gap: 12px;
}

.classica-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.classica-dot.active {
    background: var(--caramel);
    width: 40px;
}

/* CTA da Seção */
.linha-classica-cta {
    text-align: center;
    margin-top: 70px;
}

.btn-linha-classica {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 22px 55px;
    background: #1a1a1a;
    border: 2px solid var(--caramel);
    color: var(--caramel);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-linha-classica::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--caramel);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-linha-classica:hover {
    color: #000;
    border-color: var(--caramel);
    transform: translateY(-3px);
}

.btn-linha-classica:hover::before {
    transform: scaleX(1);
}

.btn-linha-classica .btn-arrow {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.btn-linha-classica:hover .btn-arrow {
    transform: translateX(8px);
}

/* Responsivo Warranty Section */
@media (max-width: 1024px) {
    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 30px;
    }
    
    .section-warranty {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .section-warranty {
        padding: 60px 0;
    }
    
    .warranty-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .warranty-grid {
        padding: 0 20px;
        gap: 25px;
    }
    
    .warranty-card {
        padding: 35px 25px;
    }
    
    .warranty-badge {
        font-size: 18px;
        padding: 10px 24px;
    }
    
    .warranty-card-title {
        font-size: 20px;
    }
    
    .warranty-card-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .warranty-card {
        padding: 30px 20px;
    }
    
    .warranty-badge {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .warranty-card-title {
        font-size: 18px;
    }
    
    .warranty-card-text {
        font-size: 14px;
    }
}

/* Responsivo Carrossel Linha Clássica */
@media (max-width: 1024px) {
    .classica-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .classica-carousel-wrapper {
        padding: 0 80px;
    }
    
    .classica-prev,
    .classica-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .section-linha-classica {
        padding: 60px 0;
    }
    
    .linha-classica-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .linha-classica-title {
        font-size: 28px;
    }
    
    .linha-classica-subtitle {
        font-size: 15px;
    }
    
    .classica-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .classica-carousel-wrapper {
        padding: 0;
        position: relative;
    }
    
    .classica-carousel {
        overflow: hidden;
        position: relative;
        margin: 0 15px;
    }
    
    .classica-carousel-track {
        gap: 0;
    }
    
    .classica-slide-img {
        height: 320px;
    }
    
    /* Controles sobre a imagem no mobile */
    .classica-prev,
    .classica-next {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.7);
        border: none;
        z-index: 20;
    }
    
    .classica-prev {
        left: 25px;
    }
    
    .classica-next {
        right: 25px;
    }
    
    .classica-prev svg,
    .classica-next svg {
        width: 18px;
        height: 18px;
    }
    
    .classica-carousel-controls {
        margin-top: 25px;
    }
    
    .classica-dots {
        gap: 8px;
    }
    
    .classica-dot {
        width: 10px;
        height: 10px;
    }
    
    .classica-dot.active {
        width: 30px;
    }
    
    .linha-classica-cta {
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .btn-linha-classica {
        padding: 16px 30px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-linha-classica {
        padding: 50px 0;
    }
    
    .linha-classica-title {
        font-size: 24px;
    }
    
    .classica-slide-img {
        height: 280px;
    }
    
    .classica-slide-info {
        padding: 20px;
    }
    
    .classica-slide-info h3 {
        font-size: 18px;
    }
    
    .classica-slide-info p {
        font-size: 13px;
    }
    
    .classica-prev,
    .classica-next {
        width: 38px;
        height: 38px;
    }
    
    .classica-prev svg,
    .classica-next svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================
   SEÇÃO LINHA CONTEMPORÂNEA - Carrossel
   ========================================== */
.section-linha-contemporanea {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-linha-contemporanea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 148, 63, 0.3), transparent);
}

.linha-contemporanea-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.linha-contemporanea-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
}

.linha-contemporanea-title .accent {
    color: var(--caramel);
    font-style: italic;
    display: block;
    margin-top: 10px;
}

.linha-contemporanea-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Carrossel Wrapper Contemporânea */
.contemporanea-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
}

.contemporanea-carousel {
    overflow: hidden;
    position: relative;
}

/* Setas nas Laterais */
.contemporanea-prev,
.contemporanea-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(255, 148, 63, 0.5);
    color: var(--caramel);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contemporanea-prev {
    left: 0;
}

.contemporanea-next {
    right: 0;
}

.contemporanea-prev:hover,
.contemporanea-next:hover {
    background: var(--caramel);
    border-color: var(--caramel);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.contemporanea-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 30px;
}

/* Slides */
.contemporanea-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    background: #1a1a1a;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contemporanea-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.contemporanea-slide-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.contemporanea-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contemporanea-slide:hover .contemporanea-slide-img img {
    transform: scale(1.08);
}

.contemporanea-slide-info {
    padding: 25px 30px;
    background: #1a1a1a;
}

.contemporanea-slide-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.contemporanea-slide-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* Controles do Carrossel - Dots */
.contemporanea-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.contemporanea-dots {
    display: flex;
    gap: 12px;
}

.contemporanea-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contemporanea-dot.active {
    background: var(--caramel);
    width: 40px;
}

/* CTA da Seção Contemporânea */
.linha-contemporanea-cta {
    text-align: center;
    margin-top: 70px;
}

.btn-linha-contemporanea {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 22px 55px;
    background: #1a1a1a;
    border: 2px solid var(--caramel);
    color: var(--caramel);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-linha-contemporanea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--caramel);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-linha-contemporanea:hover {
    color: var(--white);
    background: var(--caramel);
}

.btn-linha-contemporanea:hover::before {
    transform: scaleX(1);
}

.btn-linha-contemporanea .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-linha-contemporanea:hover .btn-arrow {
    transform: translateX(8px);
}

/* Responsivo Contemporânea */
@media (max-width: 1024px) {
    .contemporanea-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .contemporanea-carousel-wrapper {
        padding: 0 80px;
    }
    
    .contemporanea-prev,
    .contemporanea-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .section-linha-contemporanea {
        padding: 60px 0;
    }
    
    .linha-contemporanea-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .linha-contemporanea-title {
        font-size: 28px;
    }
    
    .linha-contemporanea-subtitle {
        font-size: 15px;
    }
    
    .contemporanea-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .contemporanea-carousel-wrapper {
        padding: 0;
        position: relative;
    }
    
    .contemporanea-carousel {
        overflow: hidden;
        position: relative;
        margin: 0 15px;
    }
    
    .contemporanea-carousel-track {
        gap: 0;
    }
    
    .contemporanea-slide-img {
        height: 320px;
    }
    
    /* Controles sobre a imagem no mobile */
    .contemporanea-prev,
    .contemporanea-next {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.7);
        border: none;
        z-index: 20;
    }
    
    .contemporanea-prev {
        left: 25px;
    }
    
    .contemporanea-next {
        right: 25px;
    }
    
    .contemporanea-prev svg,
    .contemporanea-next svg {
        width: 18px;
        height: 18px;
    }
    
    .contemporanea-carousel-controls {
        margin-top: 25px;
    }
    
    .contemporanea-dots {
        gap: 8px;
    }
    
    .contemporanea-dot {
        width: 10px;
        height: 10px;
    }
    
    .contemporanea-dot.active {
        width: 30px;
    }
    
    .linha-contemporanea-cta {
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .btn-linha-contemporanea {
        padding: 16px 30px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-linha-contemporanea {
        padding: 50px 0;
    }
    
    .linha-contemporanea-title {
        font-size: 24px;
    }
    
    .contemporanea-slide-img {
        height: 280px;
    }
    
    .contemporanea-slide-info {
        padding: 20px;
    }
    
    .contemporanea-slide-info h3 {
        font-size: 18px;
    }
    
    .contemporanea-slide-info p {
        font-size: 13px;
    }
    
    .contemporanea-prev,
    .contemporanea-next {
        width: 38px;
        height: 38px;
    }
    
    .contemporanea-prev svg,
    .contemporanea-next svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================
   BANNER CTA (Section after Gallery)
   ========================================== */
.section-banner-cta {
    background: #ff943f; /* Standard accent color */
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.banner-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-cta-text {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin: 0;
}

.banner-cta-text strong {
    font-weight: 800;
    display: block;
    margin-top: 5px;
}

.btn-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border: 2px solid #1a1a1a;
    background: #1a1a1a;
    color: var(--caramel);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-banner-cta:hover {
    background: #FFFFF0;
    border-color: #fff;
    color: #1a1a1a;
}

.btn-banner-cta .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-banner-cta:hover .btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .banner-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Split Section Layout */
.section-split {
    padding: 100px 0;
    background: var(--white);
}

/* ==========================================
   SECTION 2 (Wireframe): Exact Match Precision
   ========================================== */
.section-wire {
    padding: 120px 0;
    background: #FFFFF0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.wire-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.wire-label {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5em;
    color: #000;
    margin-bottom: 45px;
    text-transform: uppercase;
}

.wire-title {
    font-family: 'Sora', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    margin: 0;
}

.wire-logo {
    max-width: 200px;
    height: auto;
    margin-top: 40px;
    opacity: 0.9;
}

.wire-card {
    display: flex;
    flex-direction: column;
}

.wire-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #000;
    margin: 0 0 18px;
    line-height: 1.3;
}

.wire-card-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 35px;
    min-height: 108px; /* Ensure same height regardless of small diffs */
}

.wire-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.6;
    overflow: hidden;
}

.wire-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-wire-card {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d07820;  /* Laranja mais escuro para melhor contraste */
    text-decoration: none;
    padding: 12px 0;
    margin-top: 20px;
    border-bottom: 2px solid #d07820;
    transition: all 0.3s ease;
}

.btn-wire-card:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
    padding-left: 10px;
}

/* ==========================================
   NEW SECTION: Process/Infographic Timeline
   ========================================== */
.section-process {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 148, 63, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 148, 63, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header .section-label {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--caramel);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 148, 63, 0.3);
}

.process-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.process-title .accent {
    color: var(--caramel);
}

.process-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 80px;
}

.process-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--caramel) 0%, #e07830 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: #000;
}

.step-number {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--caramel);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.step-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.step-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 35px;
    min-width: 60px;
}

.connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--caramel), rgba(255, 148, 63, 0.3));
}

.connector-arrow {
    font-size: 20px;
    color: var(--caramel);
    margin-left: -5px;
}

.process-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--caramel);
    line-height: 1;
    margin-bottom: 10px;
}

/* stat-label para seções com fundo escuro */
.bg-dark .stat-label,
.section-process .stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section Responsive */
@media (max-width: 1100px) {
    .process-timeline {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .process-connector {
        display: none;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 20px);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .section-process {
        padding: 60px 0;
    }
    
    .process-container {
        padding: 0 15px;
    }
    
    .process-header {
        margin-bottom: 40px;
    }
    
    .process-title {
        font-size: 28px;
    }
    
    .process-subtitle {
        font-size: 14px;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        font-size: 22px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-text {
        font-size: 13px;
    }
    
    .process-stats {
        flex-wrap: wrap;
        gap: 20px;
        padding: 30px 15px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 10px);
        text-align: center;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section-process {
        padding: 50px 0;
    }
    
    .process-title {
        font-size: 24px;
    }
    
    .step-icon {
        width: 44px;
        height: 44px;
    }
    
    .step-number {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* ==========================================
   NEW SECTION: Core Values
   ========================================== */
.section-core-values {
    background: #ededed;
    padding: 0;
    position: relative;
}

.core-values-container {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.core-values-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.core-values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.core-values-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ededed;
}

.core-values-content .section-label {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--caramel);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(255, 148, 63, 0.3);
    background: rgba(255, 148, 63, 0.05);
}

.core-values-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.core-values-title .accent {
    color: var(--caramel);
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.core-value-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.core-value-item p {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.btn-core-value {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d07820;  /* Laranja escuro para melhor contraste */
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 2px solid #d07820;
    transition: all 0.3s ease;
}

.btn-core-value:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
    padding-left: 10px;
}

/* Removed accent line - using section-label instead */

@media (max-width: 1024px) {
    .core-values-container {
        flex-direction: column;
    }
    
    .core-values-image {
        flex: none;
        height: 350px;
    }
    
    .core-values-content {
        padding: 60px 40px;
    }
    
    .core-values-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .core-values-image {
        height: 280px;
    }
    
    .core-values-content {
        padding: 40px 20px;
    }
    
    .core-values-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .core-value-item h3 {
        font-size: 1rem;
    }
    
    .core-value-item p {
        font-size: 0.9rem;
    }
    
    .core-values-content .section-label {
        font-size: 10px;
        padding: 6px 14px;
    }
    
    .btn-core-value {
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        background: var(--caramel);
        color: #000;
        border-bottom: none;
        padding: 14px 20px;
    }
    
    .btn-core-value:hover {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .core-values-image {
        height: 240px;
    }
    
    .core-values-content {
        padding: 35px 15px;
    }
    
    .core-values-title {
        font-size: 1.3rem;
    }
}

/* ==========================================
   NEW SECTION: Features Grid (Inspired by Print)
   ========================================== */
.section-features-grid {
    position: relative;
    padding: 120px 0;
    background-image: url('images/im6.webp'); /* Professional background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
}

.features-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Dark overlay like print */
    z-index: 1;
}

.section-features-grid .container-wide {
    position: relative;
    z-index: 2;
}

.features-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.features-main-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.02em;
}

.features-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.feature-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #ff943f; /* Accent square */
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ff943f; /* Accent title */
    margin-bottom: 12px;
    text-transform: none;
}

.feature-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* CTA dentro da seção Features Grid */
.features-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 70px;
    padding: 0 20px;
}

.btn-features-cta {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    background: #ff943f;
    padding: 24px 60px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 148, 63, 0.4);
    letter-spacing: 0.5px;
}

.btn-features-cta:hover {
    background: #ff7b1f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 148, 63, 0.6);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .section-features-grid {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .features-header {
        padding: 0 15px;
        margin-bottom: 50px;
    }
    
    .features-main-title {
        font-size: 26px;
    }
    
    .features-subtitle {
        font-size: 15px;
    }
    
    .feature-item {
        gap: 18px;
    }
    
    .feature-number {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
    
    .feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    .features-cta-wrapper {
        margin-top: 50px;
    }
    
    .btn-features-cta {
        font-size: 17px;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .section-features-grid {
        padding: 50px 0;
    }
    
    .features-main-title {
        font-size: 22px;
    }
    
    .feature-number {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    .features-cta-wrapper {
        margin-top: 40px;
    }
    
    .btn-features-cta {
        font-size: 16px;
        padding: 18px 30px;
        width: 100%;
        max-width: 100%;
    }
}

/* ==========================================
   NEW SECTION: Warranty / Garantia
   ========================================== */
.section-warranty {
    background: #FAFAFA;
    padding: 100px 0;
    width: 100%;
}

.warranty-header {
    text-align: center;
    margin-bottom: 60px;
}

.warranty-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.warranty-card {
    background: #FFFFF0;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.warranty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 148, 63, 0.2);
    border-color: #ff943f;
}

.warranty-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff943f 0%, #ff7b1f 100%);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(255, 148, 63, 0.3);
}

.warranty-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.3;
}

.warranty-card-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

@media (max-width: 1024px) {
    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-warranty {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .section-warranty {
        padding: 60px 0;
    }
    
    .warranty-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .warranty-grid {
        padding: 0 20px;
        gap: 25px;
    }
    
    .warranty-card {
        padding: 35px 25px;
    }
    
    .warranty-badge {
        font-size: 18px;
        padding: 10px 24px;
    }
    
    .warranty-card-title {
        font-size: 20px;
    }
    
    .warranty-card-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .warranty-card {
        padding: 30px 20px;
    }
    
    .warranty-badge {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .warranty-card-title {
        font-size: 18px;
    }
    
    .warranty-card-text {
        font-size: 14px;
    }
}

/* ==========================================
   NEW SECTION: Warranty / Garantia - Modern Light Layout
   ========================================== */
.section-warranty {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: 98vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-warranty::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 148, 63, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-warranty::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 148, 63, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-warranty .container-wide {
    position: relative;
    z-index: 2;
}

.warranty-header {
    text-align: center;
    margin-bottom: 80px;
}

.warranty-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.warranty-title .accent {
    background: linear-gradient(135deg, #ff943f 0%, #ff7b1f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.warranty-card {
    background: #FFFFF0;
    padding: 55px 45px;
    border-radius: 35px;
    position: relative;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
}

.warranty-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 35px;
    padding: 2px;
    background: linear-gradient(135deg, #ff943f, #ff7b1f);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.warranty-card:hover::before {
    opacity: 1;
}

.warranty-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(255, 148, 63, 0.15);
}

.warranty-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #ff943f 0%, #ff7b1f 100%);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 40px;
    box-shadow: 
        0 15px 50px rgba(255, 148, 63, 0.35),
        inset 0 -8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    line-height: 1;
}

.warranty-badge::after {
    content: 'meses';
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    text-transform: lowercase;
}

.warranty-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.warranty-card-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

@media (max-width: 1024px) {
    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    
    .section-warranty {
        min-height: auto;
        padding: 80px 0;
    }
    
    .warranty-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .section-warranty {
        padding: 60px 0;
    }
    
    .warranty-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .warranty-grid {
        padding: 0 20px;
        gap: 35px;
    }
    
    .warranty-card {
        padding: 45px 35px;
    }
    
    .warranty-badge {
        width: 120px;
        height: 120px;
        font-size: 36px;
    }
    
    .warranty-badge::after {
        font-size: 14px;
    }
    
    .warranty-card-title {
        font-size: 24px;
    }
    
    .warranty-card-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .warranty-card {
        padding: 35px 25px;
    }
    
    .warranty-badge {
        width: 110px;
        height: 110px;
        font-size: 32px;
    }
    
    .warranty-badge::after {
        font-size: 13px;
    }
    
    .warranty-card-title {
        font-size: 22px;
    }
    
    .warranty-card-text {
        font-size: 15px;
    }
}

/* ==========================================
   NEW SECTION: Warranty / Garantia - Modern Light Layout
   ========================================== */
.section-warranty {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: 98vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-warranty::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 148, 63, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-warranty::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 148, 63, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-warranty .container-wide {
    position: relative;
    z-index: 2;
}

.warranty-header {
    text-align: center;
    margin-bottom: 80px;
}

.warranty-header .section-label {
    display: inline-block;
    color: var(--caramel);
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.warranty-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.warranty-title .accent {
    color: var(--caramel);
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.warranty-card {
    background: #FFFFF0;
    padding: 60px 45px;
    border-radius: 25px;
    position: relative;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.04);
    border: 2px solid rgba(255, 148, 63, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.warranty-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(255, 148, 63, 0.2);
    border-color: var(--caramel);
}

.warranty-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #ff943f 0%, #ff7b1f 100%);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 38px;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 35px;
    box-shadow: 
        0 12px 40px rgba(255, 148, 63, 0.35),
        inset 0 -6px 18px rgba(0, 0, 0, 0.15);
    position: relative;
    line-height: 1;
}

.warranty-badge::after {
    content: 'meses';
    font-size: 15px;
    font-weight: 700;
    margin-top: 8px;
    text-transform: lowercase;
}

.warranty-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 22px;
    line-height: 1.3;
}

.warranty-card-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #555555;
    margin: 0;
}

@media (max-width: 1024px) {
    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 0 30px;
    }
    
    .section-warranty {
        min-height: auto;
        padding: 80px 0;
    }
    
    .warranty-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .section-warranty {
        padding: 60px 0;
    }
    
    .warranty-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .warranty-grid {
        padding: 0 20px;
        gap: 35px;
    }
    
    .warranty-card {
        padding: 45px 35px;
    }
    
    .warranty-badge {
        width: 115px;
        height: 115px;
        font-size: 34px;
    }
    
    .warranty-badge::after {
        font-size: 14px;
    }
    
    .warranty-card-title {
        font-size: 23px;
    }
    
    .warranty-card-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .warranty-card {
        padding: 35px 25px;
    }
    
    .warranty-badge {
        width: 105px;
        height: 105px;
        font-size: 30px;
    }
    
    .warranty-badge::after {
        font-size: 13px;
    }
    
    .warranty-card-title {
        font-size: 21px;
    }
    
    .warranty-card-text {
        font-size: 15px;
    }
}

/* ==========================================
   NEW SECTION: Warranty / Garantia - Complete Redesign
   ========================================== */
.section-warranty {
    background: #FFFFF0;
    min-height: 98vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-warranty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 148, 63, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 148, 63, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.section-warranty .container-wide {
    position: relative;
    z-index: 2;
}

.warranty-header {
    text-align: center;
    margin-bottom: 80px;
}

.warranty-header .section-label {
    display: inline-block;
    color: var(--caramel);
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.warranty-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.warranty-title .accent {
    color: var(--caramel);
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

.warranty-card {
    background: linear-gradient(145deg, #ffffff 0%, #f9f9f9 100%);
    padding: 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.warranty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #ff943f 0%, #ff7b1f 100%);
}

.warranty-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(255, 148, 63, 0.2);
}

.warranty-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #ff943f 0%, #ff7b1f 100%);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 72px;
    font-weight: 900;
    position: relative;
    line-height: 1;
}

.warranty-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
}

.warranty-badge::after {
    content: 'meses';
    position: absolute;
    bottom: 25px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.warranty-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    padding: 35px 35px 20px;
    line-height: 1.3;
}

.warranty-card-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    padding: 0 35px 40px;
}

/* Efeito diferenciado para o card central */
.warranty-card:nth-child(2) {
    transform: scale(1.05);
}

.warranty-card:nth-child(2):hover {
    transform: translateY(-20px) scale(1.08);
}

.warranty-card:nth-child(2) .warranty-badge {
    background: linear-gradient(135deg, #ff7b1f 0%, #ff943f 100%);
    height: 200px;
}

.warranty-card:nth-child(2) .warranty-badge::after {
    font-size: 20px;
}

@media (max-width: 1200px) {
    .warranty-grid {
        gap: 40px;
        padding: 0 40px;
    }
    
    .warranty-card:nth-child(2) {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .section-warranty {
        min-height: auto;
        padding: 80px 0;
    }
    
    .warranty-header {
        margin-bottom: 60px;
    }
    
    .warranty-card:nth-child(2) {
        transform: scale(1);
    }
    
    .warranty-card:nth-child(2):hover {
        transform: translateY(-20px) scale(1.02);
    }
    
    .warranty-card:nth-child(2) .warranty-badge {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .section-warranty {
        padding: 60px 0;
    }
    
    .warranty-header {
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .warranty-grid {
        padding: 0 20px;
        gap: 40px;
    }
    
    .warranty-badge {
        height: 160px;
        font-size: 64px;
    }
    
    .warranty-badge::after {
        font-size: 16px;
        bottom: 20px;
    }
    
    .warranty-card-title {
        font-size: 22px;
        padding: 30px 30px 18px;
    }
    
    .warranty-card-text {
        font-size: 15px;
        padding: 0 30px 35px;
    }
}

@media (max-width: 480px) {
    .warranty-badge {
        height: 140px;
        font-size: 56px;
    }
    
    .warranty-badge::after {
        font-size: 14px;
        bottom: 18px;
    }
    
    .warranty-card-title {
        font-size: 20px;
        padding: 25px 25px 15px;
    }
    
    .warranty-card-text {
        font-size: 14px;
        padding: 0 25px 30px;
    }
}

.section-split.reverse .split-container {
    flex-direction: row-reverse;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-content {
    flex: 1;
}

.split-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--black);
}

.split-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Remove border-radius for square images */
.split-image-square img {
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Remove border-radius for images that already have it in the artwork */
.image-fade-wrapper img {
    border-radius: 0;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.image-badge {
    position: absolute;
    bottom: -15px;
    left: 30px;
    background: var(--caramel);
    color: var(--white);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(255, 148, 63, 0.4);
}

/* Dark Center Section */
.section-center {
    padding: 120px 0;
}

.section-center.bg-dark {
    background: var(--gray-900);
}

/* ==========================================
   SECTION: Testimonials / Depoimentos - Carrossel
   ========================================== */
.section-testimonials {
    position: relative;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 80px;
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.6s ease;
    overflow: hidden;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px 45px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-slide::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-family: 'Sora', sans-serif;
    font-size: 140px;
    font-weight: 900;
    color: rgba(255, 148, 63, 0.15);
    line-height: 1;
    pointer-events: none;
}

.testimonial-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 35px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-author strong {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--caramel);
}

.testimonial-author span {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Controles do Carrossel */
.testimonials-prev,
.testimonials-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 148, 63, 0.9);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 148, 63, 0.4);
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background: rgba(255, 123, 31, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 148, 63, 0.6);
}

.testimonials-prev {
    left: 0;
}

.testimonials-next {
    right: 0;
}

/* Dots de Navegação */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonials-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 148, 63, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-dots button.active {
    background: var(--caramel);
    border-color: var(--caramel);
    transform: scale(1.3);
}

.testimonials-dots button:hover {
    border-color: var(--caramel);
    transform: scale(1.2);
}

/* Responsivo Testimonials Carousel */
@media (max-width: 1024px) {
    .testimonials-carousel-wrapper {
        padding: 0 70px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        padding: 0 60px;
    }

    .testimonial-slide {
        padding: 40px 30px;
    }

    .testimonial-slide::before {
        font-size: 100px;
        left: 20px;
        top: -15px;
    }

    .testimonial-quote {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .testimonial-author strong {
        font-size: 16px;
    }

    .testimonial-author span {
        font-size: 14px;
    }

    .testimonials-prev,
    .testimonials-next {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel-wrapper {
        padding: 0 50px;
        margin: 50px auto 0;
    }

    .testimonial-slide {
        padding: 35px 25px;
    }

    .testimonial-slide::before {
        font-size: 80px;
        left: 15px;
        top: -10px;
    }

    .testimonial-quote {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .testimonial-author strong {
        font-size: 15px;
    }

    .testimonial-author span {
        font-size: 13px;
    }

    .testimonials-prev,
    .testimonials-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .testimonials-dots {
        gap: 10px;
        margin-top: 35px;
    }

    .testimonials-dots button {
        width: 10px;
        height: 10px;
    }
}

/* ==========================================
   SECTION: Testimonials / Depoimentos
   ========================================== */
.section-testimonials {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Sora', sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 148, 63, 0.15);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 148, 63, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author strong {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--caramel);
}

.testimonial-author span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Responsivo Testimonials */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 50px 0 0;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-card::before {
        font-size: 90px;
        left: 15px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonial-author strong {
        font-size: 15px;
    }
    
    .testimonial-author span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-card::before {
        font-size: 70px;
        left: 10px;
        top: -5px;
    }
    
    .testimonial-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Origin Section - Two Columns */
.section-origin {
    padding: 0;
    background: var(--gray-900);
}

.origin-container {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.origin-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gray-900);
}

.origin-content .section-label {
    margin-bottom: 20px;
}

.origin-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 30px;
}

.origin-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.origin-text strong {
    color: var(--caramel);
    font-weight: 700;
}

.origin-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 148, 63, 0.1);
    border-left: 4px solid var(--caramel);
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
    margin-top: 30px;
}

.origin-highlight .highlight-icon {
    font-size: 24px;
    color: var(--caramel);
    flex-shrink: 0;
}

.origin-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.btn-origin-cta {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff943f 0%, #ff7b1f 100%);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 148, 63, 0.4);
    margin-top: 30px;
    border: 2px solid transparent;
}

.btn-origin-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 148, 63, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.origin-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.origin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   SECTION: Testimonials Social Style / Depoimentos
   ========================================== */
.section-testimonials-social {
    background: #FFFDF7;
    padding: 100px 0 120px 0; /* Extra padding no bottom para os dots */
    position: relative;
}

.testimonials-social-header {
    text-align: center;
    margin-bottom: 70px;
}

.testimonials-social-header .section-label {
    display: inline-block;
    color: var(--caramel);
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.testimonials-social-header .title-large {
    color: #1a1a1a;
}

.testimonials-social-header .accent {
    color: var(--caramel);
}

.testimonials-social-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    line-height: 1.6;
    color: #555;
    margin: 20px auto 0;
    max-width: 800px;
    font-weight: 500;
}

/* Wrapper do Carrossel */
.testimonials-social-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0; /* Sem espaço lateral - sem controles */
}

/* Track do Carrossel */
.testimonials-social-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-social-card {
    flex: 0 0 auto; /* Largura será calculada dinamicamente */
    background: #FFFFF0;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.testimonial-social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.social-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.social-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.social-user-name {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.social-user-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.3;
}

.social-verified {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ff943f 0%, #ff7b1f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.social-card-body {
    padding: 24px;
}

.social-card-body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #2b2b2b;
    margin: 0;
}

.social-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
}

.social-time {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #999;
}

.social-likes {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Dots de Navegação */
.testimonials-social-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    padding: 20px 0;
    min-height: 52px;
}

.testimonials-social-dots button {
    width: 12px;
    height: 12px;
    background: rgba(255, 148, 63, 0.3);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.testimonials-social-dots button.active {
    background: var(--caramel);
    transform: scale(1.3);
}

.testimonials-social-dots button:hover:not(.active) {
    background: rgba(255, 148, 63, 0.6);
    transform: scale(1.2);
}

/* Responsivo */
@media (max-width: 768px) {
    .section-testimonials-social {
        padding: 80px 0;
    }
    
    .testimonials-social-header {
        margin-bottom: 50px;
    }
    
    .testimonials-social-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .social-card-body p {
        font-size: 14px;
    }
    
    /* FAQ Mobile */
    .section-faq {
        padding: 60px 0;
    }
    
    .faq-accordion {
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-question span:first-child {
        padding-right: 15px;
    }
    
    .faq-icon {
        font-size: 24px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .social-user-name {
        font-size: 15px;
    }
    
    .social-user-role {
        font-size: 12px;
    }
    
    .testimonials-social-prev,
    .testimonials-social-next {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .section-testimonials-social {
        padding: 60px 0;
    }
    
    .testimonials-social-subtitle {
        font-size: 15px;
    }
    
    .testimonials-social-wrapper {
        padding: 0 50px;
    }
    
    .social-card-header,
    .social-card-body,
    .social-card-footer {
        padding: 18px 20px;
    }
    
    .social-card-body p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .testimonials-social-prev,
    .testimonials-social-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .testimonials-social-dots {
        margin-top: 35px;
        gap: 10px;
    }
    
    .testimonials-social-dots button {
        width: 10px;
        height: 10px;
    }
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 148, 63, 0.1);
    border-left: 4px solid var(--caramel);
    padding: 25px 30px;
    border-radius: 0 15px 15px 0;
    margin-top: 40px;
    text-align: left;
}

.highlight-icon {
    font-size: 28px;
    color: var(--caramel);
}

.highlight-box p {
    color: var(--gray-300);
    font-size: 17px;
    line-height: 1.6;
}

.highlight-box strong {
    color: var(--caramel);
}

/* Stats Section */
.section-stats {
    padding: 100px 0;
    background: #FFFFF0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: #f8f8f8;
    padding: 45px 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 148, 63, 0.25);
    border-color: #ff943f;
}

.stat-number-large {
    font-family: 'Sora', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #ff943f;
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ff943f;
    margin-left: 5px;
}

/* Stats section - garante contraste em fundo claro */
.section-stats .stat-label,
.stat-card .stat-label {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333 !important;  /* Cor escura para melhor leitura */
    margin-top: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.country-flag {
    width: 48px;
    height: 36px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    cursor: default;
}

.country-flag:hover {
    transform: scale(1.15);
}

.country-more {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--caramel);
    padding: 5px 15px;
    background: rgba(255, 148, 63, 0.1);
    border-radius: 8px;
}

/* CTA dentro da seção Stats */
.stats-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding: 0 20px;
}

.btn-stats-cta {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff943f 0%, #ff7b1f 100%);
    padding: 22px 50px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 148, 63, 0.4);
    border: 2px solid transparent;
}

.btn-stats-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 148, 63, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ff7b1f 0%, #ff943f 100%);
}

/* Partner Section */
.section-partner {
    padding: 100px 0;
    background: var(--gray-100);
}

.partner-highlight {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.partner-logo {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--caramel);
    margin-bottom: 20px;
}

.partner-highlight p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Market Section */
.section-market {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--black) 100%);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.market-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 50px 40px;
    border-radius: 25px;
    transition: all 0.4s ease;
}

.market-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.market-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.market-label {
    display: inline-block;
    background: var(--caramel);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.market-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.market-stat {
    margin: 30px 0;
}

.big-number {
    font-family: 'Sora', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: var(--caramel);
    line-height: 1;
}

.suffix {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--caramel);
}

.market-stat p {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 10px;
}

.market-card > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-300);
}

.market-card strong {
    color: var(--caramel);
}

/* Profit Section */
.section-profit {
    padding: 100px 0;
    background: var(--white);
}

.section-profit .split-container {
    gap: 60px;
}

.profit-list {
    list-style: none;
    margin: 30px 0;
}

.profit-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
}

.profit-list .check {
    color: var(--caramel);
    font-weight: 700;
    font-size: 18px;
}

.profit-highlight {
    background: var(--caramel);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
}

.profit-number {
    font-family: 'Sora', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.profit-highlight p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin-top: 10px;
}

/* Audience Section */
.section-audience {
    padding: 100px 0;
    background: var(--gray-100);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.audience-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.audience-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.audience-label {
    display: inline-block;
    background: var(--gray-800);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.audience-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.audience-card > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.audience-result {
    background: var(--gray-100);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.audience-result strong {
    color: var(--caramel);
    font-size: 15px;
}

/* Line Sections */
.section-line {
    padding: 100px 0;
    background: var(--white);
}

.section-line.reverse {
    background: var(--gray-100);
}

.line-features {
    margin: 30px 0;
}

.line-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.feature-icon {
    color: var(--caramel);
    font-size: 14px;
}

.line-feature span:last-child {
    font-size: 16px;
    color: var(--gray-700);
}

/* FAQ Section */
.section-faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    background: #FFFFF0;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 24px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

.faq-answer strong {
    color: var(--gray-900);
}

/* Materials Section */
.section-materials {
    padding: 100px 0;
    background: var(--gray-900);
}

.section-materials .title-medium,
.section-materials .text-large {
    color: var(--white);
}

.section-materials .text-large {
    color: var(--gray-400);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.material-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.material-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.material-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.material-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.material-item p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Support Section */
.section-support {
    padding: 100px 0;
    background: var(--white);
}

.support-list {
    margin: 30px 0;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.support-icon {
    width: 30px;
    height: 30px;
    background: var(--caramel);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.support-item strong {
    display: block;
    font-size: 17px;
    color: var(--black);
    margin-bottom: 5px;
}

.support-item p {
    font-size: 14px;
    color: var(--gray-500);
}

.support-quote {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-style: italic;
    color: var(--caramel);
    margin-top: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--caramel);
}

/* CTA Final Section */
.section-cta-final {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--black) 0%, #1a1a1a 100%);
    text-align: center;
    position: relative;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 0, 0.3), transparent);
}

.cta-final-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.cta-final-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
}

.cta-final-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 111, 0, 0.4);
    transform: translateY(-5px);
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card-primary {
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1), rgba(255, 111, 0, 0.05));
    border-color: rgba(255, 111, 0, 0.3);
}

.cta-card-primary::before {
    opacity: 1;
}

.cta-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
}

.cta-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-card-number,
.cta-card-email {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-card-email {
    font-size: 14px;
  }

.cta-card-address {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.cta-card-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.cta-card-btn:hover {
    background: #ff8c33;
    border-color: #ff8c33;
    transform: scale(1.05);
}

.cta-card-btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cta-card-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.cta-final-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-footer-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-footer-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.cta-footer-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.cta-footer-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}


.contact-address {
    margin-top: 50px;
    color: var(--gray-400);
}

.contact-address strong {
    color: var(--white);
}

/* ==========================================
   NEW SECTIONS RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .section-split.reverse .split-container {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .market-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-profit .split-container {
        flex-direction: column;
    }

    .wire-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .section-wire {
        padding: 60px 0;
        min-height: auto;
    }
    
    .wire-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .wire-title {
        font-size: 32px;
    }
    
    .wire-logo {
        max-width: 160px;
        margin-top: 30px;
    }
    
    .wire-card-title {
        font-size: 18px;
    }
    
    .wire-card-text {
        font-size: 14px;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .wire-image-wrapper {
        aspect-ratio: 1.4;
    }
    
    .btn-wire-card {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section-wire {
        padding: 50px 0;
    }
    
    .wire-container {
        padding: 0 15px;
        gap: 35px;
    }
    
    .wire-label {
        font-size: 9px;
        margin-bottom: 30px;
    }
    
    .wire-title {
        font-size: 26px;
    }
    
    .wire-logo {
        max-width: 140px;
    }
    
    .wire-card-title {
        font-size: 16px;
    }
    
    .wire-card-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .section-split,
    .section-center,
    .section-faq,
    .section-stats,
    .section-partner,
    .section-market,
    .section-profit,
    .section-audience,
    .section-line,
    .section-materials,
    .section-support,
    .section-cta-final {
        padding: 80px 0;
    }
    
    /* CTA Final Mobile */
    .cta-final-header {
        padding: 0 20px;
    }
    
    .cta-final-subtitle {
        font-size: 16px;
    }
    
    .cta-final-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .cta-card {
        padding: 35px 25px;
    }
    
    .cta-card-title {
        font-size: 22px;
    }
    
    .cta-card-number,
    .cta-card-email {
        font-size: 18px;
    }
    
    .cta-card-address {
        font-size: 15px;
    }
    
    .cta-final-footer {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .cta-footer-divider {
        width: 60px;
        height: 1px;
    }
    
    .cta-footer-item {
        text-align: center;
    }
    
    .origin-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .origin-content {
        padding: 60px 30px;
    }
    
    .origin-title {
        font-size: 1.8rem;
    }
    
    .origin-text {
        font-size: 15px;
    }
    
    .origin-image {
        height: 350px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-cta-wrapper {
        margin-top: 50px;
    }
    
    .btn-stats-cta {
        font-size: 18px;
        padding: 20px 40px;
    }
    
    .stat-number-large {
        font-size: 42px;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .big-number {
        font-size: 52px;
    }
    
    .btn-primary.large,
    .btn-outline.large {
        min-width: 100%;
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .countries-list {
        gap: 15px;
    }
    
    .countries-list span {
        font-size: 40px;
    }
    
    .btn-stats-cta {
        font-size: 17px;
        padding: 18px 35px;
    }
}

@media (max-width: 480px) {
    .origin-content {
        padding: 40px 20px;
    }
    
    .origin-title {
        font-size: 1.5rem;
    }
    
    .origin-text {
        font-size: 14px;
    }
    
    .origin-image {
        height: 280px;
    }
    
    .origin-highlight {
        padding: 15px 20px;
        gap: 12px;
    }
    
    .origin-highlight p {
        font-size: 14px;
    }
    
    .btn-origin-cta {
        font-size: 16px;
        padding: 16px 35px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .split-title {
        font-size: 28px;
    }
    
    .title-large {
        font-size: 28px;
    }
    
    .title-medium {
        font-size: 24px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stats-cta-wrapper {
        margin-top: 40px;
    }
    
    .btn-stats-cta {
        font-size: 16px;
        padding: 16px 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .market-card {
        padding: 35px 25px;
    }
    
    .audience-card {
        padding: 35px 25px;
    }
    
    .highlight-box {
        flex-direction: column;
        gap: 15px;
    }
}

/* ==========================================
   MODERN REVEAL ANIMATIONS
   ========================================== */

/* Slide Up Animation */
.anim-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* Pop Animation */
.anim-pop {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.6s;
}

.anim-pop.visible {
    opacity: 1;
    transform: scale(1);
}

/* Image Fade Container - Simple elegant animation */
.image-fade-container {
    position: relative;
    overflow: visible;
}

.image-fade-wrapper {
    position: relative;
    overflow: hidden;
}

.image-fade-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.8s ease-in, transform 0.9s ease-out;
}

.image-fade-wrapper.revealed img {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Light Sweep Effect */
.image-light-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 45%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.25) 55%,
        transparent 100%
    );
    transform: skewX(-20deg);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
}

.image-fade-wrapper.revealed .image-light-sweep {
    animation: lightSweep 1.2s ease-in-out 0.5s forwards;
}

@keyframes lightSweep {
    0% {
        left: -100%;
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Floating Badge Animation */
.image-fade-container .image-badge {
    animation: floatBadge 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ==========================================
   ACCESSIBILITY IMPROVEMENTS
   Melhorias de contraste para WCAG AA
   ========================================== */

/* Garantir contraste adequado em labels de seção */
.section-label {
    color: #ffb060;  /* Laranja mais claro para melhor contraste em fundos escuros */
}

/* Links e CTAs com melhor contraste - apenas em fundos escuros */
.bg-dark .btn-wire-card,
.bg-dark .btn-core-value,
.bg-dark .btn-features-cta {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Textos accent com contraste melhorado */
.accent {
    text-shadow: 0 0 1px rgba(0,0,0,0.1);
}

/* Focus visible para acessibilidade de teclado */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--caramel);
    outline-offset: 2px;
}

/* Melhorar legibilidade de textos pequenos */
.gallery-desc,
.feature-text,
.stat-label {
    color: rgba(255, 255, 255, 0.85);
}
