/* RESET E VARIÁVEIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1565C0;
    --primary-dark: #0D47A1;
    --secondary-color: #FF9800;
    --success-color: #2E7D32;
    --danger-color: #C62828;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

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

/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 3px 3px 15px rgba(0,0,0,0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* HEADER */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 18px;
    font-weight: bold;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* BOTÕES */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-destaque {
    background: linear-gradient(135deg, var(--secondary-color), #F57C00);
    animation: btnShine 2s infinite;
}

@keyframes btnShine {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(255, 152, 0, 0.6); }
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* PLANOS */
.planos-section {
    background: var(--bg-white);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.plano-card {
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.plano-destaque {
    border-color: var(--secondary-color);
    border-width: 4px;
    transform: scale(1.05);
}

.plano-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.badge-destaque {
    background: var(--secondary-color);
}

.plano-icon {
    font-size: 48px;
    margin: 20px 0;
}

.plano-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plano-price {
    margin: 30px 0;
}

.price-value {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
}

.price-period {
    font-size: 18px;
    color: var(--text-light);
}

.plano-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.plano-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plano-features li:last-child {
    border-bottom: none;
}

.plano-features i {
    color: var(--success-color);
    font-size: 18px;
}

.plano-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* SELETOR DE DEPENDENTES */
.dependentes-selector {
    background: #E3F2FD;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
}

.dependentes-selector label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.info-tooltip {
    cursor: help;
    margin-left: 5px;
}

.selector-control {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.btn-selector {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-selector:hover {
    background: var(--primary-color);
    color: white;
}

#numDependentes {
    width: 80px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: white;
}

.dependentes-info {
    text-align: center;
    color: var(--text-dark);
    font-size: 16px;
}

.valor-adicional {
    color: var(--secondary-color);
    font-weight: bold;
}

.valor-total-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
}

.valor-total-label {
    font-size: 16px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.valor-total-value {
    font-size: 32px;
    font-weight: bold;
}

/* FORMULÁRIO ESPECIAL */
.formulario-especial {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
}

.formulario-content h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

.formulario-content > p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* BENEFÍCIOS */
.beneficios-section {
    background: var(--bg-light);
}

.alerta-importante {
    background: #FFF3CD;
    border: 3px solid #856404;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
}

.alerta-importante h3 {
    color: #856404;
    font-size: 24px;
    margin-bottom: 15px;
}

.alerta-importante p {
    font-size: 18px;
    color: #856404;
}

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

.beneficio-card {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.beneficio-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.beneficio-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.beneficio-card ul {
    list-style: none;
    text-align: left;
}

.beneficio-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.beneficio-card ul li:last-child {
    border-bottom: none;
}

.cobertura-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.cobertura-col {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
}

.cobertura-col h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

/* TABELAS */
.tabelas-section {
    background: var(--bg-white);
}

.tabela-wrapper {
    margin-bottom: 60px;
}

.tabela-titulo {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
}

.tabela-precos {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.tabela-precos thead {
    background: var(--primary-color);
    color: white;
}

.tabela-precos th {
    padding: 20px;
    text-align: left;
    font-size: 16px;
}

.tabela-precos td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
}

.tabela-precos tbody tr:nth-child(even) {
    background: #E3F2FD;
}

.tabela-precos tbody tr:hover {
    background: #BBDEFB;
}

.row-destaque {
    background: #FFF9C4 !important;
}

.valor-incluso {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
}

.tabela-nota {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.tabela-contato {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: bold;
}

.aviso-valores {
    background: #FFF3CD;
    border-left: 5px solid #856404;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.aviso-valores i {
    font-size: 24px;
    color: #856404;
}

.aviso-valores p {
    color: #856404;
    margin: 0;
}

/* UNIDADES */
.unidades-section {
    background: var(--bg-light);
}

.unidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.unidade-card {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.unidade-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.unidade-numero {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.unidade-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin: 20px 0 15px 0;
}

.unidade-card p {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.unidade-tel {
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s;
}

.unidade-tel:hover {
    color: var(--primary-dark);
}

.horarios-box {
    background: #E3F2FD;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.horarios-box h4 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.horarios-box p {
    font-size: 18px;
    color: var(--text-dark);
}

/* FAQ */
.faq-section {
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.faq-question h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 12px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* CONTATO */
.contato-section {
    background: var(--bg-light);
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contato-card {
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.contato-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contato-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contato-card h3 {
    color: var(--text-dark);
    font-size: 20px;
    margin-bottom: 15px;
}

.contato-link {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.contato-link:hover {
    color: var(--primary-dark);
}

/* FOOTER */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-disclaimer {
    font-size: 12px;
    opacity: 0.7;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .plano-destaque {
        transform: scale(1);
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

/* SCROLL SUAVE */
html {
    scroll-behavior: smooth;
}

/* ACESSIBILIDADE */
:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* UTILITÁRIOS */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}
