@charset "UTF-8";
/* 
 * AUTTEC Design System v2.4 - ULTRA FIDELITY 
 * Resolvendo Cache, Cores e Alinhamento
 */
* { box-sizing: border-box; }

:root {
    --teal-dark: #067A80;
    --aqua-accent: #31D2CA;
    --dark-bg: #052c30;
    --off-white: #e0e6e6;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
}

/* RESET TOTAL DE LINKS - MATANDO O ROXO */
a, a:visited, a:active, a:focus { 
    text-decoration: none !important; 
    color: inherit !important; 
    outline: none !important;
}

body { font-family: 'Inter', sans-serif; background: #fff; margin: 0; color: #052c30; }

/* Header Glass */
.main-header { 
    background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); 
    padding: 10px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000;
}
.header-container { display: flex; justify-content: space-between; align-items: center; width: 90%; max-width: 1200px; margin: 0 auto; }
.logo img { width: 175px; height: auto; }
.main-nav ul { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.main-nav a { font-weight: 700; font-size: 0.9rem; }

/* Botão Agendar Diagnóstico (Estilo Azul Cyan do Print) */
/* Botões Base */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary { 
    background: var(--aqua-accent) !important; 
    color: #052c30 !important; 
    border: none;
    box-shadow: 0 4px 15px rgba(49, 210, 202, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 210, 202, 0.4);
}

.btn-outline {
    border: 1px solid var(--aqua-accent) !important;
    color: var(--aqua-accent) !important;
    background: transparent !important;
}
.btn-outline:hover {
    background: rgba(49, 210, 202, 0.1) !important;
}

/* Botão de Tema (Branco com texto preto conforme solicitado) */
.theme-btn {
    background: #FFFFFF !important;
    color: #000000 !important;
    padding: 4px 12px !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    border: 1px solid #ccc !important;
    border-radius: 2px !important;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 5px;
}

/* Rodapé em Colunas (Display Flex para garantir alinhamento horizontal) */
.main-footer { background: #052c30; color: #fff; padding: 70px 0; }
.footer-container { 
    display: flex !important; 
    justify-content: space-between !important; 
    align-items: flex-start !important;
    width: 90%; max-width: 1200px; margin: 0 auto;
}
.footer-col { flex: 1; }
.footer-col:first-child { flex: 1.2; }
.footer-col h4 { color: #fff; margin-bottom: 20px; font-weight: 700; font-size: 1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.6) !important; font-size: 0.95rem; }
.footer-links a:hover { color: #fff !important; }

/* Tema Escuro Real */
body.dark-theme { background: #041f23 !important; color: #e0e6e6 !important; }
body.dark-theme .main-header { background: rgba(4, 31, 35, 0.9) !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
body.dark-theme .main-nav a { color: #fff !important; }
body.dark-theme section { background: transparent !important; }
body.dark-theme h1, body.dark-theme h2, body.dark-theme h3 { color: #31D2CA !important; }

/* --- FORMULÁRIOS MODERNOS --- */
.form-group { margin-bottom: 1.5rem; }
.form-label { 
    display: block; margin-bottom: 0.6rem; font-weight: 600; font-size: 0.9rem; 
    color: var(--teal-dark); transition: 0.3s;
}
.form-control {
    width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
    border: 1px solid #ddd; background: #fff; font-family: inherit; font-size: 0.95rem;
    transition: all 0.3s ease; box-sizing: border-box;
}
.form-control:focus {
    outline: none; border-color: var(--aqua-accent);
    box-shadow: 0 0 0 4px rgba(49, 210, 202, 0.15);
}
.form-control::placeholder { color: #bbb; }

/* Tema Escuro nos Formulários */
body.dark-theme .form-label { color: var(--aqua-accent); }
body.dark-theme .form-control {
    background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1);
    color: #fff; backdrop-filter: blur(5px);
}
body.dark-theme .form-control:focus {
    background: rgba(255, 255, 255, 0.08); border-color: var(--aqua-accent);
}
body.dark-theme .form-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px);
}

/* Fix para Dropdown Select no Modo Escuro */
body.dark-theme select.form-control {
    color-scheme: dark; /* Força o navegador a renderizar o dropdown em modo escuro se disponível */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2331D2CA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
}

body.dark-theme select.form-control option {
    background-color: #052c30;
    color: #fff;
}

/* Ajustes de Grid e Containers */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-pad { padding: 80px 0; }

/* --- COMPONENTES PREMIUM --- */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(49, 210, 202, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.badge-tech {
    background: rgba(49, 210, 202, 0.1);
    color: var(--aqua-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(49, 210, 202, 0.2);
}

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

.reveal { animation: fadeInUp 0.8s ease-out forwards; }

/* FAQ Estilizado */
details {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: 0.3s;
}
details[open] {
    background: rgba(255,255,255,0.05);
    border-color: var(--aqua-accent);
}
summary {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--aqua-accent);
    transition: 0.3s;
}
details[open] summary::after { transform: rotate(45deg); }

/* --- SHOWCASE DE VÍDEO & MOBILE FRAME --- */
.video-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.video-sticky-wrapper {
    position: sticky;
    top: 120px;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    border: 12px solid #1a1a1a;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

@media (max-width: 992px) {
    .video-showcase-grid { grid-template-columns: 1fr; gap: 3rem; }
    .video-sticky-wrapper { position: relative; top: 0; }
    .hero-identity h1 { font-size: 2.8rem !important; }
}

/* --- PLANOS & PRECIFICAÇÃO --- */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem 2rem;
    align-items: stretch;
    padding-bottom: 6rem;
}

.plan-card {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.plan-card.featured .glass-card {
    border-color: var(--aqua-accent);
    background: rgba(49, 210, 202, 0.08);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    transform: scale(1.05);
}

.plan-card h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--aqua-accent);
    margin: 1.5rem 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .video-showcase-grid { grid-template-columns: 1fr; gap: 3rem; }
    .video-sticky-wrapper { position: relative; top: 0; }
    .hero-identity h1 { font-size: 2.8rem !important; }
    .plan-card.featured .glass-card { transform: scale(1); }
}

/* --- MOBILE RESPONSIVE (Global) --- */
@media (max-width: 768px) {
    :root {
        --section-pad: 40px 0;
    }

    .section-pad { padding: var(--section-pad); }
    
    /* Typography */
    h1 { font-size: 2.2rem !important; line-height: 1.2 !important; }
    h2 { font-size: 1.8rem !important; }
    h3 { font-size: 1.5rem !important; }
    p { font-size: 1rem !important; }

    /* Layout */
    .container { width: 92%; }
    .header-container { width: 95%; }
    .footer-container { flex-direction: column !important; gap: 40px; text-align: center; }
    .footer-col { width: 100%; }

    /* Header & Nav */
    .main-nav { display: none; }
    .mobile-menu-btn { display: flex !important; }
    .logo img { width: 140px !important; }

    /* Grid Resets */
    .grid-2, .grid-3, .grid-4, .plan-grid,
    [style*="grid-template-columns: 1fr 1fr"], 
    [style*="grid-template-columns: repeat(auto-fit"] { 
        grid-template-columns: 1fr !important; 
        gap: 2rem !important;
    }

    /* Buttons */
    .btn { width: 100%; padding: 16px 24px; font-size: 1rem !important; }
    [style*="display: flex; gap: 1.5rem"] { 
        flex-direction: column; 
        width: 100%;
        gap: 1rem !important;
    }

    /* Hero Section Specifics */
    .hero-identity { min-height: auto !important; padding: 60px 0 !important; }
    .hero-identity [style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 3rem !important; }
    .contact-info { padding-top: 0 !important; text-align: center; }
    .info-box { border-left: none !important; border-top: 4px solid var(--aqua-accent); border-radius: 0 0 12px 12px !important; }

    /* Images */
    img[style*="max-height: 300px"] { max-height: 200px !important; margin-top: 2rem; }

    /* Forms */
    .form-card { padding: 2rem 1.5rem !important; }
    .form-group [style*="grid-template-columns: 1fr 1fr"] { 
        grid-template-columns: 1fr !important; 
        gap: 1rem !important;
    }
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-nav-overlay {
    position: fixed; 
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 44, 48, 0.98); /* Fundo sólido para cobrir o site */
    z-index: 9999; /* Garantir que fique acima de tudo */
    display: none !important; /* Escondido por padrão */
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    gap: 2rem;
    backdrop-filter: blur(10px);
}

.mobile-nav-overlay.active { 
    display: flex !important; 
}

.mobile-nav-overlay a { color: #fff; font-size: 1.5rem; font-weight: 700; }
.close-menu { position: absolute; top: 30px; right: 30px; color: var(--aqua-accent); font-size: 3rem; cursor: pointer; }

/* Botão Flutuante WhatsApp (Melhorado) */
.whatsapp-float {
    position: fixed; 
    width: 60px; 
    height: 60px; 
    bottom: 30px; 
    right: 30px;
    background-color: #25d366; 
    color: #FFF; 
    border-radius: 50px; 
    text-align: center;
    font-size: 30px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.3); 
    z-index: 999;
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover { background-color: #128C7E; transform: scale(1.1) translateY(-5px); }

/* Esconde o WhatsApp flutuante em telas muito grandes se preferir, ou mantém pequeno */
@media (min-width: 1400px) {
    .whatsapp-float { right: 50px; bottom: 50px; }
}



