:root {
    --primary: #003298;
    --primary-foreground: #ffffff;
    --secondary: #f8fafc;
    --secondary-foreground: #1e293b;
    --accent: #DB1E26;
    --accent-foreground: #ffffff;
    --background: #ffffff;
    --foreground: #1e293b;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --card: #ffffff;
    --card-foreground: #1e293b;
    --radius: 0.75rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Mulish", sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    scroll-behavior: smooth;
}

/* --- ESTILOS DA TARJA DE ALERTA (NOVO) --- */
.top-alert-bar {
    background-color: var(--accent); /* Cor Vermelha forte: #DB1E26 */
    color: var(--accent-foreground); /* Texto Branco */
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.875rem; /* 14px */
    font-weight: 700;
    text-transform: uppercase;
    position: relative; /* Precisa ser relative para não interferir na posição do header */
    z-index: 1001; /* Coloca acima de tudo, exceto o modal */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header Styles */
.header {
    top: 0px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 5px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    padding: 0 1rem;
}

.logo {
}

.nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav a {
    text-decoration: none;
    color: var(--muted-foreground);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--foreground);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: #22C55E;
    transform: translateY(-2px);
}

/* Estilo para o contêiner do vídeo */
.video-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem auto; /* Centraliza e adiciona margem */
}

.video-container video {
    max-width: 350px; /* Limita o tamanho máximo no PC */
    width: 100%; /* Garante que ocupe 100% do contêiner em telas menores */
    height: auto;
    border-radius: var(--radius);
}

/* Mobile Menu styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--foreground);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 4rem;
        left: 0;
        width: 100%;
        background: var(--background);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        transition: transform 0.3s ease-in-out;
        transform: translateY(-100%);
    }

    .nav.open {
        display: flex;
        transform: translateY(0);
    }

    .nav a {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--muted);
        text-align: center;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #002080 100%);
    color: var(--primary-foreground);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero .highlight {
    color: #FDE047;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Estilos dos botões - Aprimorados */
.btn-primary {
    background-color: var(--accent);
    color: var(--accent-foreground);
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #C41E3A;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    border: 2px solid white;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Styles */
.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: rgba(0, 50, 152, 0.1);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card p {
    color: var(--muted-foreground);
}

/* Background Colors */
.bg-secondary {
    background: var(--secondary);
}

.bg-muted {
    background: var(--muted);
}

.bg-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.bg-accent {
    background: var(--accent);
    color: var(--accent-foreground);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, #B91C1C 100%);
    color: var(--accent-foreground);
}

/* Galeria - Removida por não ser usada mais */
/* ... */

/* Comparação */
.comparison {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .comparison {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-negative {
    border: 2px solid #FCA5A5;
}

.comparison-positive {
    border: 2px solid #86EFAC;
}

.comparison h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-negative h3 {
    color: var(--accent);
}

.comparison-positive h3 {
    color: #16A34A;
}

.comparison ul {
    list-style: none;
    space: 1rem;
}

.comparison li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.comparison-negative .fa-times {
    color: var(--accent);
}

.comparison-positive .fa-check {
    color: #16A34A;
}

/* Benefits Grid - Movida/Reaproveitada */
.benefits-grid {
    background: linear-gradient(135deg, var(--primary) 0%, #002080 100%);
    color: var(--primary-foreground);
    padding: 3rem;
    border-radius: var(--radius);
    margin-top: 4rem;
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-item {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--card-foreground);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--muted);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    border-top: 1px solid var(--border);
    display: none;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.active {
    transform: rotate(180deg);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #002080 100%);
    color: var(--primary-foreground);
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .cta-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cta-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.cta-feature i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

/* Footer */
.footer {
    background: var(--foreground);
    color: var(--background);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        text-align: left;
    }
}

.footer h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-foreground);
}

.footer p, .footer a {
    font-size: 1rem;
    color: #9CA3AF;
    margin-bottom: 0.5rem;
    text-decoration: none;
    display: block;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-logo-container {
    margin-bottom: 1.5rem;
}

.footer-copyright {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9CA3AF;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    background: #25D366;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background: #22C55E;
    transform: scale(1.1);
}

.floating-whatsapp i {
    font-size: 1.5rem;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

/* Responsive utilities */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero {
        padding: 5rem 0 4rem;
    }
}

/* --- ESTILOS DO MODAL / POP-UP (NOVO) --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Inicia oculto */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted-foreground);
    line-height: 1;
}

.modal-close:hover {
    color: var(--foreground);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.whatsapp-form-modal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch; /* Ocupa a largura total */
}

.whatsapp-form-modal input[type="tel"] {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

.whatsapp-form-modal .btn-primary {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
/* FIM ESTILOS DO MODAL */