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

:root {
    --primary: #7A3F91;
    --secondary:#65B1AC;
    --accent: #ff6b6b;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dental: linear-gradient(135deg, #65B1AC 0%, #65B1AC 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

.container-header{
     margin: 0 auto;
    padding: 0 10px; 

}

header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 1rem 0;
    height: 70px;
    margin-top: 250px;
}

.logo {
    background: var(--gradient-dental);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    justify-content: left;
}

p {
  text-align: justify;
}

.logo img{
    width: 250px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.2em;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-dental);
    transition: width 0.3s ease;
}

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

.mobile-menu {
    display: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
}

.cta-button {
    background: var(--gradient-dental);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-escondido {
    background: light;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

/* Hero Section */
.hero {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 50%),
        url(assets/img/banner.png);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx=".5" cy=".5" r=".5"><stop offset="0%" stop-color="%23ffffff" stop-opacity=".1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dental-icon {
    width: 400px;
    height: 400px;
    background: var(--gradient-dental);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.dental-icon i {
    font-size: 8rem;
    color: white;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color:var(--primary);
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Vantagens Section */
.vantagens {
    background: var(--light);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vantagem-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vantagem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-dental);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.vantagem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vantagem-card:hover::before {
    transform: translateX(0);
}

.vantagem-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.vantagem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.vantagem-card p {
    color: #666;
    line-height: 1.6;
}

/* Público Alvo Section */
.publico-alvo {
    background: white;
}

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

.publico-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 4px solid transparent;
}

.publico-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.publico-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.publico-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.publico-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Planos Section */
.planos {
    background: va(--primary);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plano-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plano-card.destaque {
    transform: scale(1.05);
    border: 3px solid var(--primary);
}

.plano-card.destaque::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.plano-card.destaque:hover {
    transform: translateY(-5px) scale(1.05);
}

.plano-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.plano-nome {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.plano-preco {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.plano-periodo {
    color: #666;
    font-size: 1rem;
}

.plano-beneficios {
    list-style: none;
    margin-bottom: 2rem;
}

.plano-beneficios li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.plano-beneficios li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.plano-botao {
    width: 100%;
    background: var(--gradient-dental);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plano-botao a{
    width: 100%;
    background: var(--gradient-dental);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}


.plano-botao:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

/* FAQ Section */
.faq {
    background: white;
}

/* Rede Credenciada Section */
.rede-credenciada {
    background: var(--light);
}

.mapa-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.filtros-mapa {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filtro-btn {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.filtro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

#mapa {
    height: 500px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-painel {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 1rem;
    display: none;
}

.info-painel.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.clinica-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.clinica-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-dental);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.clinica-details h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.clinica-details p {
    color: #666;
    margin-bottom: 0.25rem;
}

.clinica-especialidades {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.especialidade-tag {
    background: var(--light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.stats-rede {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-numero {
    font-size: 2rem;
    font-weight: bold;
    background: var(--gradient-dental);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: var(--light);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question.active {
    background: var(--secondary);
    color: white;
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

.footer {
  background-color: #f5f5f5; /* branco levemente mais escuro */
  padding: 25px 0 20px;
  text-align: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  position: relative;
  text-align: center;
  display: flex;
/* divisória superior */
}



.footer .ans-logo{
    margin: 10px;
}


.footer .ans-logo img {
    max-height: 30px;
}

.footer p {
  margin: 0;
  color: #6a1b9a; /* roxo */
  font-size: 14px;
  font-weight: 500;
}

.footer .social {
  margin-top: 10px;
}

.footer .social a {
  color: #6a1b9a;
  margin: 0 12px;
  font-size: 20px;
  transition: all 0.3s ease;
  display: inline-flex;
  text-decoration: none;
}

.footer .social a::after{
    content:"";
}

.footer .social a:hover {
  color: #65B1AC;
  transform: scale(1.2);
}

/* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-btn svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .whatsapp-btn::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: #25d366;
            animation: pulse 2s infinite;
            z-index: -1;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            70% {
                transform: scale(1.4);
                opacity: 0;
            }
            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }



/* Mobile Responsiveness */
@media (max-width: 1350px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .cta-button-escondido {
    display: none !important;
  }

    /* WhatsApp Button Mobile */
            .whatsapp-btn {
                width: 55px;
                height: 55px;
                bottom: 15px;
                right: 15px;
            }
            
            .whatsapp-btn svg {
                width: 28px;
                height: 28px;
            }

    .nav-links.active {
        left: 0;
        margin-left: auto;
    }

    .mobile-menu {
        display: block;
    }

    .cta-button {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .dental-icon {
        width: 300px;
        height: 300px;
    }

    .dental-icon i {
        font-size: 6rem;
    }

    .plano-card.destaque {
        transform: none;
    }

    .plano-card.destaque:hover {
        transform: translateY(-5px);
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
  .planos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .planos-grid {
    grid-template-columns: 1fr;
  }
}

.tabela-ans {
    max-width: 800px;
    margin: 20px auto;
    padding: 1px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.tabela-ans h2 {
    text-align: center;
    margin-bottom: 1px;
    color: #333;
}

.tabela-ans table {
    width: 100%;
    border-collapse: collapse;
}

.tabela-ans th,
.tabela-ans td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.tabela-ans th {
    background-color: #f0f0f0;
    font-weight: bold;
    width: 40%;
}

.texto-centralizado {
    text-align: center;
    font-size: 2.1rem;         /* Ajuste conforme necessário */
    line-height: 1.6;        /* Melhora a legibilidade */
    color: #333;             /* Cor mais suave para leitura */
    max-width: 800px;        /* Limita a largura */
    margin: 0 auto 20px;     /* Centraliza horizontalmente e adiciona espaço inferior */
    padding: 0 15px;         /* Espaço interno lateral para respiro */
}

