* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

/* CONTAINER GERAL */
.container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =====================
   HEADER (index.html)
   ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #f5f2ea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 80px;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 65px;
    background: rgba(245, 242, 234, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled .logo img {
    height: 38px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 45px;
    display: block;
}

/* MENU DESKTOP */
.menu ul {
    display: flex;
    align-items: center;
    gap: 120px;
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: #5b5b5b;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.menu a:hover {
    color: #0056ff;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: #0056ff;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 180px;
    transition: background 0.1s, border-radius 0.2s;
    margin-right: 70px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 180px;
    background: #0056ff;
    border-radius: 0 0 12px 12px;
    list-style: none;
    display: none;
    padding: 0 0 4px 0;
    margin: 0;
    z-index: 10;
}

.dropdown:hover .dropdown-btn {
    border-radius: 12px 12px 0 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.dropdown-menu li::before {
    content: none !important;
}

.dropdown-menu li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 6px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.2s;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    opacity: 0.8;
    background: none;
}

.btn-dentista {
    background: #24d8e6;
    color: #0056ff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 40px;
    border-radius: 999px;
    margin-right: 19px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.btn-dentista:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 216, 230, 0.3);
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}

/* =====================
   HERO (index.html)
   ===================== */
.hero {
    width: 100%;
    min-height: 773px;
    padding-top: 160px;
    padding-bottom: 80px;
    background-image: url("../images/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f3e9dc;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 50%, rgba(41, 50, 140, 0.95) 0%, rgba(77, 84, 175, 0.7) 20%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

.hero-content h1 {
    font-size: 55px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-content ul {
    list-style: none;
    padding: 0;
    max-width: 340px;
    margin-top: 30px;
}

.hero-content li {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    color: white;
}

/* ==========================================================================
   DENTISTAS (index.html)
   ========================================================================== */
#dentistas {
    width: 100%;
    background-color: #e7ebf4;
    padding: 80px 0;
    font-family: 'Quicksand', sans-serif;
}

.container-dentistas {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.dentistas-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.dentistas-col {
    flex: 1;
    width: 50%;
    min-width: 0;
}

.figma-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 60px;
    display: block;
}

.main-title {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 50px;
    color: #0841b2;
    margin: 0;
}

.figma-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.figma-list li {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    padding: 14px 0 14px 35px;
    border-bottom: 1px solid #00e5ff;
    position: relative;
    color: #0841b2;
    word-break: break-word;
}

.figma-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 18px;
    font-weight: 700;
    color: #00e5ff;
    border: 2px solid #00e5ff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.figma-list .figma-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.figma-list .figma-item-text p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(8, 65, 178, 0.8);
    margin: 0;
}

.btn-dentista-secao {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-dentista-secao:hover {
    background-color: white;
    color: #023eba;
}

/* ==========================================================================
   WRAPPER CONTATO + FOOTER (index.html)
   ========================================================================== */
.contato-footer-wrapper {
    background: radial-gradient(circle at center top, #004adc 0%, #01174c 100%);
}

/* ==========================================================================
   FOOTER UNIFICADO (index.html)
   ========================================================================== */
.footer-unificado {
    width: 100%;
    padding: 60px 20px 30px;
    background: transparent;
    font-family: 'Quicksand', sans-serif;
}

.footer-unificado-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-titulo {
    font-family: 'Archivo', sans-serif;
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 40px;
}

.footer-linha-topo {
    display: none;
}

.footer-corpo {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.footer-esquerda {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 40px;
}

.footer-contato-bloco h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 14px;
}

.footer-contato-bloco p {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-style: normal;
}

.footer-contato-bloco .icon-contato {
    font-size: 15px;
    color: #ffffff;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contatos-grupo {
    gap: 60px !important;
}

.footer-brand-bloco {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-left: 250px;
}

.footer-logo-unif {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-badges-unif {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-divisor-vertical {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    align-self: stretch;
    flex-shrink: 0;
    margin: 0 60px;
}

/* COLUNA DIREITA */
.footer-direita {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #c8cdfc;
    margin: 0 0 18px 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0 20px 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.6;
    font-weight: 500;
}

.footer-bottom .company-details {
    color: #94a3b8;
    margin: 0;
}

.badge-ans-num {
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #444;
    letter-spacing: 0.5px;
}

.badge-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* Ícone contato genérico */
.icon-contato {
    color: #ffffff;
    font-size: 20px;
    margin-right: 12px;
    width: 24px;
    flex-shrink: 0;
    text-align: center;
    display: inline-block;
}

/* ANIMAÇÕES (index.html) */
.animar-subir {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.animar-subir.em-cena {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVIDADE MOBILE (index.html)
   ========================================================================== */
@media (max-width: 768px) {

    .header { height: 65px; }

    .menu, .header-actions { display: none; }

    .menu-toggle { display: flex; }

    .mobile-nav {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        background: #f5f2ea;
        border-top: 1px solid #e5e5e5;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        z-index: 999;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .mobile-nav.aberto { display: flex; }

    .mobile-nav a {
        text-decoration: none;
        color: #5b5b5b;
        font-size: 16px;
        font-weight: 600;
        padding: 8px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .mobile-nav .btn-dentista-mobile {
        background: #24d8e6;
        color: #0056ff;
        border-radius: 999px;
        padding: 12px 20px;
        text-align: center;
        border-bottom: none;
        font-weight: 700;
    }

    .mobile-nav .dropdown-mobile details summary {
        font-size: 16px;
        font-weight: 700;
        color: white;
        background: #0056ff;
        padding: 10px 16px;
        border-radius: 8px;
        cursor: pointer;
        list-style: none;
    }

    .mobile-nav .dropdown-mobile details a {
        display: block;
        background: #e8f0ff;
        color: #0056ff;
        padding: 10px 16px;
        font-size: 14px;
        border-bottom: 1px solid rgba(0,86,255,0.1);
    }

    .hero {
        min-height: 710px;
        padding-top: 80px;
        padding-bottom: 60px;
        background-position: 50%;
    }

    .hero::before {
        background: linear-gradient(to bottom, rgba(41, 50, 140, 0.85) 0%, rgba(41, 50, 140, 0.5) 50%, transparent 100%);
    }

    .hero-content h1 { font-size: 32px; }
    .hero-content ul { max-width: 100%; }
    .hero-content li { font-size: 15px; }

    .dentistas-row { flex-direction: column; gap: 30px; }
    .dentistas-col { width: 100%; }
    .main-title { font-size: 28px; padding-bottom: 24px; }
    .figma-list li { font-size: 16px; }
    .figma-img { margin: 0 auto; max-width: 100%; }

    /* Footer unificado mobile */
    .footer-corpo { flex-direction: column; gap: 40px; }

    .footer-esquerda {
        flex: unset;
        width: 100%;
        padding-right: 0;
        gap: 24px;
    }

    .footer-divisor-vertical { display: none; }
    .footer-direita { width: 100%; }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-titulo { font-size: 20px; }
}

@media (max-width: 400px) {
    .footer-links-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PÁGINA DE CAPTAÇÃO (credenciamento.html)
   ========================================================================== */
:root {
    --azul: #0841b2;
    --azul-escuro: #01174c;
    --azul-royal: #0056ff;
    --ciano: #00e5ff;
    --laranja: #f26419;
    --branco: #ffffff;
    --cinza-bg: #f5f5f5;
    --cinza-borda: #e5e5e5;
    --texto-escuro: #1a1a2e;
}

body.pagina-cred {
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
    color: var(--texto-escuro);
    background: var(--branco);
}

body.pagina-cred .section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

body.pagina-cred .section {
    width: 100%;
    padding: 80px 0;
}

/* HERO — captação */
.hero.pagina-cred {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px 0;
    background-image: url("../images/hero.png");
    background-position: 10% 40% !important;
    background-size: 145% !important;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.topbar {
    position: absolute;
    top: 20px;
    right: 50px;
    z-index: 10;
}

.topbar img { height: 39px; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom left, rgba(0,255,255,.45), transparent 40%);
    pointer-events: none;
}

.hero-left {
    width: 48%;
    z-index: 10;
}

.hero-left h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 58px;
    line-height: .95;
    font-weight: 900;
    color: #fff;
    margin-left: 70px;
    margin-bottom: 35px;
    letter-spacing: -2px;
}

.hero-card {
    position: relative;
    width: 430px;
    background: #f4f2f3;
    border-radius: 28px;
    padding: 28px;
    margin-left: 75px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    z-index: 1;
}

.hero-card::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -4px;
    width: 60%;
    height: 90px;
    border-top: 8px solid #f26522;
    border-left: 8px solid #f26522;
    border-radius: 32px 0 0 0;
}

.hero-card::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: -8px;
    width: 60%;
    height: 90px;
    border-left: 8px solid #0a3db9;
    border-bottom: 8px solid #0a3db9;
    border-radius: 0 0 0 32px;
}

.hero-card p {
    color: #2950b8;
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-card strong { font-weight: 800; }

.hero-btn {
    display: inline-block;
    background-color: var(--azul);
    color: var(--branco);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 999px;
    margin-top: 24px;
    margin-left: 80px;
    position: relative;
    z-index: 2;
    bottom: 50px;
    left: 31%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(8,65,178,0.4);
    transition: transform 0.2s, background 0.2s;
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    transform: translateX(-50%) translateY(-6px);
    background-color: #052d7d;
}

.hero-right {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-circle {
    position: absolute;
    width: 780px;
    height: 780px;
    border: 5px solid rgba(255,255,255,.95);
    border-radius: 50%;
    right: -140px;
    bottom: -180px;
    z-index: 1;
}

/* VANTAGENS */
.section-advantages {
    background: var(--branco);
    padding: 80px 0;
}

.header-content {
    text-align: center;
    margin-bottom: 50px;
}

.header-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.2;
}

.header-content .subtitle {
    font-size: 16px;
    color: #555;
    font-weight: 500;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.5;
}

.cards-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1132px;
    gap: 24px;
    margin: 0 auto;
}

.card {
    background: var(--branco);
    border-radius: 16px;
    border: 1px solid #00f6fe;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.20);
    padding: 28px 24px;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.icon-wrapper img {
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    display: block;
    object-fit: contain;
}

.main-card {
    width: 380px;
    min-width: 380px;
    height: 501px;
    flex: 1;
    padding: 33px 24px;
}

.main-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.main-card > p {
    color: #666;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 30px;
}

.benefit-list { list-style: none; padding: 0; }

.benefit-list li {
    font-size: 15px;
    color: #444;
    font-weight: 500;
    padding: 9px 0 9px 32px;
    border-bottom: 1px solid #eef2f7;
    position: relative;
    line-height: 1.4;
}

.benefit-list li:last-child { border-bottom: none; }

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--ciano);
    border: 2px solid var(--ciano);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
}

.mini-cards-wrapper {
    width: 692px;
    min-width: 692px;
    height: 520px;
    display: grid;
    grid-template-columns: repeat(2, 340px);
    gap: 5px 10px;
}

.mini-card {
    width: 340px !important;
    height: 240px !important;
    border-radius: 16px !important;
    padding: 20px;
}

.mini-card .icon-wrapper {
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    height: 50px;
}

.mini-card .icon-wrapper img { width: 50px !important; height: 50px !important; }
.mini-card .icon-wrapper img[src*="vetor"]    { width: 100px !important; height: 100px !important; }
.mini-card .icon-wrapper img[src*="computer"] { width: 38px !important;  height: 38px !important; }
.mini-card .icon-wrapper img[src*="concierge"]{ width: 43px !important;  height: 43px !important; }
.mini-card .icon-wrapper img[src*="hands"]    { width: 40px !important;  height: 40px !important; }

.mini-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-left: 30px;
    margin-bottom: 7px;
    line-height: 1.5;
    text-align: left;
}

.mini-card p {
    color: #666;
    font-size: 15px;
    margin-left: 30px;
    line-height: 1.45;
    text-align: left;
}

/* ETAPAS */
.section-steps {
    background-color: #023eba;
    color: var(--branco);
    padding: 80px 0;
}

.section-steps .header-content { margin-bottom: 48px; }

.section-steps .header-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--branco);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-steps .header-content .subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1132px;
    margin: 0 auto;
    width: 100%;
}

.step-card {
    background: #e4dbd6;
    border-radius: 24px;
    padding: 40px 30px;
    width: 360px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: #0b4cc4;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.step-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0b4cc4;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-card p {
    font-family: 'Comfortaa', sans-serif;
    font-size: 17px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 16px;
}

.btn-step {
    display: inline-block;
    background: #f66336;
    color: white;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 1.8px;
    margin-top: auto;
}

.btn-step:hover { background: #052d7d; }

/* BANNER VALOR */
.section-value-banner {
    padding: 60px 0;
    width: 100%;
    background-color: #023eba;
}

.section-value-banner .section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.value-card-content {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
    display: flex;
    flex-direction: column;
}

.value-banner-top {
    width: 100%;
    aspect-ratio: 20 / 3;
    min-height: 398px;
    background-image: url('../images/sorriso.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right 10%;
    display: flex;
    align-items: center;
    padding: 0 60px;
    box-sizing: border-box;
}

.value-text-box {
    position: relative;
    z-index: 4;
    max-width: 500px;
}

.value-text-box h2 {
    font-family: 'Poppins', 'Arial Black', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 190px 0;
    letter-spacing: -0.5px;
}

.card-benefits-bar {
    background-color: #00e5df;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 35px 40px;
    text-align: center;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #002878;
    font-family: 'Arial', sans-serif;
}

.benefit-item strong {
    font-family: 'League Spartan', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2px;
}

.benefit-item span {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 400;
    opacity: 0.85;
}

/* COMPARAÇÃO */
.section-compare {
    background: #023eba;
    padding: 80px 0;
}

.section-compare .header-content { margin-bottom: 40px; }

.section-compare .header-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px !important;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.2;
    white-space: nowrap;
}

.section-compare .header-content .subtitle {
    font-family: "Comfortaa", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 auto;
    white-space: normal;
    display: block;
}

.comparison-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    max-width: 750px;
    margin: 0 auto;
    width: 100%;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.comparison-table thead tr th {
    background: #0057ff;
    color: white;
    padding: 20px 16px;
    border: none;
    text-align: center;
    vertical-align: middle;
}

.col-criteria { width: 35%; }
.col-dental   { width: 32.5%; }
.col-others   { width: 32.5%; }

.col-dental .title-brand {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.col-dental .badge {
    display: inline-block;
    background: #3478ff;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 5px 80px;
    border-radius: 99px;
    white-space: nowrap;
}

.col-others {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.comparison-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid #edf1f7;
    font-size: 13px;
    vertical-align: middle;
}

.comparison-table tbody td.dental-val,
.comparison-table tbody td.others-val {
    display: table-cell;
    text-align: center;
    white-space: nowrap;
}

td.criteria { text-align: left; color: #1e2229; font-weight: 700; font-family: 'Poppins', sans-serif; }
td.dental-val { color: #1e2229; font-weight: 600; }
td.others-val { color: #8c93a0; font-weight: 500; }
.row-highlight td { background-color: #f4fbf7; }

.icon-check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    background: #e1f7ec; color: #10b981;
    border-radius: 50%; font-size: 11px; font-weight: bold;
    margin-right: 6px; vertical-align: middle;
}

.icon-cross {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px;
    background: #fce8ea; color: #f43f5e;
    border-radius: 50%; font-size: 10px; font-weight: bold;
    margin-right: 6px; vertical-align: middle;
}

.comparison-footer {
    background: #144aea;
    padding: 20px 24px;
    text-align: center;
}

.comparison-footer h3 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* FORMULÁRIO */
.progress-bar-track {
    width: 100%;
    max-width: 898px;
    margin: 25px auto 0 auto;
    height: 6px;
    background: #d0d8ee;
    border-radius: 99px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 6px;
    background: #052d7d;
    width: 0%;
    border-radius: 99px;
    transition: width 0.3s ease;
}

.section-form {
    background: #ffffff;
    padding: 90px 0;
}

.section-form .header-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.section-form .header-content .subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #514f4f;
    margin: 0 auto;
    white-space: normal;
    display: block;
}

.form-card {
    max-width: 920px;
    margin: 50px auto 0 auto;
    background: var(--branco);
    border-radius: 14px;
    padding: 40px 44px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.40);
    border: 1px solid var(--cinza-borda);
    overflow: hidden;
}

.form-group { margin-bottom: 3px; }

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 13px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #d0d8ee;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    color: #333;
    background: #f3f3f4;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(8,65,178,0.08);
}

.form-group input::placeholder { color: #a0a0a0; font-weight: 400; }

.form-row { display: flex; gap: 16px; }
.group-uf { flex: 1; }
.form-row .form-group:last-child { flex: 3; }

.radio-group { display: flex; gap: 12px; margin-top: 6px; }
.radio-option { flex: 1; cursor: pointer; }
.radio-option input[type="radio"] { display: none; }

.radio-option span {
    display: block;
    text-align: center;
    padding: 10px 16px;
    border: 1.5px solid #d0d8ee;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    background: #f3f2f6;
    transition: border-color 0.2s, background 0.2s;
}

.radio-option input[type="radio"]:checked + span {
    border-color: var(--azul);
    background: #eef2ff;
    color: var(--azul);
}

.field-error {
    display: block;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 4px;
    min-height: 16px;
}

.btn-next {
    width: 100%;
    background: var(--azul);
    color: white;
    border: none;
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.btn-next:hover { background: #052d7d; transform: translateY(-1px); }

/* CREDIBILIDADE */
.section-white { background: var(--branco); padding: 60px 0; }

.bottom-cards .header-content h2 {
    font-family: 'Arial', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #000000;
    margin: 0 0 24px 0;
    text-align: left;
    white-space: nowrap;
    width: max-content;
}

.credibility-grid { display: flex; flex-direction: column; gap: 24px; width: 100%; }

.cred-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 50px;
    border: 1px solid #e2e8f0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.cred-card:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }

.card-header-info { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }

.card-header-info .icon-box {
    width: 44px; height: 44px;
    background-color: #e1f7ec;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}

.card-header-info .icon-box i { color: #10b981; font-size: 18px; }

.cred-card .card-header-info h3 {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-size: 16px; font-weight: 700; color: #1e2229; margin: 0;
}

.card-contact-details { display: flex; flex-direction: column; gap: 10px; padding-left: 4px; }

.card-contact-details .number-contato,
.card-contact-details .email-contato { display: flex; align-items: center; gap: 10px; }

.card-contact-details .icon-small { font-size: 14px; color: #94a3b8; width: 16px; text-align: center; }

.card-contact-details .number-contato span {
    font-family: 'Comfortaa', sans-serif; font-size: 14px; font-weight: 500; color: #64748b;
}

.card-contact-details .email-contato { margin-top: 10px; }

.card-contact-details .email-contato a {
    font-family: 'Poppins', sans-serif; color: #1e293b;
    font-size: 14px; font-weight: 500; text-decoration: underline; transition: color 0.2s ease;
}

.card-contact-details .email-contato a:hover { color: #023eba; }

.lgpd-banner {
    background: #f1f5fe;
    padding: 30px 28px;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
}

.lgpd-banner h4 { font-family: 'Poppins', 'Arial', sans-serif; font-size: 15px; font-weight: 700; color: #1e2229; margin: 0 0 6px 0; }
.lgpd-banner p  { font-family: 'Arial', sans-serif; font-size: 13px; color: #64748b; margin: 0; line-height: 1.4; }

/* FOOTER — captação e política */
.footer {
    background: radial-gradient(circle at center top, #004adc 0%, #01174c 100%);
    color: #ffffff;
    padding: 60px 0 30px 0;
    font-family: 'Arial', sans-serif;
}

.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-col { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.footer-brand-col .main-logo { height: 48px; width: auto; object-fit: contain; }
.brand-badges { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

/* ANIMAÇÕES — captação */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-fade-in { opacity: 0; transition: opacity 1s ease; }

.anim-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-fade-up.em-cena,
.anim-fade-in.em-cena,
.anim-scale.em-cena { opacity: 1; transform: translateY(0) scale(1); }

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }
.anim-delay-6 { transition-delay: 0.6s; }

.step-card .step-number { transition: color 0.4s ease, transform 0.4s ease; }

.step-card.em-cena .step-number { animation: pulseNumber 0.5s ease-out; }

@keyframes pulseNumber {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); color: #052d7d; }
    100% { transform: scale(1); }
}

/* MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; }

#successCard {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff; border-radius: 20px; padding: 40px 36px;
    z-index: 9999; display: flex; flex-direction: column;
    align-items: center; text-align: center; gap: 12px;
    width: 460px; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

#successCard h2 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 800; color: #0841b2; }
#successCard p  { font-size: 16px; color: #555; }

.modal-close {
    position: absolute; top: 14px; right: 18px;
    background: none; border: none; font-size: 22px; cursor: pointer; color: #999;
}

/* RESPONSIVO — captação */
@media (max-width: 1200px) {
    .hero-left h1 { font-size: 62px; }
    .hero-card { width: 100%; }
    .hero-card p { font-size: 24px; }
}

@media (max-width: 1024px) {
    .hero.pagina-cred {
        background-position: center center !important;
        background-size: cover !important;
        padding: 100px 0 60px 0;
    }
    .hero-left h1 { font-size: 42px; margin-left: 40px; }
    .hero-card { width: calc(100% - 40px); margin-left: 40px; }
    .hero-btn { left: 40%; }
    .cards-grid { flex-direction: column; align-items: center; }
    .main-card { width: 100%; min-width: unset; height: auto; }
    .mini-cards-wrapper { width: 100%; min-width: unset; height: auto; grid-template-columns: repeat(2, 1fr); }
    .mini-card { width: 100% !important; height: auto !important; }
    .steps-grid { flex-wrap: wrap; justify-content: center; }
    .step-card { width: calc(50% - 12px); min-width: 280px; }
    .value-text-box h2 { font-size: 32px; margin-bottom: 60px; }
    .section-compare .header-content h2 { white-space: normal !important; font-size: 22px !important; }
    .section-form .header-content h2 { white-space: normal !important; }
    .footer-content-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
    .hero-left { width: 100%; }
    .hero-right { width: 100%; margin-top: 40px; }
    .hero-left h1 { font-size: 48px; }
    .hero-card { margin: auto; }
    .hero-circle { width: 500px; height: 500px; right: 50%; transform: translateX(50%); }
}

@media (max-width: 768px) {
    .hero.pagina-cred {
        background-position: 55% center !important;
        background-size: cover !important;
        min-height: 100svh;
        padding: 90px 0 50px 0;
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
    }

    .hero.pagina-cred::before {
        content: "";
        position: absolute; inset: 0;
        background: linear-gradient(135deg, rgba(2,23,76,0.72) 0%, rgba(2,23,76,0.45) 60%, transparent 100%);
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
        pointer-events: none; z-index: 1;
    }

    .topbar { top: 16px; right: 20px; height: 32px; }
    .hero-left { width: 100%; padding: 0 20px; z-index: 2; }
    .hero-left h1 { font-size: 30px; letter-spacing: -1px; margin-left: 0; margin-bottom: 24px; line-height: 1.05; }
    .hero-card { width: 100%; margin-left: 0; padding: 22px 20px; border-radius: 20px; }
    .hero-card p { font-size: 14px; margin-bottom: 16px; }

    .hero-btn {
        position: static; transform: none; display: block; text-align: center;
        margin: 20px 0 0 0; bottom: auto; left: auto;
        font-size: 12px; padding: 12px 24px; width: 100%; box-sizing: border-box;
    }
    .hero-btn:hover { transform: translateY(-3px); }

    body.pagina-cred .section { padding: 50px 0; }
    body.pagina-cred .section-container { padding: 0 16px; }

    .section-advantages { padding: 50px 0; }
    .header-content { margin-bottom: 32px; }
    .header-content h2 { font-size: 18px !important; line-height: 1.3; }
    .header-content .subtitle { font-size: 14px; }

    .cards-grid { flex-direction: column; gap: 16px; }
    .main-card { width: 100%; min-width: unset; height: auto; padding: 24px 20px; }
    .main-card h3 { font-size: 17px; }
    .mini-cards-wrapper { width: 100%; min-width: unset; height: auto; grid-template-columns: 1fr; gap: 12px; }
    .mini-card { width: 100% !important; height: auto !important; padding: 20px !important; }
    .mini-card h3 { font-size: 16px; margin-left: 0; }
    .mini-card p  { font-size: 14px; margin-left: 0; }
    .mini-card .icon-wrapper { justify-content: flex-start; height: auto; margin-bottom: 10px; }

    .section-steps { padding: 50px 0; }
    .section-steps .header-content h2 { font-size: 20px; letter-spacing: -0.3px; }
    .section-steps .header-content .subtitle { white-space: normal !important; font-size: 15px; }
    .steps-grid { flex-direction: column; gap: 16px; }
    .step-card { width: 100%; min-height: unset; padding: 28px 24px; }
    .step-number { font-size: 60px; margin-bottom: 12px; }

    .section-value-banner { padding: 0; }
    .value-card-content { border-radius: 20px; box-shadow: none; }
    .value-banner-top {
        aspect-ratio: unset; min-height: 260px; padding: 24px 20px; align-items: flex-start;
        background-image: linear-gradient(135deg, rgba(2,23,76,0.80) 0%, rgba(2,23,76,0.50) 70%, transparent 100%), url('../images/sorriso.png') !important;
        background-position: 70% center !important;
        background-size: 160% !important;
        border-radius: 17px 20px 0 0;
    }
    .value-text-box { max-width: 100%; }
    .value-text-box h2 { font-size: 24px; margin-bottom: 0; line-height: 1.2; }
    .card-benefits-bar { grid-template-columns: 1fr; gap: 0; padding: 0; border-radius: 0 0 20px 20px; }
    .benefit-item { padding: 20px 24px; border-bottom: 1px solid rgba(0,40,120,0.12); }
    .benefit-item:last-child { border-bottom: none; }
    .benefit-item strong { font-size: 20px; }
    .benefit-item span { font-size: 14px; }

    .section-compare { padding: 50px 0; }
    .section-compare .header-content h2 { font-size: 18px !important; white-space: normal !important; line-height: 1.3; }
    .section-compare .header-content .subtitle { font-size: 14px; white-space: normal !important; }
    .comparison-card { border-radius: 16px; overflow-x: auto; }
    .comparison-table { min-width: 480px; }
    .comparison-table thead tr th { padding: 14px 10px; }
    .comparison-table tbody td { padding: 12px 10px; font-size: 12px; }
    td.criteria { font-size: 12px; }
    .col-dental .badge { padding: 4px 20px; font-size: 9px; }
    .comparison-footer h3 { font-size: 13px; }

    .section-form { padding: 50px 0; }
    .section-form .header-content h2 { font-size: 18px !important; white-space: normal !important; line-height: 1.3; }
    .section-form .header-content .subtitle { font-size: 13px; }
    .form-card { padding: 28px 16px; border-radius: 12px; margin-top: 28px; }
    .form-row { flex-direction: column; gap: 0; }
    .radio-group { flex-direction: column; gap: 8px; }
    .progress-bar-track { margin-top: 16px; }

    .bottom-cards .header-content h2 { font-size: 18px; white-space: normal !important; width: auto; text-align: left; }
    .cred-card { padding: 28px 20px; }
    .lgpd-banner { padding: 20px 16px; }

    .footer { padding: 40px 0 24px; }
    .footer-content-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand-col { grid-column: 1 / -1; }
    .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
    .footer-col ul { gap: 10px; }
    .footer-col ul li a { font-size: 12px; }
    .footer-bottom p { font-size: 11px; }

    .modal-overlay { background: rgba(0,0,0,0.65); }
    #successCard { width: calc(100% - 32px) !important; max-width: 420px; padding: 28px 20px !important; border-radius: 16px; margin: 0 16px; }
    #successCard h2 { font-size: 20px !important; }
    #successCard p  { font-size: 14px; }
}

@media (max-width: 600px) {
    .hero-left h1 { font-size: 36px; }
    .hero-card p  { font-size: 18px; }
    .hero-btn     { font-size: 12px; }
}

@media (max-width: 480px) {
    .hero-left h1 { font-size: 26px; }
    .hero-card { padding: 18px 16px; }
    .hero-card::before, .hero-card::after { width: 50%; height: 70px; }
    .header-content h2 { font-size: 16px !important; }
    .step-number { font-size: 50px; }
    .value-text-box h2 { font-size: 20px; }
    .benefit-item strong { font-size: 18px; }
    .section-compare .header-content h2 { font-size: 16px !important; }
    .section-form .header-content h2 { font-size: 16px !important; }
    .form-card { padding: 24px 14px; box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
    .footer-content-grid { grid-template-columns: 1fr; }
    .comparison-card { border-radius: 12px; }
    .col-criteria { display: none; }
    .comparison-table { min-width: unset; }
    .comparison-table thead tr th,
    .comparison-table tbody td { width: 50%; }
}

/* ==========================================================================
   PÁGINA DE POLÍTICA (politica.html)
   ========================================================================== */
body.pagina-politica {
    font-family: 'Quicksand', 'Inter', sans-serif;
    overflow-x: hidden;
    color: #333;
    background: #ffffff;
    padding-top: 80px;
}

.header-politica {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; background: #f5f2ea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 80px; border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.header-politica.scrolled {
    height: 65px;
    background: rgba(245,242,234,0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-politica.scrolled .logo img { height: 38px; }

/* Dropdown da política — fundo branco para não se camuflar no hero */
.header-politica .dropdown-menu {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.header-politica .dropdown-menu li a {
    color: #0056ff;
    border-bottom: 1px solid #e5e5e5;
}

.header-politica .dropdown-menu li a:hover {
    background: #f0f4ff;
    opacity: 1;
}

.hero-politica { width: 100%; margin: 0; padding: 0; overflow: hidden; }
.hero-politica img { width: 100%; height: auto; display: block; object-fit: cover; }

body.pagina-politica .section-container {
    max-width: 1000px; margin: 0 auto; padding: 40px 24px;
    font-family: 'Inter', 'Segoe UI', sans-serif; color: #4a4a4a;
}

body.pagina-politica .section-container header { margin-bottom: 40px; }

body.pagina-politica .section-container h1 {
    font-size: 24px; font-weight: 700; color: #1a202c;
    letter-spacing: -0.5px; margin-bottom: 12px;
}

body.pagina-politica .section-container header p {
    font-size: 15px; color: #718096; line-height: 1.6; margin-bottom: 4px;
}

body.pagina-politica .section-container hr {
    border: 0; border-top: 1px solid #e2e8f0; margin: 30px 0;
}

body.pagina-politica .section-container h2 {
    font-size: 20px; font-weight: 700; color: #1a202c;
    text-transform: uppercase; margin-top: 45px; margin-bottom: 20px; letter-spacing: -0.3px;
}

body.pagina-politica .section-container p {
    font-size: 15px; line-height: 1.75; margin-bottom: 20px;
    color: #4a5568; text-align: justify;
}

body.pagina-politica .section-container ul,
body.pagina-politica .section-container ol { list-style: none; padding-left: 0; margin-bottom: 25px; }

body.pagina-politica .section-container li {
    font-size: 15px; line-height: 1.75; margin-bottom: 16px; color: #4a5568; padding-left: 0;
}

body.pagina-politica .section-container li strong,
body.pagina-politica .section-container p strong { color: #2d3748; font-weight: 700; }

body.pagina-politica .section-container ol { list-style-type: lower-alpha; padding-left: 20px; }
body.pagina-politica .section-container ol li { padding-left: 5px; }

body.pagina-politica .mobile-nav {
    position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px);
    background: #f5f2ea; z-index: 999; display: flex; flex-direction: column;
    padding: 40px 24px; gap: 20px; transition: left 0.4s ease;
}

body.pagina-politica .mobile-nav.active { left: 0; }

body.pagina-politica .mobile-nav a {
    text-decoration: none; color: #333; font-size: 18px; font-weight: 600;
    padding-bottom: 10px; border-bottom: 1px solid #e5e5e5;
}

body.pagina-politica .dropdown-mobile details summary {
    font-size: 18px; font-weight: 600; color: #333; list-style: none; cursor: pointer;
    padding-bottom: 10px; border-bottom: 1px solid #e5e5e5;
    display: flex; justify-content: space-between; align-items: center;
}

body.pagina-politica .dropdown-mobile details summary::after { content: "▼"; font-size: 12px; color: #5b5b5b; }
body.pagina-politica .dropdown-mobile details[open] summary::after { content: "▲"; }

body.pagina-politica .dropdown-mobile details a {
    display: block; padding: 12px 0 12px 20px; font-size: 16px; font-weight: 400; color: #5b5b5b;
}

body.pagina-politica .btn-dentista-mobile {
    background: #0056ff; color: white; text-align: center; padding: 16px;
    border-radius: 12px; text-decoration: none; font-weight: 700; margin-top: 20px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}

@media (max-width: 992px) {
    body.pagina-politica .menu,
    body.pagina-politica .header-actions { display: none; }
    body.pagina-politica .menu-toggle { display: flex; }
}

@media (max-width: 768px) {

  /* mantém somente o logo centralizado */
  .footer-brand-bloco{
    width: 100%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* empilha os blocos */
  .footer-corpo{
    flex-direction: column;
    gap: 40px;
  }

  .footer-esquerda,
  .footer-direita{
    width: 100%;
  }

  /* contatos um abaixo do outro */
  .footer-contatos-grupo{
    display: flex !important;
    flex-direction: column;
    gap: 28px !important;
    align-items: flex-start;
  }

  /* tudo alinhado à esquerda */
  .footer-contato-bloco{
    width: 100%;
    text-align: left;
  }

  .footer-contato-bloco h3{
    text-align: left;
  }

  .footer-contato-bloco p{
    justify-content: flex-start;
    text-align: left;
  }

  /* links em uma única coluna */
  .footer-links-grid{
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .footer-col{
    text-align: left;
  }

  .footer-col ul{
    align-items: flex-start;
  }

  /* rodapé */
  .footer-bottom,
  .footer-bottom p,
  .company-details{
    text-align: left;
  }
}