/* Modelo4 — Hospital (SEO convênios/planos que atendem o hospital; hero full, bento) */
:root {
    /* --cor-principal e --cor-secundaria: injetadas no header.phtml na compilação */
    --cor-texto: #334155;
    --cor-texto-claro: #ffffff;
    --cor-fundo: #ffffff;
    --cor-fundo-suave: #f8fafc;
    --cor-fundo-muted: #f1f5f9;
    --cor-header: #eef2ff;
    --cor-whatsapp: #059669;
    --cor-borda: #e2e8f0;
    --container-width: 1120px;
    --spacing-md: 20px;
    --spacing-lg: 48px;
    --spacing-xl: 64px;
    --radius: 8px;
    --radius-lg: 14px;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --mobile-bar: 52px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--cor-texto);
    background: var(--cor-fundo);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

body.has-mobile-bar {
    padding-bottom: var(--mobile-bar);
}

@media (min-width: 769px) {
    body.has-mobile-bar {
        padding-bottom: 0;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--cor-principal);
    text-decoration: none;
}

a:hover {
    color: var(--cor-secundaria);
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow-left {
    max-width: 720px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ——— Botões ——— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-primary {
    background: var(--cor-principal);
    color: var(--cor-texto-claro);
}

.btn-primary:hover {
    background: var(--cor-secundaria);
    color: var(--cor-texto-claro);
}

.btn-pill {
    border-radius: 999px;
    padding: 10px 20px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}

.btn-whatsapp {
    background: var(--cor-whatsapp);
    color: #fff;
}

.btn-whatsapp:hover {
    background: #047857;
    color: #fff;
}

.btn-light {
    background: #fff;
    color: var(--cor-principal);
    border-color: #fff;
}

.btn-light:hover {
    background: #eff6ff;
    color: var(--cor-secundaria);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.icon-sm {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ——— Header institucional ——— */
.site-header {
    background: var(--cor-header);
    border-bottom: 1px solid #c7d2fe;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 14px;
    position: relative;
    flex-wrap: wrap;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    max-height: 80px;
    width: auto;
}

.header-tagline {
    display: none;
    font-size: 0.75rem;
    color: #64748b;
    border-left: 1px solid #c7d2fe;
    padding-left: 14px;
    max-width: 140px;
    line-height: 1.35;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
}

.header-phone:hover {
    color: var(--cor-principal);
}

.main-nav ul {
    display: flex;
    gap: 24px;
}

.main-nav a {
    color: var(--cor-texto);
    font-weight: 500;
    font-size: 0.92rem;
}

.menu-toggle {
    display: none;
    background: #fff;
    border: 1px solid var(--cor-borda);
    border-radius: var(--radius);
    padding: 8px;
    cursor: pointer;
    margin-left: auto;
}

@media (min-width: 901px) {
    .header-tagline {
        display: block;
    }

    .header-actions {
        display: flex;
    }

    .main-nav {
        display: block !important;
        position: static;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        order: 0;
    }

    .menu-toggle {
        display: none !important;
    }

    .mobile-nav-cta {
        display: none;
    }

    .header-row {
        flex-wrap: nowrap;
    }
}

/* Preserva margem lateral do .container no header */
.site-header .container.header-row {
    padding-inline: var(--spacing-md);
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
        flex-shrink: 0;
    }

    .header-brand {
        flex: 1;
        min-width: 0;
    }

    .header-actions {
        display: none;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 10;
        background: #fff;
        border: 1px solid var(--cor-borda);
        border-radius: var(--radius-lg);
        padding: 18px;
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

/* ——— Hero banner full ——— */
.hero-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(29, 78, 216, 0.55) 100%);
}

.hero-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    margin-inline: auto;
    padding-block: var(--spacing-xl);
    color: #fff;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.hero-banner h1 {
    font-size: clamp(1.85rem, 5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.hero-lead {
    font-size: 1.05rem;
    opacity: 0.92;
    max-width: 48ch;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-banner--page {
    min-height: 280px;
}

.hero-banner--page .hero-banner-content {
    max-width: var(--container-width);
    padding-block: 48px 40px;
}

/* Preserva margem lateral do .container (evita shorthand padding zerar os lados) */
.hero-banner .container.hero-banner-content {
    padding-inline: var(--spacing-md);
}

.hero-banner--page h1 {
    font-size: clamp(1.5rem, 4vw, 2.15rem);
    margin-bottom: 10px;
}

.breadcrumb--light,
.breadcrumb--light a {
    color: rgba(255, 255, 255, 0.88);
}

.breadcrumb--light a:hover {
    color: #fff;
}

/* ——— Trust strip ——— */
.trust-strip {
    background: var(--cor-fundo);
    border-bottom: 1px solid var(--cor-borda);
    padding: 28px 0;
}

.trust-strip-inner {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.trust-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: #eff6ff;
    color: var(--cor-principal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item strong {
    display: block;
    font-size: 0.95rem;
    color: #0f172a;
    margin-bottom: 2px;
}

.trust-item span {
    font-size: 0.82rem;
    color: #64748b;
}

@media (min-width: 600px) {
    .trust-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .trust-strip-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ——— Seções ——— */
.section {
    padding: var(--spacing-xl) 0;
}

.section-muted {
    background: var(--cor-fundo-muted);
}

.section-head {
    margin-bottom: var(--spacing-lg);
}

.section-head--left {
    text-align: left;
    max-width: 560px;
}

.section-head h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-head p {
    color: #64748b;
    font-size: 0.98rem;
}

/* ——— Bento coberturas ——— */
.bento-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

.bento-card {
    background: var(--cor-fundo);
    border: 1px solid var(--cor-borda);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    border-left: 4px solid var(--cor-principal);
}

.bento-card--featured {
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
    border-left-width: 5px;
}

.bento-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(100px, auto);
    }

    .bento-card--featured {
        grid-row: span 2;
    }

    .bento-card--wide {
        grid-column: span 2;
    }
}

/* ——— Processo ——— */
.process-steps {
    display: grid;
    gap: 24px;
    counter-reset: step;
}

.process-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cor-principal);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-steps h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.process-steps p {
    font-size: 0.9rem;
    color: #64748b;
    grid-column: 2;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .process-steps li {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-num {
        margin: 0 auto 12px;
    }

    .process-steps p {
        grid-column: 1;
    }
}

/* ——— Faixa CTA ——— */
.cta-band {
    background: var(--cor-principal);
    color: #fff;
    padding: var(--spacing-lg) 0;
}

.cta-band-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.cta-band h2 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.cta-band p {
    opacity: 0.9;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .cta-band-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ——— Vídeos scroll ——— */
.video-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.video-card {
    flex: 0 0 min(82vw, 280px);
    scroll-snap-align: start;
    border: 1px solid var(--cor-borda);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cor-fundo);
}

.video-card-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #e2e8f0;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.25);
}

.play-badge span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--cor-principal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.video-card h3 {
    padding: 12px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
}

/* ——— FAQ ——— */
.faq-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

details {
    background: var(--cor-fundo);
    border: 1px solid var(--cor-borda);
    border-radius: var(--radius);
    padding: 16px 18px;
}

details[open] {
    border-color: #93c5fd;
    background: #eff6ff;
}

summary {
    font-weight: 600;
    font-size: 0.95rem;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    padding-right: 24px;
    position: relative;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    right: 0;
    color: var(--cor-principal);
    font-weight: 400;
}

details[open] summary::after {
    content: "−";
}

details p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #64748b;
}

.faq-link-wrap {
    margin-top: 24px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ——— Páginas internas ——— */
.page-hero {
    padding: 40px 0 28px;
    background: var(--cor-header);
    border-bottom: 1px solid #c7d2fe;
}

.page-hero--compact {
    padding: 32px 0 24px;
}

.page-hero h1 {
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.breadcrumb {
    font-size: 0.85rem;
    color: #64748b;
}

.page-body {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}

.page-layout {
    display: grid;
    gap: var(--spacing-lg);
    align-items: start;
    width: 100%;
    max-width: var(--container-width);
    min-width: 0;
}

.page-content h2 {
    font-size: 1.15rem;
    color: #0f172a;
    margin: 1.6em 0 0.45em;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 1em;
    color: #475569;
}

.page-content ul {
    list-style: disc;
    margin: 0 0 1em 1.2em;
    color: #475569;
}

.aside-card {
    background: var(--cor-fundo-muted);
    border: 1px solid var(--cor-borda);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 88px;
}

.aside-card h2 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #0f172a;
}

.aside-card > p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 16px;
}

.aside-phone {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (min-width: 900px) {
    .page-layout {
        grid-template-columns: 1fr 300px;
    }
}

/* ==========================================================================
   Tabelas de Preço Responsivas
   ========================================================================== */
.page-content,
.page-article {
    min-width: 0;
    overflow-x: hidden;
}

.table-responsive,
.table-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.table-responsive table,
.table-wrap table {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.table-responsive th,
.table-responsive td,
.table-wrap th,
.table-wrap td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    font-size: 15px;
    color: var(--cor-texto, #334155);
}

.table-responsive th,
.table-wrap th {
    background-color: var(--cor-principal, #0056b3);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.table-responsive tbody tr:last-child td,
.table-wrap tbody tr:last-child td {
    border-bottom: none;
}

.table-responsive tbody tr:nth-child(even),
.table-wrap tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.table-responsive tbody tr:hover,
.table-wrap tbody tr:hover {
    background-color: #f1f5f9;
}

/* ==========================================================================
   Logos / Hospitais Parceiros
   ========================================================================== */
.hospital-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.section-hospitais .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.section-hospitais .col-6,
.section-hospitais .col-md-4,
.section-hospitais .col-lg-2 {
    padding: 0;
}

.section-hospitais .col-6 {
    width: calc(50% - 1.5rem);
}

@media (min-width: 768px) {
    .section-hospitais .col-6 {
        width: calc(33.333% - 1.5rem);
    }
}

@media (min-width: 992px) {
    .section-hospitais .col-6 {
        width: calc(16.666% - 1.5rem);
    }
}

/* ——— Footer claro ——— */
.site-footer {
    background: var(--cor-fundo-suave);
    border-top: 1px solid var(--cor-borda);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    font-size: 0.875rem;
    color: #64748b;
}

.footer-grid {
    display: grid;
    gap: 28px;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--cor-borda);
}

.footer-brand p {
    margin-top: 12px;
    max-width: 360px;
    line-height: 1.5;
}

.footer-contact h2 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f172a;
    margin-bottom: 12px;
}

.footer-contact p {
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: start;
    }
}

.footer-accordion details {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--cor-borda);
    border-radius: 0;
    padding: 14px 0;
}

.footer-accordion summary {
    color: #0f172a;
}

.footer-accordion a {
    color: #64748b;
    font-size: 0.85rem;
}

.footer-accordion li {
    margin-bottom: 6px;
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom address {
    font-style: normal;
    line-height: 1.6;
}

.social a {
    margin: 0 8px;
    color: #475569;
}

.legal {
    margin-top: var(--spacing-md);
    font-size: 0.75rem;
    line-height: 1.5;
}

.llm-link {
    color: #94a3b8;
    font-size: 0.7rem;
}

/* Mobile bar — 2 botões */
.mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--cor-fundo);
    border-top: 1px solid var(--cor-borda);
    padding: 6px 12px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

.mobile-bar .btn {
    flex: 1;
    padding: 12px;
    font-size: 0.85rem;
}

.mobile-bar .btn-whatsapp {
    flex: 1.1;
}

@media (min-width: 769px) {
    .mobile-bar {
        display: none;
    }
}

.whatsapp-float {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: var(--cor-whatsapp, #25d366);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
    z-index: 90;
}

@media (min-width: 769px) {
    .whatsapp-float {
        display: flex;
    }
}

/* Dialog vídeo */
.video-dialog {
    border: none;
    border-radius: var(--radius-lg);
    padding: 0;
    max-width: 880px;
    width: 92vw;
    background: #0f172a;
}

.video-dialog::backdrop {
    background: rgba(15, 23, 42, 0.8);
}

.video-dialog-inner {
    position: relative;
}

.dialog-close {
    position: absolute;
    top: -36px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.75rem;
    cursor: pointer;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ==========================================================================
   Formulário de Cotação V2 - Motor Estático Carmel
   ========================================================================== */
   .section-cotacao-page {
    padding: 60px 0;
    background-color: var(--cor-fundo, #ffffff);
}
.form-cotacao-v2 {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eef2f5;
    margin-top: 30px;
}
.form-grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .form-grid-two-cols {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
.form-field-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.form-field-wrap label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--cor-texto, #333333);
    font-size: 14px;
}
.form-field-wrap input[type="text"],
.form-field-wrap input[type="email"],
.form-field-wrap input[type="tel"],
.form-field-wrap textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    color: var(--cor-texto);
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field-wrap input:focus,
.form-field-wrap textarea:focus {
    outline: none;
    border-color: var(--cor-principal);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}
.full-width-field {
    margin-bottom: 20px;
}
.radio-box {
    background: #f8fafc;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}
.radio-label-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    color: var(--cor-texto);
}
.radio-options {
    display: flex;
    gap: 20px;
}
.radio-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}
.radio-options input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--cor-principal);
    cursor: pointer;
}
.form-submit-action {
    text-align: center;
    margin-top: 30px;
}
.form-submit-action .btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.1s ease;
}
.form-submit-action .btn:active {
    transform: scale(0.98);
}
/* Texto focado em GEO para LLMs */
.geo-notice-box {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f7ff;
    border-left: 4px solid var(--cor-principal);
    border-radius: 0 8px 8px 0;
}
.geo-notice-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
}

.hospital-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}