/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4a5568;
    --primary-dark: #2d3748;
    --secondary: #718096;
    --accent: #a0aec0;
    --success: #cbd5e0;
    --warning: #e2e8f0;
    --chrome-gradient: linear-gradient(135deg, #4a5568 0%, #718096 50%, #a0aec0 100%);
    --chrome-shine: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    --glow-cyan: #718096;
    --glow-purple: #4a5568;
    --glow-pink: #a0aec0;
    --bg-dark: #1a202c;
    --bg-darker: #0f1419;
    --text-light: #e2e8f0;
    --text-muted: #a0aec0;
    --border-color: #4a5568;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #131316;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animações Tecnológicas */
@keyframes filmNoise {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.1; }
}

@keyframes ditherDrift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(2px, 2px); }
    50% { transform: translate(0, 2px); }
    75% { transform: translate(-2px, 0); }
    100% { transform: translate(0, 0); }
}

@keyframes chromeShine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; filter: blur(20px); }
    50% { opacity: 1; filter: blur(30px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateZ(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateZ(100px); }
}

/* Animações de Entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classes de animação no scroll */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animações gerais para seções */
section {
    position: relative;
    z-index: 10000;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Film Overlay - Película da Página */
.film-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    opacity: 0.15;
    background-image: url('Screenshots/Pelocula da página.avif');
    background-size: auto;
    background-position: top left;
    background-repeat: repeat;
}

/* Grid Tecnológico de Fundo - REMOVIDO */
body::before {
    display: none;
}

/* Efeito de Partículas Brilhantes - REMOVIDO */
body::after {
    display: none;
}

/* Orbs desabilitados */
.tech-background {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10000;
}

/* Header */
header {
    padding: 20px 0;
    background: #131316;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 10001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #1a9d7a;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a9d7a;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: #131316;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero h1 {
    animation-delay: 0.2s;
}

.hero .subtitle {
    animation-delay: 0.4s;
}

.hero .cta-button {
    animation-delay: 0.6s;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-logo {
    position: relative;
    z-index: 10000;
    width: 200px;
    height: auto;
    margin-bottom: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 35px;
    color: var(--text-light);
    letter-spacing: -2px;
}

.hero h1::after {
    content: '';
    display: block;
    width: 120px;
    height: 6px;
    background: var(--border-color);
    margin: 30px auto 0;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 50px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Botões CTA */
.cta-button {
    position: relative;
    z-index: 10000;
    background-image: url('Screenshots/background-botoes-2.avif');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #555555;
    padding: 22px 60px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    box-shadow: none;
    animation: scaleIn 0.6s ease-out;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
    box-shadow: none;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: #131316;
    position: relative;
}

/* Stats Tabs */
.stats-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.stats-tab-btn {
    background: #2a2a2a;
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-tab-btn:hover {
    border-color: var(--accent);
    color: var(--text-light);
    transform: translateY(-2px);
}

.stats-tab-btn.active {
    background: var(--border-color);
    border-color: var(--accent);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.stats-tab-content {
    display: none;
}

.stats-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Container do vídeo com footer */
.video-box-container {
    position: relative;
    z-index: 10000;
    background: #2a2a2a url('Screenshots/Background das caixas 2.avif');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-headline {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-light);
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.stats-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    z-index: 10001;
}

/* Footer do vídeo */
.video-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.video-footer-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.video-footer-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.dashboard-image {
    position: relative;
    z-index: 10000;
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    margin: 0 auto 60px auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 50px 30px;
    background: #2a2a2a url('Screenshots/Background das caixas 2.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10000;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.95);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 15px;
    letter-spacing: -2px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Diferencial */
.diferencial {
    padding: 80px 0;
    background: #131316;
    position: relative;
}

.diferencial h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    color: var(--text-light);
}

/* Cases Section */
.cases {
    padding: 100px 0;
    background-color: #131316;
}

.cases h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.case-card {
    background: #2a2a2a url('Screenshots/Background das caixas 2.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 10000;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover::before {
    transform: scaleX(1);
    background: var(--accent);
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.95);
}

.case-card h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.video-wrapper {
    position: relative;
    z-index: 10000;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    z-index: 10001;
}

/* Testimonials Carousel */
.testimonials-carousel {
    padding: 80px 0;
    background: #131316;
    overflow: hidden;
    position: relative;
}

.testimonials-carousel::before,
.testimonials-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-carousel::before {
    left: 0;
    background: linear-gradient(to right, #131316 0%, #131316 20%, rgba(19, 19, 22, 0.9) 40%, rgba(19, 19, 22, 0.5) 70%, transparent 100%);
}

.testimonials-carousel::after {
    right: 0;
    background: linear-gradient(to left, #131316 0%, #131316 20%, rgba(19, 19, 22, 0.9) 40%, rgba(19, 19, 22, 0.5) 70%, transparent 100%);
}

.carousel-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.carousel-left {
    animation-name: scrollLeft;
}

.carousel-right {
    animation-name: scrollRight;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px 45px;
    min-width: 450px;
    max-width: 450px;
    min-height: 200px;
    font-size: 18px;
    line-height: 1.7;
    color: #CCCCCC;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card br {
    margin-bottom: 12px;
    display: block;
    content: "";
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: #131316;
}

/* Proposta de Valor */
.proposta-valor {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    position: relative;
}

.proposta-valor h2 {
    font-size: 52px;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    color: var(--text-light);
    letter-spacing: -1px;
    max-width: 900px;
    margin: 0 auto;
}

/* Comparativo */
.comparativo {
    padding: 100px 0;
    background-color: #131316;
}

.comparativo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 50px;
}

.comparativo-column {
    position: relative;
    z-index: 10000;
    background: #2a2a2a url('Screenshots/Background das caixas 2.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 30px;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
}

.comparativo-column h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
}

.comparativo-column ul {
    list-style: none;
}

.comparativo-column li {
    padding: 15px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-x {
    color: #FF4444;
    font-size: 24px;
    font-weight: 900;
}

.icon-check {
    color: #C3E9A0;
    font-size: 24px;
    font-weight: 900;
}

.comparativo-outros h3 {
    color: #FF4444;
}

.comparativo-nos h3 {
    color: #C3E9A0;
}

/* O que Esperar */
.o-que-esperar {
    padding: 100px 0;
    background-color: #131316;
}

.o-que-esperar h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    color: #CBCBCB;
}

.logo-center {
    text-align: center;
    margin-top: 60px;
}

.wonne-logo {
    position: relative;
    z-index: 10000;
    width: auto;
    height: auto;
    max-width: 100%;
    display: inline-block;
}

/* Serviços */
.servicos {
    padding: 100px 0;
    background-color: #131316;
}

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

.servico-card {
    background: #2a2a2a url('Screenshots/Background das caixas 2.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 45px;
    border-radius: 28px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 10000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
}

.servico-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--border-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.servico-card:hover::after {
    transform: scaleY(1);
    transform-origin: top;
    background: var(--accent);
}

.servico-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.95);
}

.servico-card h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.servico-card p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Método W.I.N */
.metodo-win {
    padding: 100px 0;
    background: #131316;
    position: relative;
}

.metodo-win h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
    position: relative;
}

.win-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.win-pilar {
    background: rgba(19, 19, 22, 0.6) url('Screenshots/Background das caixas 2.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    z-index: 10000;
    overflow: hidden;
    transition: all 0.4s ease;
}

.win-pilar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.win-pilar:hover::after {
    opacity: 1;
}

.win-pilar:hover {
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.win-pilar h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.win-pilar ul {
    list-style: none;
}

.win-pilar li {
    padding: 12px 0;
    font-size: 16px;
    color: #A2ABBA;
    padding-left: 25px;
    position: relative;
}

.win-pilar li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #017E9B;
    font-weight: 900;
}

/* Close Friends Oferta */
.close-friends-oferta {
    padding: 100px 0;
    background: #131316;
}


.close-friends-box {
    max-width: 850px;
    margin: 0 auto;
    background: #2a2a2a url('Screenshots/Background dos botoes.avif');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 50px;
    border-radius: 28px;
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 10000;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.95);
    text-align: center;
}

.close-friends-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-color);
}

.close-friends-box > * {
    position: relative;
    z-index: 1;
}

.close-friends-titulo {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.close-friends-subtitulo {
    font-size: 36px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.3;
}

.close-friends-lista {
    list-style: none;
    text-align: left;
    max-width: 650px;
    margin: 0 auto 40px auto;
    padding: 0;
}

.close-friends-lista li {
    padding: 18px 0;
    font-size: 19px;
    color: #E0E0E0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.close-friends-lista li:last-child {
    border-bottom: none;
}

.close-friends-preco {
    margin: 50px 0 40px 0;
}

.preco-texto {
    font-size: 24px;
    color: #CCCCCC;
    margin-bottom: 15px;
    font-weight: 600;
}

.preco-valor-destaque {
    font-size: 80px;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: -3px;
    line-height: 1;
    margin: 0;
}

.close-friends-box .cta-button {
    width: 100%;
    max-width: 600px;
    padding: 25px;
    font-size: 19px;
    margin-top: 20px;
}

/* Elegibilidade */
.elegibilidade {
    padding: 100px 0;
    background-color: #131316;
}

.elegibilidade h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #FFFFFF;
}

.criterios-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.criterios-list li {
    padding: 20px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Oferta Principal */
.oferta-principal {
    padding: 100px 0;
    background: #131316;
}

.oferta-box {
    max-width: 750px;
    margin: 0 auto;
    background: #2a2a2a url('Screenshots/Background das caixas 2.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 60px;
    border-radius: 32px;
    border: 2px solid var(--border-color);
    position: relative;
    z-index: 10000;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.95);
}

.oferta-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border-color);
}

.oferta-box > * {
    position: relative;
    z-index: 1;
}

.oferta-box h2 {
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 45px;
    color: var(--text-light);
    letter-spacing: -1px;
    line-height: 1.3;
}

.oferta-conteudo h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.oferta-conteudo ul {
    list-style: none;
    margin-bottom: 40px;
}

.oferta-conteudo li {
    padding: 15px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.preco {
    text-align: center;
    margin: 40px 0;
}

.preco-valor {
    font-size: 72px;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: -2px;
}

.oferta-box .cta-button {
    width: 100%;
    padding: 20px;
    font-size: 18px;
}

/* Sobre Fundador */
.sobre-fundador {
    padding: 100px 0;
    background: #131316;
    position: relative;
}

.sobre-fundador .section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #FFFFFF;
    letter-spacing: -1px;
}

.fundador-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.fundador-foto {
    margin-bottom: 40px;
}

.fundador-foto img {
    position: relative;
    z-index: 10000;
    width: auto;
    height: 700px;
    display: block;
}

.fundador-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
}

.fundador-info h3 {
    font-size: 56px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.fundador-info p {
    font-size: 22px;
    color: #E0E0E0;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    text-align: justify;
    text-justify: inter-word;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background-color: #131316;
}

.faq h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    z-index: 10000;
    background: #2a2a2a url('Screenshots/Background das caixas 2.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--border-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question::before,
.faq-item.active .faq-question::before {
    transform: scaleY(1);
    background: var(--accent);
}

.faq-question:hover {
    background: #333333;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Modal de Contato */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.modal-content {
    position: relative;
    background: #2a2a2a url('Screenshots/Background das caixas 2.avif');
    background-size: cover;
    background-position: center;
    max-width: 550px;
    width: 90%;
    padding: 50px 40px;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95);
    z-index: 2;
    animation: slideUp 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-light);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-align: center;
}

.modal-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 35px;
}

.contact-form {
    position: relative;
    z-index: 3;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 15px 18px;
    background: #1a1a1a;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: #222222;
}

.form-group input::placeholder {
    color: #666666;
}

.checkbox-group {
    margin-top: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #1a9d7a;
}

.checkbox-label span {
    flex: 1;
    line-height: 1.5;
}

.terms-link {
    color: #1a9d7a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #20c799;
}

.modal-submit-btn {
    width: 100%;
    padding: 18px;
    margin-top: 30px;
    background-image: url('Screenshots/background-botoes-2.avif');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #555555;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
    box-shadow: none;
}

.modal-submit-btn:active {
    transform: translateY(0);
}

/* Footer */
footer {
    position: relative;
    z-index: 10000;
    padding: 80px 0;
    background-color: #131316;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo-wrapper {
    position: relative;
}

.footer-logo-img {
    position: relative;
    z-index: 10000;
    width: 250px;
    height: auto;
    display: block;
}

.footer-brand {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 4px;
    margin: 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
}

.footer-contact {
    color: #FFFFFF;
    font-size: 16px;
}

.footer-address,
.footer-legal,
.footer-terms {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* Redes Sociais no Footer */
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
}

.social-link:hover {
    color: #1a9d7a;
    transform: translateY(-3px);
}

.social-link svg {
    width: 32px;
    height: 32px;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    /* Prevenir scroll horizontal no mobile */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    * {
        max-width: 100% !important;
    }

    /* Ocultar película granulada no mobile */
    body::after {
        display: none !important;
    }

    /* Ocultar menu de navegação no mobile */
    header {
        display: none;
    }

    /* Container geral */
    .container {
        padding: 0 20px;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 16px;
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Stats Section - Tabs */
    .stats-tabs {
        flex-direction: column;
        gap: 15px;
    }

    .stats-tab-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }

    /* Stats Grid - 1 coluna */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Dashboard Image */
    .dashboard-image {
        width: 100%;
        height: auto;
    }

    /* Ocultar Carrossel de Depoimentos no Mobile */
    .testimonials-carousel {
        display: none !important;
    }

    /* Cases - 1 coluna */
    .cases-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    /* Gustavo Freire Section */
    .gustavo-freire-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .fundador-foto img {
        content: url('Screenshots/Gustavo Freire - Mobile.png') !important;
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        margin: 0 auto;
        object-fit: cover;
    }

    .gustavo-freire-image {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        margin: 0 auto;
        object-fit: cover;
    }

    .gustavo-freire-text {
        text-align: justify;
    }

    /* Método W.I.N - 1 coluna */
    .win-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    /* Serviços - 1 coluna */
    .servicos-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    /* Comparativo - 1 coluna */
    .comparativo-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .comparativo-column {
        min-width: 100%;
    }

    /* Close Friends */
    .close-friends-oferta {
        padding: 40px 0;
    }

    .close-friends-box {
        padding: 40px 25px;
    }

    .close-friends-titulo {
        font-size: 28px;
    }

    .close-friends-subtitulo {
        font-size: 18px;
    }

    .close-friends-lista li {
        font-size: 16px;
        padding-left: 30px;
    }

    .preco-valor-destaque {
        font-size: 42px;
    }

    /* FAQ - 1 coluna */
    .faq h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer {
        font-size: 15px;
        padding: 20px;
    }

    /* Modal ajustes mobile */
    .modal-content {
        width: 90%;
        max-width: 400px;
        padding: 30px 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-close {
        font-size: 32px;
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }

    .modal-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .modal-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .form-group input {
        padding: 12px;
        font-size: 15px;
    }

    .modal-submit-btn {
        padding: 14px;
        font-size: 16px;
    }

    /* Video Box Container - Mobile */
    .video-box-container {
        padding: 20px;
    }

    .video-headline {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .video-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .video-footer-text {
        font-size: 18px;
    }

    .video-footer-btn {
        width: 100%;
    }

    /* Footer - 1 coluna */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        margin: 0 auto;
    }

    /* Títulos gerais */
    h2 {
        font-size: 32px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    /* Botões */
    .cta-button {
        padding: 16px 40px;
        font-size: 16px;
        width: 100%;
    }

    /* Video wrapper */
    .stats-video-wrapper {
        max-width: 100%;
    }
}
