/* --- VARIABLES --- */
:root {
    --bg-main: #0A0A0B;
    --bg-secondary: #121214;
    --fox-orange: #f60e5a;
    --fox-orange-glow: rgba(246, 14, 90, 0.3);
    --text-primary: #E0E0E0;
    --text-secondary: #888888;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo { font-family: 'Sora', sans-serif; }
.logo, .btn, .badge, .status-badge { font-family: 'Orbitron', sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.container.small { max-width: 800px; }
.text-center { text-align: center; }

/* --- NAVIGATION --- */
.main-nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    /* Removido overflow: hidden para evitar cortes */
}

.logo span {
    color: var(--fox-orange);
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden; /* Mantém o oculto apenas no DESIGN */
    white-space: nowrap;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-15px);
}

.logo:hover span {
    max-width: 250px; /* Aumentado para garantir que nada seja cortado */
    opacity: 1;
    transform: translateX(12px); /* Gap elegante após o FOX */
    margin-right: 10px; /* Garante que o DESIGN não cole na borda */
}

.desktop-nav a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--fox-orange);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--fox-orange-glow);
}

.desktop-nav a:hover {
    color: var(--fox-orange);
    transform: translateY(-3px);
}

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

.nav-cta {
    background: var(--fox-orange);
    color: #000 !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    transition: all 0.3s ease !important;
}

.nav-cta::after { display: none; } /* Remove underline do CTA */

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 5px 15px var(--fox-orange-glow);
    filter: brightness(1.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Camada de Gradiente para garantir legibilidade */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-main) 90%);
    z-index: 0;
    pointer-events: none;
}

.hero-content { 
    flex: 1; 
    position: relative; 
    z-index: 2; 
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8); /* Sombra para destacar do video */
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--fox-orange);
    text-shadow: 0 0 20px var(--fox-orange-glow);
}

.hero p {
    font-size: 1.25rem;
    color: var(--white); /* Mudando para branco para maior contraste */
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.glass-card {
    width: 70%; height: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.card-header { display: flex; gap: 8px; margin-bottom: 20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.skeleton-line { height: 10px; background: rgba(255,255,255,0.1); border-radius: 5px; margin-bottom: 10px; }
.skeleton-line.short { width: 60%; }
.skeleton-rect { height: 60px; background: rgba(255,255,255,0.05); border-radius: 10px; margin-top: 20px; }

.floating-badge {
    position: absolute;
    background: var(--bg-secondary);
    border: 1px solid var(--fox-orange);
    color: var(--fox-orange);
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
}

.top-right { top: 10%; right: -5%; }
.bottom-left { bottom: 10%; left: -5%; }

/* --- SECTIONS --- */
section { padding: 120px 0; }

.section-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    letter-spacing: -1px;
}

.section-title span {
    color: var(--fox-orange);
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-30px);
}

.section-title:hover span {
    max-width: 500px;
    opacity: 1;
    transform: translateX(15px);
    margin-left: 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -40px auto 60px;
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.section-subtitle.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* --- BUTTONS UPGRADE --- */
.btn {
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--fox-orange) 0%, #d40c4e 100%);
    color: #fff;
    box-shadow: 0 10px 30px var(--fox-orange-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px var(--fox-orange-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    border: 1px solid var(--fox-orange);
    color: var(--white);
    background: rgba(246, 14, 90, 0.05);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--fox-orange);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--fox-orange-glow);
}
/* --- BENEFITS --- */
.benefits .grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
}

.benefit-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    flex: 1 1 280px;
    max-width: 350px;
}

.benefit-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover { border-color: var(--fox-orange); transform: translateY(-10px) !important; }

.benefit-card i { 
    color: var(--fox-orange); 
    width: 48px; 
    height: 48px; 
    margin: 0 auto 24px; /* Centraliza o ícone horizontalmente */
    display: block;
}

.benefit-card h3 { margin-bottom: 16px; font-size: 1.25rem; }
.benefit-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* --- SERVICES VITRINE (CENTRALIZADO) --- */
.services { background: #080809; padding: 120px 0; text-align: center; }

.services .section-title {
    justify-content: center;
    text-align: center;
}

.services .section-title span {
    max-width: none;
    opacity: 1;
    transform: none;
    margin-left: 10px;
    display: inline-block;
    overflow: visible;
    white-space: normal;
}

.services .section-title:hover span {
    transform: none;
    max-width: none;
}

.services-grid-full {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.service-card-mini {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 10px 22px;
    border-radius: 100px; /* Estilo Pílula */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: default;
    white-space: normal; /* Permite quebra de linha se necessário para não cortar */
    text-align: left;
}

.service-card-mini:hover {
    border-color: var(--fox-orange);
    background: rgba(246, 14, 90, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--fox-orange-glow);
}

.service-card-mini i {
    color: var(--fox-orange);
    width: 16px;
    height: 16px;
}

.service-card-mini span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.services-category-title {
    width: 100%;
    font-family: 'Orbitron', sans-serif;
    color: var(--fox-orange);
    font-size: 1.1rem;
    margin: 60px 0 25px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.services-category-title::before,
.services-category-title::after {
    content: '';
    height: 1px;
    width: 50px;
    background: linear-gradient(90deg, transparent, var(--fox-orange));
}

.services-category-title::after {
    background: linear-gradient(90deg, var(--fox-orange), transparent);
}

/* --- WHY US --- */
.why-us .section-title {
    display: block; /* Muda de flex para block para evitar desalinhamentos de flexbox */
    text-align: left;
    margin-bottom: 40px;
    cursor: default;
}

.why-us .section-title span {
    display: inline; /* Volta para inline para fluir com o texto */
    max-width: none;
    opacity: 1;
    transform: none;
    margin-left: 0;
    overflow: visible;
    white-space: normal;
    color: var(--fox-orange);
}

.why-us .section-title:hover span {
    transform: none;
    max-width: none;
}

.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image {
    height: 600px; background: var(--bg-secondary); border-radius: 40px;
    position: relative; overflow: hidden;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%; /* Ajusta para focar no rosto se a foto for alta */
    transition: var(--transition);
}

.why-image:hover .founder-photo {
    transform: scale(1.05);
}

.glow-box {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; height: 100%; background: radial-gradient(circle, var(--fox-orange-glow) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.differentiators { list-style: none; }
.differentiators li {
    margin-bottom: 24px; padding-left: 35px; position: relative;
    font-size: 1.1rem; color: var(--text-secondary);
    transition: var(--transition);
}

.differentiators li:hover {
    color: var(--white);
    transform: translateX(10px);
}

.differentiators li::before {
    content: '→'; position: absolute; left: 0; color: var(--fox-orange); font-weight: 700;
    transition: var(--transition);
}

.differentiators li:hover::before {
    left: -5px;
    text-shadow: 0 0 10px var(--fox-orange);
}

.differentiators li strong { color: var(--white); display: block; margin-bottom: 4px; }

/* --- TESTIMONIALS --- */
.testimonials-slider { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.testimonial-card {
    background: var(--bg-secondary); padding: 40px; border-radius: 20px; text-align: left;
}
.testimonial-card p { font-style: italic; font-size: 1.1rem; margin-bottom: 24px; }
.user-info strong { display: block; color: var(--fox-orange); }
.user-info span { font-size: 0.85rem; color: var(--text-secondary); }

/* --- LEAD CAPTURE --- */
.lead-capture { background: linear-gradient(180deg, var(--bg-main) 0%, #151517 100%); }

.lead-video-wrapper {
    width: 100%;
    max-width: 500px;
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--fox-orange);
    box-shadow: 0 0 40px var(--fox-orange-glow);
    background: var(--bg-secondary);
    position: relative;
}

.lead-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.lead-features { margin-top: 40px; }
.f-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-weight: 600; }
.f-item i { color: var(--fox-orange); width: 20px; }

.lead-form-box {
    background: var(--bg-secondary); padding: 50px; border-radius: 30px;
    border: 1px solid var(--glass-border); box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.input-group { margin-bottom: 24px; }
.input-group label { display: block; font-size: 0.85rem; margin-bottom: 10px; color: var(--text-secondary); }
.input-group input, .input-group select {
    width: 100%; padding: 16px; background: var(--bg-main);
    border: 1px solid var(--glass-border); border-radius: 8px; color: var(--white);
    outline: none; transition: var(--transition);
}

.input-group input:focus { border-color: var(--fox-orange); box-shadow: 0 0 15px var(--fox-orange-glow); }
.btn-full { width: 100%; cursor: pointer; border: none; }

/* --- FAQ --- */
.accordion { margin-top: 40px; }
.accordion-item { border-bottom: 1px solid var(--glass-border); }
.accordion-header {
    padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: 700; font-size: 1.1rem;
}
.accordion-body { padding: 0 0 24px; color: var(--text-secondary); display: none; }
.accordion-header.active i { transform: rotate(180deg); color: var(--fox-orange); }

/* --- FINAL CTA --- */
.final-cta { padding: 160px 0; background: radial-gradient(circle, var(--fox-orange-glow) 0%, transparent 70%); }
.final-cta h2 { font-size: clamp(2rem, 6vw, 3.5rem); margin-bottom: 48px; max-width: 900px; margin-inline: auto; }
.btn-large { font-size: 1.1rem; padding: 22px 48px; }

/* --- FOOTER --- */
footer { padding: 80px 0 40px; border-top: 1px solid var(--glass-border); background: #050505; }
.footer-grid { 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; 
    margin-bottom: 60px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex !important;
    align-items: center;
    gap: 8px;
    cursor: default;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--fox-orange) !important;
    max-width: none !important;
    opacity: 1 !important;
    transform: none !important;
    display: inline-block !important;
    overflow: visible !important;
    white-space: nowrap !important;
    margin-left: 5px !important;
}

.footer-tagline { 
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-social h4 { 
    margin-bottom: 20px; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: var(--fox-orange); 
}

.social-icons { 
    display: flex; 
    gap: 25px; 
    align-items: center; 
}

.social-icons a { 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px; /* Container fixo para garantir proporção */
    height: 35px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garante que a imagem caiba perfeitamente no quadrado */
    filter: invert(18%) sepia(95%) saturate(5341%) hue-rotate(334deg) brightness(97%) contrast(106%);
    opacity: 0.85;
    transition: var(--transition);
}

.social-icons a:hover { transform: translateY(-5px); }
.social-icons a:hover img {
    filter: brightness(0) invert(1);
    opacity: 1;
    filter: drop-shadow(0 0 15px var(--fox-orange-glow)) brightness(0) invert(1);
}
.footer-bottom { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 40px; color: #666; font-size: 0.85rem; font-family: 'Orbitron', sans-serif; letter-spacing: 1px; }

/* --- PRICING SECTION --- */
.pricing { background: var(--bg-main); padding: 120px 0; position: relative; }

.pricing .section-title span {
    max-width: none;
    opacity: 1;
    transform: none;
    margin-left: 10px;
    display: inline-block;
    overflow: visible;
    white-space: normal;
}

.pricing .section-title:hover span {
    transform: none;
    max-width: none;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.pricing-card {
    background: var(--bg-secondary);
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    flex: 1 1 320px;
    max-width: 380px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--fox-orange);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px var(--fox-orange-glow);
}

.pricing-card:hover {
    border-color: var(--fox-orange);
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header { margin-bottom: 30px; }
.pricing-header h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--white); }

.package-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
    text-align: left;
}

.feature-category {
    font-size: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--fox-orange);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    border-bottom: 1px solid rgba(246, 14, 90, 0.2);
    padding-bottom: 5px;
}

.pricing-features { list-style: none; margin-bottom: 25px; flex-grow: 0; }
.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: left;
}

.pricing-features li i { color: var(--fox-orange); width: 18px; }

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--fox-orange);
    color: #fff;
    padding: 8px 40px;
    font-size: 0.7rem;
    font-weight: 900;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed; bottom: 40px; right: 40px;
    width: 65px; height: 65px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-content { padding-right: 0; margin-bottom: 60px; }
    .hero-btns { justify-content: center; }
    .hero-trust { justify-content: center; }
    .grid-split { grid-template-columns: 1fr; gap: 40px; }
    .why-image { height: 350px; order: 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-title { text-align: center; }
    .section-title::after { left: 50%; transform: translateX(-50%); }
    .hero h1 { font-size: 2.8rem; }
}
