/* =========================================
   1. VARIÁVEIS GERAIS & PALETA DE CORES
   ========================================= */
:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --cor-fundo-site: #efece8;   
    --cor-secundaria: #d1c3d0;   
    --cor-primaria: #b397b7;     
    --cor-destaque: #8c1757;     
    
    --cor-texto-principal: #2b262a; 
    --cor-texto-secundario: #332f32; 
    --cor-card: #ffffff;
}

/* =========================================
   2. RESET E ESTRUTURA GLOBAL DA PÁGINA
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

/* =========================================
   ESTRUTURA GLOBAL E ANIMAÇÃO DE ENTRADA DA PÁGINA
   ========================================= */
body {
    font-family: var(--font-body);
    background-color: var(--cor-fundo-site);
    color: var(--cor-texto-secundario);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    
    /* ANIMAÇÃO DA PÁGINA INTEIRA: Fade-in suave com deslizamento vertical perceptível (1.2 segundos) */
    /* SEM "forwards": um "transform" que persiste após a animação (mesmo translateY(0)) cria um
       novo containing block para os filhos com position:fixed (cabeçalho e botão do WhatsApp),
       fazendo-os rolar junto com a página em vez de ficarem fixos na tela. */
    animation: pageEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pageEntrance {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main {
    flex: 1 0 auto;
    width: 100%;
    padding-top: 100px;
}

h1, h2, h3, h4, h5, h6, .logo-text, .brand-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--cor-texto-principal);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.titulo-secao {
    text-align: center;
    color: var(--cor-destaque);
    font-size: 2rem;
    margin-bottom: 40px;
}

.cor-destaque {
    color: var(--cor-destaque);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--cor-destaque);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Link "Pular para o conteúdo": invisível até receber foco via teclado (acessibilidade) */
.skip-link {
    position: absolute;
    top: -60px;
    left: 10px;
    z-index: 2000;
    background-color: var(--cor-destaque);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.25s ease;
}

.skip-link:focus {
    top: 0;
}

/* =========================================
   3. CABEÇALHO PADRONIZADO E DINÂMICO
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(239, 236, 232, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    box-sizing: border-box;
    transition: background-color 0.4s ease, 
                box-shadow 0.4s ease, 
                height 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.0);
}

.site-header.scrolled {
    background-color: rgba(239, 236, 232, 0.99);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 70px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease;
}

.site-header.scrolled .brand-logo {
    height: 35px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cor-destaque);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a:not(.btn-zap-mini) {
    position: relative;
    text-decoration: none;
    color: var(--cor-texto-secundario);
    font-size: 0.95rem;
    font-weight: 500;
    padding-bottom: 3px;
    transition: color 0.4s ease;
}

@media (min-width: 769px) {
    .nav-menu a:not(.btn-zap-mini)::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: var(--cor-destaque);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s ease;
    }
    
    .nav-menu a:not(.btn-zap-mini):hover::after,
    .nav-menu a.active::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.nav-menu a:not(.btn-zap-mini):hover,
.nav-menu a.active {
    color: var(--cor-destaque);
}

.menu-extra {
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 1px solid rgba(209, 195, 208, 0.6);
    padding-left: 20px;
}

.doctor-specialty {
    font-size: 0.85rem;
    color: #555;
    white-space: nowrap;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--cor-destaque);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: left;
}

/* Anima as 3 linhas em um "X" quando o menu está aberto (feedback visual de estado) */
.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(2px, -1px);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 1px);
}

/* =========================================
   4. BOTÕES E COMPONENTES VISUAIS
   ========================================= */
.btn-zap-mini {
    background-color: #25d366;
    color: white;
    padding: 7px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    font-family: var(--font-body);
    transition: background 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.btn-zap-mini:hover {
    background-color: #1ebe5d;
    transform: scale(1.04);
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-secundario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-whatsapp-secundario:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
}

.btn-secundario {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--cor-primaria);
    color: var(--cor-destaque);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secundario:hover {
    /* Usa --cor-destaque (não --cor-primaria) para manter contraste AA com o texto branco */
    background-color: var(--cor-destaque);
    border-color: var(--cor-destaque);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(140, 23, 87, 0.3);
}

.foto-perfil {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 50%;
    border: 5px solid var(--cor-primaria);
    box-shadow: 0 10px 25px rgba(140, 23, 87, 0.15);
}

/* =========================================
   5. SEÇÕES DO SITE & COMPONENTES ESPECÍFICOS
   ========================================= */
.hero {
    padding: 60px 0 80px 0;
    text-align: center;
}

.hero h1 {
    color: var(--cor-destaque);
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sobre, .tratamentos, .localizacao, .convenios {
    padding: 80px 0;
}

.sobre {
    background-color: var(--cor-card);
}

.sobre-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-foto, .sobre-texto {
    flex: 1;
}

.sobre-texto p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.cards-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background-color: var(--cor-card);
    padding: 40px 30px;
    border-radius: 12px;
    width: 32%;
    min-width: 280px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    text-align: center;
    border-top: 4px solid var(--cor-primaria);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.atendimento-info {
    background-color: var(--cor-card);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    max-width: 800px;
    margin: 0 auto;
}

.atendimento-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.localizacao-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    background-color: var(--cor-card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.localizacao-texto {
    flex: 1;
    text-align: left;
}

.localizacao-texto h3 {
    color: var(--cor-destaque);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.localizacao-texto p {
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.localizacao-mapa {
    flex: 1;
    width: 100%;
}

.faq-page-container {
    max-width: 900px;
    margin: 90px auto 60px auto; 
    padding: 0 20px;
}

.faq-hero {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px; 
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.faq-card {
    background-color: var(--cor-card);
    border-left: 4px solid var(--cor-destaque);
    padding: 25px 30px;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq-card h2 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* =========================================
   6. ARTIGOS & COMPONENTES MÍDIA
   ========================================= */
.article-container {
    max-width: 900px;
    margin: 40px auto 60px auto;
    padding: 0 20px;
}

.article-card {
    background: var(--cor-card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.article-header-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.article-back-link {
    color: var(--cor-destaque);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.article-back-link:hover {
    opacity: 0.7;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cor-texto-secundario);
}

.article-body h2 {
    font-size: 1.4rem;
    color: var(--cor-destaque);
    margin: 30px 0 15px 0;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.article-body li {
    margin-bottom: 10px;
}

.media-card-wrapper {
    width: 100%;
    max-width: 650px;
    padding: 25px;
    text-align: center;
    margin: 0 auto;
}

.youtube-thumbnail-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.youtube-thumbnail-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.youtube-thumbnail-link:hover img {
    transform: scale(1.03);
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(140, 23, 87, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.youtube-thumbnail-link:hover .play-icon-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

/* =========================================
   7. RODAPÉ FIXADO NA BASE (FOOTER)
   ========================================= */
footer {
    flex-shrink: 0;
    width: 100%;
    background-color: var(--cor-destaque);
    padding: 40px 5% 25px 5%;
    text-align: center;
    color: #e0d8de;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #e0d8de;
}

.logo-rodape {
    max-height: 70px;
    width: auto;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--cor-primaria);
}

/* =========================================
   8. ANIMAÇÕES & REVEAL
   ========================================= */

/* TEMPO AUMENTADO E MOVIMENTO MAIS VISÍVEL PARA O FADE IN DA PÁGINA */
@keyframes fadeInPage {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    /* TRANSIÇÃO MUITO MAIS SUAVE (ease-out) E LONGA PARA OS ELEMENTOS DE SCROLL */
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    body {
        transition: none !important;
    }

    main,
    .hamburger-line,
    .nav-menu,
    .btn-whatsapp,
    .btn-whatsapp-secundario,
    .btn-secundario,
    .card,
    .youtube-thumbnail-link img,
    .site-header {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================
   9. RESPONSIVIDADE (MOBILE & TABLETS)
   ========================================= */
@media (max-width: 768px) {
    .site-header {
        height: 75px;
        padding: 0 15px;
    }

    .site-header.scrolled {
        height: 65px;
    }

    .brand-logo {
        height: 32px;
    }

    .site-header.scrolled .brand-logo {
        height: 28px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hamburger-btn {
        display: flex;
        width: 32px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1002;
        padding: 0;
    }

    .hamburger-line {
        width: 100%;
        height: 3px;
        background-color: var(--cor-destaque);
        border-radius: 4px;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    body::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(43, 38, 42, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 998;
    }

    body.menu-open::after {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        top: 75px; 
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: calc(100svh - 75px); 
        background-color: var(--cor-fundo-site);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 25px 40px 25px;
        box-shadow: -5px 10px 25px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        gap: 15px;
        z-index: 999;
        overflow-y: auto; 
    }

    .site-header.scrolled ~ .nav-menu {
        top: 65px;
        height: calc(100svh - 65px); 
    }

    .nav-menu.aberto {
        right: 0;
    }

    .nav-menu a:not(.btn-zap-mini) {
        font-size: 1.15rem;
        font-family: var(--font-heading);
        color: var(--cor-texto-principal);
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(179, 151, 183, 0.3);
        transition: color 0.3s, padding-left 0.3s ease;
    }

    .nav-menu a:not(.btn-zap-mini):hover,
    .nav-menu a.active {
        color: var(--cor-destaque);
        padding-left: 8px;
    }

    .menu-extra {
        flex-direction: column;
        align-items: stretch;
        border-left: none;
        border-top: 2px solid rgba(179, 151, 183, 0.4);
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
        gap: 15px;
        margin-top: 10px;
    }

    .doctor-specialty {
        display: block;
        font-size: 0.85rem;
        color: var(--cor-texto-secundario);
        text-align: center;
        background-color: rgba(179, 151, 183, 0.15);
        padding: 8px;
        border-radius: 6px;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 30px 15px 40px 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .foto-perfil {
        width: 220px; 
        height: 220px;
        margin: 0 auto;
    }

    .btn-whatsapp, 
    .btn-secundario, 
    .btn-whatsapp-secundario, 
    .btn-zap-mini {
        width: 100%; 
        max-width: 320px;
        padding: 12px 15px;
        font-size: 0.95rem;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }

    .card {
        width: 100%;
        min-width: 0; 
        padding: 25px 20px;
    }

    .sobre-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .localizacao-grid {
        padding: 25px 15px;
    }

    .faq-page-container {
        margin-top: 100px;
    }

    .faq-card {
        padding: 15px 20px;
    }

    .article-container {
        margin-top: 100px;
        padding: 0 15px;
    }

    .article-card {
        padding: 25px 15px;
    }

    .media-card-wrapper {
        padding: 15px;
    }
}

/* =========================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.12);
}

.menu-destaque {
    color: var(--cor-destaque) !important;
    font-weight: 700 !important;
    position: relative;
}
.menu-destaque::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--cor-destaque);
}

/* =========================================
   10. PÁGINA DE ACOMPANHAMENTO MENSAL (LANDING PAGE)
   ========================================= */

.acompanhamento-hero {
    background-color: var(--cor-fundo-site);
    padding: 60px 0 40px 0;
    text-align: center;
}

.acompanhamento-hero h1 {
    color: var(--cor-destaque);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.acompanhamento-hero p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--cor-texto-secundario);
}

.acompanhamento-sobre {
    background-color: var(--cor-card);
    padding: 80px 0;
}

.acompanhamento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.acompanhamento-bloco h2 {
    color: var(--cor-destaque);
    font-size: 1.8rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.acompanhamento-bloco p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--cor-texto-secundario);
}

.lista-beneficios {
    list-style: none;
    padding: 0;
}

.lista-beneficios li {
    font-size: 1.05rem;
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    color: var(--cor-texto-secundario);
}

/* Ícone de check customizado (usando SVG) */
.lista-beneficios li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238c1757'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.acompanhamento-cta {
    background-color: var(--cor-fundo-site);
    padding: 80px 0;
}

/* Responsividade específica para a Landing Page */
@media (max-width: 768px) {
    .acompanhamento-hero h1 {
        font-size: 2rem;
    }
    
    .acompanhamento-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .acompanhamento-bloco h2 {
        font-size: 1.6rem;
    }
}
/* =========================================
   11. UTILITÁRIOS (substituem estilos inline)
   ========================================= */
.icon-inline {
    vertical-align: middle;
    display: inline-block;
}

.footer-meta {
    font-size: 0.85rem;
    color: #d1c3d0;
    margin-top: 3px;
}

.footer-meta--spaced {
    margin-top: 5px;
}

.bg-card {
    background-color: var(--cor-card);
}

.map-embed {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--cor-texto-secundario);
}

.media-card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.media-card-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-media {
    background-color: var(--cor-destaque);
    box-shadow: none;
}

.link-artigo {
    color: var(--cor-primaria);
    font-weight: bold;
    text-decoration: none;
}

.cta-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.text-strong {
    font-weight: 600;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
