/*
 * Análise Online — Tema Consox
 * Cores do site original:
 *   --ao-teal:     #14B3A9  (principal)
 *   --ao-teal-dk:  #277886  (escuro)
 *   --ao-navy:     #223555  (rodapé/títulos)
 *   --ao-gold:     #fcb121  (destaque/CTA)
 *   --ao-light:    #7EBEC5  (slide background)
 */

:root {
    --ao-teal: #14B3A9;
    --ao-teal-dk: #277886;
    --ao-navy: #223555;
    --ao-gold: #fcb121;
    --ao-light: #7EBEC5;
}

/* ============================================================
   Base
   ============================================================ */
html {
    overflow-x: hidden;
}

body.ao-body {
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f8fafc;
    color: #1f2933;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.ao-header {
    background-color: var(#ffffff);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Topo: logo + Fale conosco + redes sociais — mesma cor do menu/cabeçalho */
.ao-header-top {
    background-color: #ffffff;
}

.ao-logo {
    text-decoration: none;
}

.ao-logo img {
    max-height: 70px;
}

.ao-logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ao-cor-principal, var(--ao-teal));
}

.ao-fale-conosco {
    font-size: 0.9rem;
    color: var(--ao-cor-fonte-header, var(--ao-navy));
    font-weight: 600;
}

.ao-header-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ao-header-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.ao-header-social-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    color: #fff !important;
    text-decoration: none;
}

.ao-header-social-btn--fb {
    background-color: #1877f2;
}

.ao-header-social-btn--ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ao-header-social-btn--wa {
    background-color: #25d366;
}

.ao-header-social-btn i {
    font-size: 1rem;
    color: #fff;
}

/* Barra de navegação desktop — mesma cor de fundo do cabeçalho */
.ao-nav-bar {
    width: 100%;
    background: var(--ao-cor-fundo-header, #ffffff);
}

.ao-nav-bar-inner {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.ao-nav-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 0.5rem;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.ao-nav-item:hover {
    filter: brightness(1.1);
    color: #fff !important;
    text-decoration: none;
}

.ao-nav-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

.ao-nav-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Cores por item (layout original) */
.ao-nav-item--laboratorio {
    background-color: var(--ao-nav-cor-laboratorio, #14B3A9);
}

.ao-nav-item--exames {
    background-color: var(--ao-nav-cor-exames, #A1A100);
}

.ao-nav-item--servicos {
    background-color: var(--ao-nav-cor-servicos, #92448F);
}

.ao-nav-item--convenios {
    background-color: var(--ao-nav-cor-convenios, #648750);
}

.ao-nav-item--dicas {
    background-color: var(--ao-nav-cor-dicas, #14B3A9);
}

.ao-nav-item--duvidas {
    background-color: var(--ao-nav-cor-duvidas, #F7931D);
}

.ao-menu-toggle {
    background: none;
    border: none;
    color: var(--ao-cor-principal, var(--ao-teal));
    font-size: 1.5rem;
    cursor: pointer;
}

.ao-mobile-menu {
    background-color: var(--ao-cor-fundo-header, #ffffff);
    border-top: 1px solid #e5e7eb;
}

.ao-mobile-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.ao-mobile-menu a {
    display: block;
    padding: 0.6rem 0.5rem;
    color: var(--ao-navy, #223555);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* ============================================================
   Botões
   ============================================================ */
.ao-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: var(--ao-cor-principal, var(--ao-teal));
    color: #ffffff !important;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-style: italic;
    border: none;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

form>.ao-btn {
    margin: 0 auto;
    display: block;
}

.ao-btn:hover {
    background-color: var(--ao-cor-detalhe, var(--ao-teal-dk));
    color: #ffffff !important;
    text-decoration: none;
}

.ao-btn-lg {
    padding: 0.6rem 2rem;
    font-size: 1.05rem;
}

.ao-btn-sm {
    padding: 0.3rem 1rem;
    font-size: 0.9rem;
}

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

.ao-link,
.ao-link-sm {
    color: var(--ao-cor-principal, var(--ao-teal));
    font-weight: 600;
    text-decoration: none;
}

.ao-link:hover,
.ao-link-sm:hover {
    color: var(--ao-cor-detalhe, var(--ao-teal-dk));
    text-decoration: underline;
}

/* ============================================================
   Slider / Hero Wrapper
   ============================================================ */
.ao-hero-wrapper {
    display: flex;
    min-height: 20vh;
    background-color: var(--ao-light, #7EBEC5);
}

/* 7 colunas (7/12) + 5 colunas (5/12) */
.ao-hero-slider-col {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    position: relative;
    overflow: hidden;
}

.ao-hero-laudos-col {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    background-color: #14B3A9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

@media (max-width: 767.98px) {
    .ao-logo img {
        max-height: 50px;
    }

    .ao-pagina-banner,
    .ao-blog-banner {
        min-height: 10vh !important;
    }

    .ao-hero-wrapper {
        flex-direction: column;
    }

    .ao-banner-inicio-cta {
        font-size: 1rem !important;
    }

    .ao-hero-slider-col {
        flex: none;
        max-width: 100%;
        min-height: 20vh;
    }

    .ao-hero-laudos-col {
        flex: none;
        max-width: 100%;
    }
}

/* Slider */
.ao-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 20vh;
    overflow: hidden;
}

.ao-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--ao-light, #7EBEC5);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.ao-slide.ao-slide-active {
    opacity: 1;
}

.ao-slide-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.ao-slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.ao-slide-desc {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Caption e CTA do slide (direção: esquerda, centro, direita) */
.ao-slide-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 5;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.ao-slide-caption.text-end {
    text-align: right;
}

.ao-slide-caption.text-start {
    text-align: left;
}

.ao-slide-caption.text-center {
    text-align: center;
}

.ao-slide-caption-text {
    font-size: 1rem;
    line-height: 1.4;
}

.ao-slide-cta {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s;
}

.ao-slide-cta:hover {
    color: #fff !important;
    opacity: 0.9;
    transform: translateY(-1px);
}

.ao-hero-fallback {
    background-color: var(--ao-light, #7EBEC5);
    min-height: 20vh;
}

.ao-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    font-style: italic;
}

.ao-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

/* Slider controls */
.ao-slider-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 10;
}

.ao-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s;
}

.ao-slider-dot.active {
    background-color: #ffffff;
}

/* ============================================================
   Formulário de Laudos (coluna direita do hero)
   ============================================================ */
.ao-laudos-widget {
    background-color: transparent;
    color: #ffffff;
    width: 100%;
    max-width: 340px;
}

.ao-laudos-logo {
    height: 8vh;
}

.ao-laudos-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.ao-laudos-select {
    border: none;
    font-weight: 600;
    color: var(--ao-navy, #223555);
}

.ao-laudos-widget .form-control {
    border: none;
    font-size: 0.9rem;
}

.ao-laudos-widget .ao-btn {
    background-color: var(--ao-navy, #223555);
    font-size: 1rem;
    border-radius: .2rem;
}

.ao-laudos-widget .ao-btn:hover {
    background-color: var(--ao-teal-dk, #277886);
}

.ao-laudos-widget a,
.ao-laudos-link-sem-senha {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
}

.ao-laudos-widget a:hover,
.ao-laudos-link-sem-senha:hover {
    color: #ffffff;
}

.ao-laudos-titulo {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0 0 0.1rem;
}

.ao-laudos-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Variante clara (para incluir fora do fundo teal) */
.ao-laudos--light {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.ao-laudos--light .ao-laudos-label {
    color: var(--ao-navy, #223555);
}

.ao-laudos--light .ao-laudos-titulo {
    color: var(--ao-navy, #223555);
}

.ao-laudos--light .ao-laudos-sub {
    color: #64748b;
}

.ao-laudos--light .ao-laudos-link-sem-senha,
.ao-laudos--light a {
    color: var(--ao-cor-principal, var(--ao-teal));
    font-size: 0.8rem;
}

.ao-laudos--light .ao-laudos-link-sem-senha:hover,
.ao-laudos--light a:hover {
    color: var(--ao-cor-detalhe, var(--ao-teal-dk));
}

.ao-laudos--light .ao-btn {
    background-color: var(--ao-cor-principal, var(--ao-teal));
}

/* ============================================================
   Blocos da Home (4 seções do site original)
   ============================================================ */

/* Par de blocos lado a lado */
.ao-bloco-row {
    display: flex;
    min-height: 200px;
}

.ao-bloco {
    flex: 0 0 50%;
    max-width: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.ao-bloco-empresa {
    background-color: var(--ao-cor-principal, var(--ao-teal));
}

.ao-bloco-equipe {
    background-color: var(--ao-cor-detalhe, var(--ao-teal-dk));
}

.ao-bloco-convenios {
    background-color: #1d284a;
    background-image: var(--ao-img-bloco-convenios,
            url('https://analiseonline.com.br/wp-content/uploads/2020/11/Objeto-Inteligente-de-Vetor.png'));
}

.ao-bloco-servicos {
    background-color: var(--ao-teal-dk, #277886);
    background-image: var(--ao-img-bloco-servicos,
            url('https://analiseonline.com.br/wp-content/uploads/2020/01/Agrupar-3.png'));
}

.ao-bloco-duvidas {
    background-color: var(--ao-teal, #14B3A9);
    background-image: var(--ao-img-bloco-duvidas,
            url('https://analiseonline.com.br/wp-content/uploads/2020/01/Agrupar-5.png'));
}

.ao-bloco-coleta {
    background-color: var(--ao-teal-dk, #277886);
    background-image: var(--ao-img-bloco-coleta,
            url('https://analiseonline.com.br/wp-content/uploads/2020/01/Agrupar-6.png'));
}

.ao-bloco-inner {
    padding: 2.5rem 2rem 2rem;
}

/* Bloco largura total */
.ao-bloco-full {
    background-size: cover;
    background-position: center;
    min-height: 20vh;
    display: flex;
    align-items: center;
}

.ao-bloco-agendamento {
    background-color: var(--ao-navy, #223555);
    background-image: var(--ao-img-bloco-agendamento,
            url('https://analiseonline.com.br/wp-content/uploads/2020/01/Agrupar-4.png'));
}

.ao-bloco-dicas {
    background-color: var(--ao-teal-dk, #277886);
    background-image: var(--ao-img-bloco-dicas,
            url('https://analiseonline.com.br/wp-content/uploads/2020/03/banner.jpg'));
    min-height: 250px;
}

.ao-bloco-full-inner {
    padding: 2.5rem 3rem;
}

/* Títulos e botões dos blocos */
.ao-bloco-titulo {
    color: #ffffff;
    font-weight: 700;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ao-bloco-titulo-dark {
    color: var(--ao-navy, #223555);
    text-align: center;
    font-size: 2rem;
}

.ao-bloco-sub {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.ao-bloco-btn {
    display: inline-block;
    border-radius: 100px;
    padding: 0.4rem 1.5rem;
    font-weight: 700;
    font-style: italic;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s;
    background-color: var(--ao-gold, #fcb121);
    color: var(--ao-navy, #223555) !important;
}

.ao-bloco-btn:hover {
    opacity: 0.9;
    text-decoration: none;
    color: var(--ao-navy, #223555) !important;
}

.ao-bloco-btn-dark {
    background-color: var(--ao-teal-dk, #277886);
    color: #ffffff !important;
}

.ao-bloco-btn-dark:hover {
    color: #ffffff !important;
}

.ao-bloco-btn-teal {
    background-color: var(--ao-teal, #14B3A9);
    color: #ffffff !important;
}

.ao-bloco-btn-teal:hover {
    background-color: var(--ao-teal-dk, #277886);
    color: #ffffff !important;
}

.ao-bloco-btn-gold {
    background-color: var(--ao-gold, #fcb121);
    color: var(--ao-navy, #223555) !important;
}

@media (max-width: 767.98px) {
    .ao-bloco-row {
        flex-direction: column;
    }

    .ao-bloco {
        flex: none;
        max-width: 100%;
    }

    .ao-bloco-titulo-dark {
        font-size: 1.4rem;
    }

    .ao-bloco-inner,
    .ao-bloco-full-inner {
        padding: 1.5rem 1rem;
    }
}

/* ============================================================
   Menu de Ícones (seção da homepage — exibir_em: Início)
   ============================================================ */
.ao-menu-icones {
    padding: 1.5rem 0;
}

.ao-menu-icones-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.ao-menu-icone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1 1 100px;
    padding: 1.25rem 0.75rem;
    background-color: var(--ao-cor-principal, var(--ao-teal));
    text-decoration: none !important;
    text-align: center;
    transition: filter 0.2s ease, transform 0.15s ease;
}

.ao-menu-icone-item:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.ao-menu-icone-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ao-menu-icone-visual .fa {
    font-size: 2rem;
    line-height: 1;
}

.ao-menu-icone-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ao-menu-icone-label {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

@media (max-width: 575.98px) {
    .ao-menu-icone-item {
        min-width: 100%;
        max-width: 100%;
        padding: 1rem 0.5rem;
    }

    .ao-menu-icone-visual {
        width: 90%;
        height: 90%;
    }

    .ao-menu-icone-visual .fa {
        font-size: 1.6rem;
    }
}

/* ============================================================
   Sections da home (convênios, serviços, FAQ, dicas)
   ============================================================ */
.ao-section {
    padding: 3rem 0;
}

.ao-section-muted {
    background-color: #f1f5f9;
}

.ao-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ao-navy, #223555);
    font-style: italic;
    margin-bottom: 0;
}

.ao-section-tagline {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* ============================================================
   Páginas internas — banner largura total
   ============================================================ */
.ao-pagina-banner,
.ao-blog-banner {
    width: 100%;
    min-height: 20vh;
    background-size: cover;
    background-position: center;
    background-color: var(--ao-cor-banner, var(--ao-cor-fundo-header, var(--ao-teal)));
    display: flex;
    align-items: center;
    justify-content: center;
}

.ao-pagina-banner-inner,
.ao-blog-banner-inner {
    padding: 2rem;
    text-align: center;
}

.ao-pagina-banner-titulo,
.ao-blog-banner-titulo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Quando há capa (background), ocultar título visualmente */
.ao-blog-banner--has-capa .ao-blog-banner-titulo {
    text-indent: -99999px;
    overflow: hidden;
    white-space: nowrap;
}

.ao-pagina-titulo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ao-navy, #223555);
}

/* Capa: imagem em largura total abaixo do cabeçalho */
.ao-pagina-capa {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.ao-pagina-capa-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.ao-pagina-conteudo,
.ao-pagina-conteudo p {
    color: #374151;
}

.ao-card-body {
    flex: 1;
}

/* ============================================================
   Cards
   ============================================================ */
.ao-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.ao-card-sm {
    background-color: #ffffff;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    border: 2px solid var(--ao-cor-principal, var(--ao-teal));
}

.ao-card-title {
    font-weight: 700;
    color: var(--ao-navy, #223555);
    margin-bottom: 0.35rem;
}

.ao-card-text {
    font-size: 0.95rem;
    color: #52606d;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.ao-faq-card {
    border-radius: 0.75rem;
    overflow: hidden;
}

.ao-faq-card .card-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.ao-faq-button {
    font-weight: 600;
    color: var(--ao-navy, #223555);
}

.ao-faq-button:hover,
.ao-faq-button:focus {
    color: var(--ao-cor-principal, var(--ao-teal));
    text-decoration: none;
}

/* ============================================================
   Rodapé
   ============================================================ */
.ao-footer {
    background-color: var(--ao-navy, #223555);
    color: #e5e7eb;
}

.ao-footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.ao-footer a,
.ao-footer-link {
    color: var(--ao-light, #7EBEC5);
    text-decoration: none;
}

.ao-footer a:hover,
.ao-footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.ao-footer-tech {
    font-size: 0.85rem;
    color: #9ca3af;
}

.ao-footer-divider {
    border-color: rgba(255, 255, 255, 0.15);
}

.ao-footer-social {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

@media (max-width: 767.98px) {
    .ao-footer-social {
        justify-content: center;
    }
}

.ao-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.ao-social-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    text-decoration: none;
}

/* ============================================================
   Banners Início / Rodapé (blocos de texto por tipo_exibicao)
   ============================================================ */
.ao-banner-inicio--full,
.ao-banner-rodape--full {
    width: 100%;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ao-cor-principal, var(--ao-teal));
}

.ao-banner-inicio-img,
.ao-banner-rodape-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

/* Banner parcial: imagem de fundo em coluna (não absolute) */
.ao-banner-inicio-img--parcial {
    position: relative;
    inset: auto;
    min-height: 200px;
    border-radius: 0;
    opacity: 1;
}

.ao-banner-inicio-conteudo,
.ao-banner-rodape-conteudo {
    position: relative;
    z-index: 1;
    padding: 1rem 2rem;
    /* max-width: 900px; */
    /* margin: 0 auto; */
    color: #ffffff;
}

.ao-banner-inicio-texto,
.ao-banner-rodape-texto {
    color: inherit;
}

.ao-banner-inicio-texto h3 {
    font-weight: bold;
    font-size: 2rem;
}

.ao-banner-inicio-texto p,
.ao-banner-rodape-texto p {
    margin-bottom: 0.5rem;
}

.ao-banner-inicio-link,
.ao-banner-rodape-link {
    color: inherit;
    text-decoration: none;
}

.ao-banner-inicio-link:hover,
.ao-banner-rodape-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

/* CTA dos banners de início: botão com cor por banner (cor_destaque) */
.ao-banner-inicio-cta {
    display: inline-block;
    color: #ffffff !important;
    border: 0 none !important;
    border-radius: 25px;
    font-size: 1.4rem;
    /* font-style: italic !important; */
    font-weight: bolder;
    padding: 0.5rem 1.5rem;
    text-decoration: none !important;
    width: 290px;
    /* place-self: flex-start; */
    text-align: center;
    transition: opacity 0.2s, filter 0.2s;
    text-shadow: 1px 1px 5px #6c757d;
}

.ao-banner-inicio-cta:hover {
    color: #ffffff !important;
    opacity: 0.95;
    filter: brightness(1.05);
}

/* Linha de banners parciais (6+6 ou 4+4+4) */
.ao-banner-inicio--row {
    background-color: var(--ao-cor-principal, var(--ao-teal));
}

.ao-banner-inicio-cell {
    position: relative;
    min-height: 180px;
    border-radius: 0;
    border: 0;
    overflow: hidden;
}

.ao-banner-inicio-cell .ao-banner-inicio-img--parcial {
    position: absolute;
    inset: 0;
    min-height: 0;
}

.ao-banner-inicio-conteudo--cell {
    position: relative;
    z-index: 1;
    padding: 1rem 2rem;
    min-height: 180px;
    align-content: center;
    color: #ffffff;
    width: 100%;
}

.ao-banner-inicio-conteudo--cell .ao-banner-inicio-texto {
    margin-bottom: 0;
    text-shadow: 0.05rem 0.05rem 0rem #ffffff;
}

.vh-25 {
    height: 25vh !important;
}

.vh-50 {
    height: 50vh !important;
}

.vh-30 {
    height: 30vh !important;
}

.vh-35 {
    height: 35vh !important;
}

.vh-40 {
    height: 40vh !important;
}

.vh-100 {
    height: 100vh !important;
}

.place-content-start {
    place-content: flex-start;
}

.place-content-center {
    place-content: center;
}

.place-content-end {
    place-content: flex-end;
}

/* ============================================================
   Balão flutuante do WhatsApp
   ============================================================ */
.whatsapp-bubble {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 1040;
}

.whatsapp-bubble.esquerda {
    right: auto;
    left: 20px;
}

.whatsapp-bubble .btn-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    font-size: 1.8rem;
    line-height: 1;
    outline: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-bubble .btn-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767.98px) {
    .whatsapp-bubble {
        bottom: 30px;
        right: 14px;
    }

    .whatsapp-bubble.esquerda {
        right: auto;
        left: 14px;
    }
}

/* ============================================================
   Loader de página
   ============================================================ */
#ao-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

#ao-loader.ao-loader--hidden {
    opacity: 0;
    pointer-events: none;
}

.ao-loader-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #e2e8f0;
    border-top-color: var(--ao-cor-principal, #223555);
    border-radius: 50%;
    animation: ao-spin 0.75s linear infinite;
}

@keyframes ao-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   Botão Voltar ao Topo
   ============================================================ */
.back-to-top {
    position: fixed;
    display: none;
    bottom: 122px;
    /* acima do balão do WhatsApp (50px base + 60px botão + 12px gap) */
    right: 30px;
    z-index: 1035;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--ao-cor-principal, #223555);
    color: #fff;
    text-align: center;
    line-height: 42px;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover {
    background-color: var(--ao-cor-detalhe, #14B3A9);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.back-to-top.ao-btt--launching {
    animation: ao-btt-launch 0.55s ease-out forwards;
}

@keyframes ao-btt-launch {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    40% {
        transform: translateY(-8px) scale(1.15);
        opacity: 1;
    }

    100% {
        transform: translateY(-4px) scale(1);
        opacity: 0.75;
    }
}

.back-to-top.esquerda {
    right: auto;
    left: 20px;
    bottom: 20px;
    /* quando esquerda, não concorre com o WhatsApp (que fica à direita) */
}

@media (max-width: 767.98px) {
    .back-to-top {
        bottom: 92px;
        /* acima do balão do WhatsApp mobile (30px + 50px + 12px) */
        right: 25px;
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 1rem;
    }

    .back-to-top.esquerda {
        right: auto;
        left: 14px;
        bottom: 16px;
    }
}