
/* Prevenção Absoluta de Bug Horizontal */
html, body {
    overflow-x: hidden;
    width: 100%;
}
/* ======= Base Variables & Reset ======= */
:root {
    --bg-dark: #020617; /* Slate 950 - Muito Dark */
    --bg-alt: #0f172a;  /* Slate 900 - Azul Escuro dos Serviços */
    --bg-card: rgba(255, 255, 255, 0.01);
    --border-glass: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
    --text-muted: #94a3b8; /* Slate 400 */
    --accent: #00cec9; /* Ciano/Azul super brilhante igual ao logo */
    --accent-hover: #00b3b0;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-brand: 'Outfit', sans-serif;
    --glow-cyan: rgba(0, 206, 201, 0.2);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-dark {
    background-color: transparent; /* Alterado para exibir o bg fixo */
}

.bg-alt {
    background-color: rgba(15, 23, 42, 0.4); /* Leve overlay para diferenciar seções */
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

/* Background Dinâmico Estilo Prativo */
.prativo-background {
    position: fixed;
    inset: 0;
    z-index: -1; /* Corrigido para -1 para não cobrir o site */
    pointer-events: none;
    background-color: #0a0a0f; /* Fundo base escuro */
}

.bg-glow {
    position: absolute;
    width: 50vw;
    height: 50vh;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: pulseGlow 8s infinite alternate;
}

.top-glow {
    top: -20%;
    left: -10%;
    background-color: #00cec9;
}

.bottom-glow {
    bottom: -20%;
    right: -10%;
    background-color: #0066ff;
    animation-delay: 2s;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAwIDEwIEwgNDAgMTAgTSAxMCAwIEwgMTAgNDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+");
    opacity: 0.2;
}

.bg-particle {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.1; }
    100% { transform: scale(1.2); opacity: 0.2; }
}

@keyframes floatParticle {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, -50px); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ======= Typography & Buttons ======= */
.highlight,
.brand-name,
.btn-orcamento,
.feature-item h4,
.privacy-link,
.email-text {
    background: linear-gradient(90deg, #00cec9, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: #000;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px var(--glow-cyan);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 206, 201, 0.3);
}

.btn-primary-small {
    background-color: var(--accent);
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-primary-small:hover {
    background-color: var(--accent-hover);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--glow-cyan);
}

.w-100 {
    width: 100%;
}

/* ======= Header ======= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.prativo-header-hidden {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
}


.prativo-header-visible {
    background: rgba(11, 11, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
}
.prativo-header-visible .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.brand-name {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn-primary-small) {
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--text-main);
}

/* ======= Hero Section ======= */
.hero {
    padding: 120px 0 100px; /* Reduzi o padding top para caber o SVG */
    text-align: center;
    position: relative;
    overflow: hidden;
}



.hero-network-container {
    max-width: 500px;
    margin: 0 auto 20px auto;
    animation: float 6s ease-in-out infinite;
}

.hero-network {
    width: 100%;
    height: auto;
}

.network-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 3s linear forwards;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

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

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 56px;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

/* Efeito Typing do Cursor */
.typing-effect::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 0.9em;
    background: linear-gradient(180deg, #00cec9, #0066ff);
    vertical-align: middle;
    animation: blinkCursor 0.8s infinite;
    margin-left: 4px;
    opacity: 0.8;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 56px;
}

/* ======= General Section Styles ======= */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ======= Services Grid (Image 1 Style) ======= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(20px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px var(--glow-cyan);
    border-color: rgba(0, 206, 201, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.icon-box {
    background: linear-gradient(90deg, #00cec9, #0066ff); /* Fundo cromado da marca */
    width: 44px; /* Um pouco menor */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    border: none;
}

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

.btn-orcamento {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-orcamento:hover {
    text-decoration: underline;
}

.single-line-title {
    font-size: 1.15rem; /* Fonte menor para caber na mesma linha */
    white-space: nowrap; /* Impede quebra de linha */
    overflow: hidden;
    text-overflow: ellipsis; 
    margin-bottom: 24px;
    font-weight: 700;
}

.feature-item {
    margin-bottom: 12px;
}

.feature-item h4 {
    color: var(--accent);
    font-size: 0.9rem; /* Ainda menor */
    font-weight: 700;
    margin-bottom: 4px; /* Bem mais colado */
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item h4 svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.8rem; /* Letra menor igual a foto */
    line-height: 1.4; /* Mais compacto */
    opacity: 0.7; /* Mais suave */
}

/* ======= Por que / Features Section ======= */
.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .features-split {
        grid-template-columns: 1fr;
    }
    .hidden-mobile {
        display: none;
    }
    
}

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

.split-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.split-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.split-item .split-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(90deg, #00cec9, #0066ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.split-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.split-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gráfico / Code Card */
.features-graphic {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 100%;
    aspect-ratio: 1;
    animation: spinOrbit 60s linear infinite;
}

.orbit-2 {
    width: 75%;
    aspect-ratio: 1;
    animation: spinOrbitRev 40s linear infinite reverse;
}

@keyframes spinOrbit {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinOrbitRev {
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

.code-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
    overflow: hidden;
}

.code-card-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00cec9, #0066ff);
}

.code-block {
    font-family: monospace;
    font-size: 0.9rem;
    color: #a0aec0;
    line-height: 1.6;
    overflow-x: auto;
    text-align: left;
}

.code-keyword { color: #c678dd; }
.code-variable { color: #e5c07b; }
.code-property { color: #e06c75; }
.code-string { color: #98c379; }
.code-function { color: #61afef; }
.code-method { color: #61afef; }
.code-arg { color: #d19a66; }

/* ======= About Section ======= */
.about {
    /* Fundo transparente para mostrar o background global */
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    text-align: center;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* ======= Commitment Grid (Imagem 1) ======= */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.commit-card {
    background: linear-gradient(145deg, #1e3a8a, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.commit-icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(90deg, #00cec9, #0066ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.commit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
}

.commit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ======= Doubt Card Wide (Imagem 2) ======= */
.mt-16 {
    margin-top: 64px;
}

.doubt-card-wide {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 206, 201, 0.15);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.doubt-header-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00cec9, #0066ff);
}

.doubt-card-wide h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.doubt-card-wide p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 32px;
}

.doubt-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-whatsapp-glow {
    background: linear-gradient(90deg, #6366f1, #0066ff);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
}

.btn-whatsapp-glow:hover {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
}

.btn-email-outline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-email-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* ======= Contact Section ======= */
.contact-container-single {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-card p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

/* ======= Footer (Image 2 Style) ======= */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left .logo-container {
    margin-bottom: 16px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-right {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-link {
    color: var(--accent);
    margin-top: 8px;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* ======= Responsive ======= */
@media (max-width: 992px) {
    .services-grid, .why-grid, .commitment-grid, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-right {
        text-align: left;
    }
}



/* ========================================= */
/* PRATIVO MIGRATION STYLES                  */
/* ========================================= */

.prativo-font {
    font-family: 'Inter', sans-serif;
}

/* Utilitários de grid */
.prativo-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 992px) {
    .prativo-grid-2 { grid-template-columns: 1fr; }
}

.prativo-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) {
    .prativo-grid-3 { grid-template-columns: 1fr; }
}

/* Texto Gradiente */
.prativo-gradient-text {
    background: linear-gradient(to right, #00cec9, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Ícones do lado esquerdo (Por que a OdontoBot) */
.prativo-icon-box {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
    background: rgba(0, 206, 201, 0.1); /* roxo clarinho */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00cec9;
}

/* Glass Card */
.prativo-glass-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

.prativo-doubt-card {
    position: relative;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

/* Botões */
.prativo-btn-gradient {
    background: linear-gradient(to right, #00cec9, #0066ff);
    color: white;
    transition: opacity 0.3s ease;
}
.prativo-btn-gradient:hover {
    opacity: 0.9;
}

.prativo-btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}
.prativo-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Inputs do Formulário */
.prativo-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.prativo-input:focus {
    outline: none;
    border-color: #00cec9;
}

/* Animações */
@keyframes spinSlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
.animate-spin-slow {
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlowReverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}
.animate-spin-slow-reverse {
    animation: spinSlowReverse 15s linear infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 206, 201, 0.5); }
    50% { box-shadow: 0 0 30px rgba(0, 206, 201, 0.8); }
}
.animate-pulse-glow {
    animation: pulseGlow 2s infinite;
}

/* Resets rápidos para evitar conflito com os globais do arquivo */
section.features, section.about, section.commitment, section.contact {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

@media (min-width: 768px) { 
    .md-text-center { text-align: center !important; } 
    .md-flex-row { flex-direction: row !important; }
}
@media (min-width: 1024px) {
    .desktop-graphic { display: flex !important; align-items: center; justify-content: center; }
}

.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.text-gray-400 { color: #9ca3af; }
.text-gray-300 { color: #d1d5db; }
.mb-16 { margin-bottom: 4rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

/* Header behavior movido para o topo do CSS */


/* --- NOVOS EFEITOS PRATIVO --- */
@keyframes pulseGlowPrativo {
    0% { box-shadow: 0 0 0 0 rgba(0, 206, 201, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 206, 201, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 206, 201, 0); }
}

.prativo-btn-gradient:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 206, 201, 0.5) !important;
    filter: brightness(1.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prativo-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: scale(1.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prativo-btn-gradient {
    animation: pulseGlowPrativo 2s infinite;
}

/* ======= Scroll Reveal ======= */
.prativo-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

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

/* ======= Header Nav Hover Effects ======= */
.header-nav-link:hover {
    color: #00cec9 !important;
    text-shadow: 0 0 10px rgba(0, 206, 201, 0.4);
}

.header-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* ======= Select Options ======= */
select.prativo-input option {
    background-color: #020617;
    color: #ffffff;
}
select.prativo-input option:disabled {
    color: #94a3b8;
}


/* ======= Menu Mobile (Prativo) e Zero Lag ======= */

/* Esconde no Desktop para garantir ZERO bugs visuais */
.mobile-menu-btn {
    display: none !important;
}
.mobile-close-btn {
    display: none !important;
}
.mobile-menu-overlay {
    display: none !important;
}

@media (max-width: 992px) {
    /* Trocar nav-links pelo botão Hamburger */
    .mobile-menu-btn {
        display: block !important;
        z-index: 100;
        background: transparent;
        border: none;
        cursor: pointer;
    }
    .nav-links {
        display: none !important;
    }

    /* Estilização do Overlay do Menu Mobile */
    .mobile-menu-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto; /* Para não tampar a tela inteira */
        background-color: #0b0f19;
        z-index: 105 !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.8);
        
        /* Estado inicial invisível e sem interceptar cliques */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.active {
        /* Estado visível */
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-close-btn {
        display: flex !important;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    /* ELIMINAÇÃO TOTAL E ABSOLUTA DE LAG NO CELULAR */
    .bg-glow, .bg-particle {
        display: none !important;
        animation: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
    }
    
    .prativo-header {
        background-color: rgba(2, 6, 23, 0.98) !important;
    }
    
    .feature-item, .benefit-card, .prativo-btn-outline {
        background-color: rgba(15, 23, 42, 0.98) !important;
    }
}

@media (max-width: 992px) {
    
}

@media (max-width: 992px) {
    .text-left {
        text-align: left !important;
    }
    
    .hero-actions {
        flex-direction: column !important;
        width: 100% !important;
        gap: 1rem !important;
    }
    
    .hero-actions a {
        width: 100% !important;
        text-align: center !important;
    }
    
    .section-header.text-left p {
        text-align: left !important;
    }
}

/* Fixed Grid Classes */
.prativo-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.prativo-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .prativo-grid-2 {
        grid-template-columns: 1fr !important;
    }
    .prativo-grid-3 {
        grid-template-columns: 1fr !important;
    }
    .desktop-graphic-fixed {
        display: none !important;
    }
}

/* Fixed Form Grid */
.prativo-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
    .prativo-form-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2.5rem !important;
    }
    .footer-left.mobile-center {
        align-items: center !important;
    }
    .footer-right.mobile-center {
        text-align: center !important;
        align-items: center !important;
    }
    .email-container {
        justify-content: center !important;
    }
}

@media (max-width: 992px) {
    section#diferenciais {
        padding-top: 1.5rem !important;
    }
}
