/* Perfil /sobre/ — paleta de referência para apps de mensagem */

:root {
    --wa-teal: #008069;
    --wa-teal-hover: #006b58;
    --wa-page: #f0f2f5;
    --wa-card: #ffffff;
    --wa-text: #111b21;
    --wa-muted: #667781;
    --wa-pill-bg: #f0f2f5;
    --wa-footer: #232d3b;
    --wa-footer-muted: rgba(255, 255, 255, 0.72);
    --wa-red: #ea0038;
    /* Pin decorativo sobre mapa (alinhado ao vermelho típico de marcadores) */
    --wa-map-pin: #ea4335;
    --wa-radius: 12px;
    --wa-shadow: 0 1px 3px rgba(11, 20, 26, 0.08), 0 4px 12px rgba(11, 20, 26, 0.06);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.wa-bus-body {
    margin: 0;
    min-height: 100dvh;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.45;
    color: var(--wa-text);
    background: var(--wa-page);
    -webkit-font-smoothing: antialiased;
}

/* Mesma coluna que o rodapé global (includes/footer.php): max-w-7xl + px-4 sm:px-6 lg:px-8 */
.wa-bus-page {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 1rem 2rem;
}

@media (min-width: 640px) {
    .wa-bus-page {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .wa-bus-page {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.wa-noscript {
    margin: 0 0 12px;
    padding: 10px 12px;
    font-size: 0.875rem;
    background: #fff8e6;
    border: 1px solid #e8d4a8;
    border-radius: 8px;
    color: var(--wa-text);
}

.wa-noscript a {
    color: var(--wa-teal);
    font-weight: 600;
}

/* —— Hero —— */
.wa-perfil-hero {
    background: var(--wa-card);
    border-radius: var(--wa-radius);
    box-shadow: var(--wa-shadow);
    overflow: hidden;
    margin-bottom: 12px;
}

/* Sem banners da Sobre: sem carrossel/capa; identidade alinhada ao cartão */
.wa-perfil-hero--no-banner .wa-perfil-identity {
    margin-top: 0;
    padding-top: 16px;
}

@media (min-width: 601px) {
    .wa-perfil-hero--no-banner .wa-perfil-identity-status {
        transform: none;
    }

    .wa-perfil-hero--no-banner .wa-perfil-more-btn--identity-top {
        transform: none;
    }
}

@media (max-width: 600px) {
    .wa-perfil-hero--no-banner .wa-perfil-identity-top {
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .wa-perfil-hero--no-banner .wa-perfil-identity-status {
        display: inline-flex;
        justify-content: flex-end;
        flex-shrink: 0;
        max-width: min(calc(100% - 5.5rem), 260px);
        text-align: right;
    }

    .wa-perfil-hero--no-banner .wa-perfil-more-btn--identity-top {
        transform: none;
        flex-shrink: 0;
    }
}

.wa-perfil-waicon {
    display: block;
}

.wa-perfil-waicon--lg {
    opacity: 0.9;
}

.wa-perfil-cover-wrap {
    position: relative;
    padding: 16px 16px 0;
}

.wa-perfil-banner-status {
    position: absolute;
    top: 20px;
    right: 22px;
    z-index: 5;
    margin: 0;
    max-width: min(calc(100% - 44px), 240px);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: right;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.94);
    color: var(--wa-muted);
    pointer-events: none;
}

.wa-perfil-banner-status.wa-perfil-status--open {
    color: #0f766e;
}

.wa-perfil-banner-status.wa-perfil-status--closed {
    color: #b91c1c;
}

.wa-perfil-banner-status.wa-perfil-status--muted {
    color: #64748b;
}

@media (min-width: 601px) {
    .wa-perfil-banner-status {
        display: none;
    }
}

.wa-perfil-cover {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.wa-perfil-cover--gradient {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 40%, #25d366 100%);
}

.wa-sobre-hero-carousel {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #0b141a;
}

/* Mesmas proporções do carrossel de banners em personalizado.php (object-cover no <img>) */
.wa-sobre-hero-carousel__viewport {
    overflow: hidden;
    height: auto;
    aspect-ratio: 3 / 2;
}

.wa-sobre-hero-carousel__track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.wa-sobre-hero-carousel__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.wa-sobre-hero-carousel__link {
    display: block;
    width: 100%;
    height: 100%;
}

.wa-sobre-hero-carousel__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-sobre-hero-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #3b4a54;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-sobre-hero-carousel__nav:hover {
    background: #fff;
}

.wa-sobre-hero-carousel__nav--prev {
    left: 10px;
}

.wa-sobre-hero-carousel__nav--next {
    right: 10px;
}

.wa-sobre-hero-carousel__dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 8px;
    align-items: center;
}

.wa-sobre-hero-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.wa-sobre-hero-carousel__dot.is-active {
    width: 22px;
    background: rgba(255, 255, 255, 0.95);
}

@media (min-width: 600px) {
    .wa-perfil-cover {
        height: 220px;
    }
}

@media (min-width: 640px) {
    .wa-sobre-hero-carousel__viewport {
        aspect-ratio: 16 / 6;
    }
}

@media (min-width: 1024px) {
    .wa-sobre-hero-carousel__viewport {
        aspect-ratio: 21 / 7;
    }
}

.wa-perfil-identity {
    position: relative;
    text-align: center;
    padding: 0 16px 12px;
    margin-top: -86px;
}

.wa-perfil-identity-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 2px;
    gap: 8px;
}

.wa-perfil-identity-status {
    display: none;
    margin: 0;
    max-width: min(48%, 260px);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.94);
    color: var(--wa-muted);
    flex-shrink: 1;
    border: none;
    font-family: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s ease, box-shadow 0.15s ease;
    align-items: center;
    gap: 6px;
}

.wa-perfil-identity-status .wa-perfil-identity-status__clock {
    flex-shrink: 0;
    opacity: 1;
    color: currentColor;
}

.wa-perfil-identity-status__label {
    min-width: 0;
}

.wa-perfil-identity-status:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.wa-perfil-identity-status:focus {
    outline: none;
}

.wa-perfil-identity-status:focus-visible {
    outline: 2px solid var(--wa-teal);
    outline-offset: 2px;
}

.wa-perfil-identity-status.wa-perfil-status--open {
    color: #0f766e;
}

.wa-perfil-identity-status.wa-perfil-status--closed {
    color: #b91c1c;
}

.wa-perfil-identity-status.wa-perfil-status--muted {
    color: #64748b;
}

@media (min-width: 601px) {
    .wa-perfil-identity-status {
        display: inline-flex;
        justify-content: flex-end;
        position: relative;
        z-index: 2;
        transform: translateY(100px);
        text-align: right;
    }

    .wa-perfil-identity-top {
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 10px;
    }

    .wa-perfil-more-btn--identity-top {
        transform: translateY(100px);
        flex-shrink: 0;
    }
}

.wa-perfil-more-btn--identity-top {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 5px 10px;
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    border-width: 1px;
    white-space: nowrap;
}

.wa-perfil-more-label--short {
    display: none;
}

.wa-perfil-avatar-ring {
    display: inline-block;
    padding: 4px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    margin-bottom: 2px;
}

.wa-perfil-avatar {
    display: block;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
}

.wa-perfil-avatar--fallback {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: linear-gradient(160deg, #e8f5e9, #c8e6c9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wa-teal);
}

.wa-perfil-text {
    width: 100%;
    padding-top: 0;
    text-align: left;
}

.wa-perfil-titulo-cluster {
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
}

.wa-perfil-titulo {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    max-width: 100%;
}

.wa-perfil-titulo-cluster .wa-perfil-titulo {
    justify-content: center;
}

@media (max-width: 600px) {
    .wa-perfil-banner-status {
        top: 24px;
    }

    .wa-perfil-titulo {
        font-size: 1rem;
        gap: 5px;
    }

    .wa-perfil-verified svg {
        width: 17px;
        height: 17px;
    }

    .wa-perfil-more-label--long {
        display: none;
    }

    .wa-perfil-more-label--short {
        display: inline;
    }

    .wa-perfil-more-btn--identity-top {
        padding: 4px 9px;
        font-size: 0.6875rem;
        transform: translateY(92px);
    }
}

.wa-perfil-verified {
    display: inline-flex;
    vertical-align: middle;
    flex-shrink: 0;
}

.wa-perfil-status {
    margin: 8px 0 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--wa-muted);
}

.wa-perfil-status--open {
    color: var(--wa-teal);
}

.wa-perfil-status--closed {
    color: var(--wa-red);
}

.wa-perfil-status--muted {
    color: var(--wa-muted);
}

.wa-perfil-banner-status.wa-perfil-status {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.wa-perfil-identity-status.wa-perfil-status {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.wa-perfil-loc {
    margin: 6px 0 0;
    font-size: 0.875rem;
    color: var(--wa-muted);
}

.wa-perfil-redes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
}

.wa-perfil-redes__btn {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.12), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.wa-perfil-redes__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.18);
}

.wa-perfil-redes__btn--whatsapp {
    background: #16a34a;
}

.wa-perfil-redes__btn--whatsapp:hover {
    background: #15803d;
}

.wa-perfil-redes__btn--instagram {
    background: linear-gradient(135deg, #9333ea 0%, #db2777 100%);
}

.wa-perfil-redes__btn--instagram:hover {
    filter: brightness(1.08);
}

.wa-perfil-redes__btn--youtube {
    background: #dc2626;
}

.wa-perfil-redes__btn--youtube:hover {
    background: #b91c1c;
}

.wa-perfil-redes__btn--tiktok {
    background: #0f172a;
}

.wa-perfil-redes__btn--tiktok:hover {
    background: #1e293b;
}

.wa-perfil-redes__icon {
    display: block;
    flex-shrink: 0;
}

.wa-perfil-redes__fallback {
    font-size: 1.125rem;
    line-height: 1;
}

.wa-perfil-cta {
    display: block;
    margin-top: 18px;
    padding: 14px 20px;
    border-radius: 8px;
    background: var(--wa-teal);
    color: #fff !important;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: background 0.15s ease;
}

.wa-perfil-cta:hover {
    background: var(--wa-teal-hover);
}

.wa-perfil-cta--disabled {
    background: #8696a0;
    cursor: not-allowed;
}

.wa-perfil-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid #d1d7db;
    border-radius: 10px;
    background: var(--wa-card);
    color: var(--wa-teal);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.wa-perfil-more-btn:hover {
    background: #f0f2f5;
    border-color: var(--wa-teal);
}

/* —— Duas colunas —— */
.wa-perfil-grid2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

@media (min-width: 860px) {
    .wa-perfil-grid2 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /** Catálogos + campanha à esquerda; «Sobre a empresa» à direita (referência listing). */
    .wa-perfil-grid2--empresa-layout {
        grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
        align-items: start;
    }
}

/** Mobile: «Sobre a empresa» primeiro, depois catálogos (desktop mantém ordem do DOM). */
@media (max-width: 859px) {
    .wa-perfil-grid2--empresa-layout .wa-card--empresa-aside {
        order: 1;
    }

    .wa-perfil-grid2--empresa-layout .wa-card--catalogo {
        order: 2;
    }
}

.wa-perfil-grid2__span-full {
    grid-column: 1 / -1;
}

/* —— Tabs Empresa | Avaliações (nível da página: Empresa = perfil+catálogos; Avaliações = só reviews) —— */
.wa-listing-page {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/** Separadores Empresa | Avaliações no rodapé do cartão do hero (mesmo bloco visual). */
.wa-listing-tabs-in-hero {
    margin-top: 2px;
    border-top: 1px solid #e9edef;
    overflow: hidden;
    border-radius: 0 0 var(--wa-radius) var(--wa-radius);
}

.wa-listing-tabs-in-hero .wa-listing-tabs {
    border-bottom: none;
}

.wa-listing-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    border-bottom: 1px solid #e9edef;
    background: #fafafa;
}

.wa-listing-tabs__item {
    flex: 1;
    min-width: 0;
    margin: 0;
}

.wa-listing-tabs__toggle {
    width: 100%;
    margin: 0;
    padding: 14px 12px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--wa-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.wa-listing-tabs__item.is-active .wa-listing-tabs__toggle {
    color: var(--wa-text);
    border-bottom-color: var(--wa-teal);
    background: var(--wa-card);
}

.wa-listing-tabs__toggle:hover {
    color: var(--wa-text);
    background: rgba(0, 128, 105, 0.06);
}

.wa-listing-tabs__counter {
    margin-left: 2px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--wa-teal);
    color: #fff;
    line-height: 1.2;
}

.wa-listing-panel--empresa {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wa-listing-panel[hidden] {
    display: none !important;
}

.wa-sobre-desc--empty {
    margin: 12px 0 0;
    font-size: 0.85rem;
    color: var(--wa-muted);
}

/* Coluna «Sobre a empresa» */
.wa-card--empresa-aside .wa-sobre-desc--excerpt {
    color: var(--wa-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0 0 4px;
}

.wa-sobre-video--empresa-aside {
    margin-top: 16px;
}

.wa-card {
    background: var(--wa-card);
    border-radius: var(--wa-radius);
    box-shadow: var(--wa-shadow);
    padding: 16px 16px 18px;
}

.wa-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.wa-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--wa-text);
}

.wa-card__title--solo {
    margin-bottom: 12px;
}

.wa-ico {
    flex-shrink: 0;
    display: block;
    color: inherit;
    opacity: 0.92;
}

.wa-card__title--with-ico,
.wa-card__subtitle--with-ico {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
}

.wa-card__subtitle {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--wa-text);
}

.wa-card__campanha-block {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e9edef;
}

.wa-card__head--campanha {
    margin-bottom: 12px;
}

.wa-card__link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--wa-teal);
    text-decoration: none;
    white-space: nowrap;
}

.wa-card__link:hover {
    text-decoration: underline;
}

.wa-catalogo-empty {
    margin: 0;
    padding: 14px 12px;
    font-size: 0.875rem;
    color: var(--wa-muted);
    text-align: center;
    line-height: 1.45;
}

.wa-catalogo-empty a {
    color: #027eb5;
    text-decoration: none;
}

.wa-catalogo-empty a:hover {
    text-decoration: underline;
}

.wa-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wa-campanha-countdown-wrap {
    margin: 0 0 14px;
    padding: 14px 12px;
    text-align: center;
    background: #171717;
    color: #fff;
    border-radius: 12px;
    border: 1px solid #262626;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wa-campanha-countdown {
    margin: 0;
    font-size: clamp(1.15rem, 4vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

.wa-card__campanha-block .wa-cat-cell__cap--campanha {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 8px 6px 6px;
    text-transform: none;
    letter-spacing: 0;
}

.wa-card__campanha-block .wa-cat-cell__cap-name {
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.wa-card__campanha-block .wa-cat-cell__cap-preco {
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.2;
}

.wa-card__campanha-block .wa-cat-cell__preco-de {
    text-decoration: line-through;
    opacity: 0.85;
    margin-right: 6px;
    font-weight: 500;
}

.wa-card__campanha-block .wa-cat-cell__preco-por {
    color: #b9f6ca;
    font-weight: 700;
}

.wa-camp-produtos__pages .wa-camp-page:not(.is-active) {
    display: none !important;
}

.wa-camp-produtos__pages .wa-camp-page.is-active {
    display: grid;
}

.wa-camp-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
    padding: 4px 2px 0;
}

.wa-camp-pager__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #d1d7db;
    border-radius: 50%;
    background: #fff;
    color: var(--wa-text);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.wa-camp-pager__btn:hover:not(:disabled) {
    background: #f0f2f5;
    border-color: #b8c3c9;
}

.wa-camp-pager__btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.wa-camp-pager__status {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--wa-muted);
    font-variant-numeric: tabular-nums;
    min-width: 3.5rem;
    text-align: center;
}

.wa-catalogo-lista-pager__pages .wa-catalogo-grid-page:not(.is-active) {
    display: none !important;
}

.wa-catalogo-lista-pager__pages .wa-catalogo-grid-page.is-active {
    display: grid;
}

.wa-catalogo-grid-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
    padding: 4px 2px 0;
}

.wa-catalogo-grid-pager__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #d1d7db;
    border-radius: 50%;
    background: #fff;
    color: var(--wa-text);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.wa-catalogo-grid-pager__btn:hover:not(:disabled) {
    background: #f0f2f5;
    border-color: #b8c3c9;
}

.wa-catalogo-grid-pager__btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.wa-catalogo-grid-pager__status {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--wa-muted);
    font-variant-numeric: tabular-nums;
    min-width: 3.5rem;
    text-align: center;
}

/* Grelha 3 colunas; campanha: 6 por página (2 linhas) com paginação no cliente (.wa-camp-page) */
.wa-catalogo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.wa-cat-cell {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #dfe5e7;
}

.wa-cat-cell__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.wa-cat-cell:hover .wa-cat-cell__img {
    transform: scale(1.03);
}

.wa-cat-cell__ph {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #ece5dd, #d1d7db);
}

.wa-cat-cell--empty .wa-cat-cell__cap {
    font-size: 0.65rem;
}

/* Produtos reais: só a foto; nome no title do link e no alt da imagem */
.wa-card--catalogo .wa-cat-cell:not(.wa-cat-cell--empty) .wa-cat-cell__cap {
    display: none;
}

.wa-cat-cell__cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 6px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
    text-align: center;
}

/* Coluna sobre */
.wa-sobre-body {
    font-size: 0.9375rem;
    color: var(--wa-text);
}

.wa-sobre-desc {
    margin: 0 0 16px;
    color: var(--wa-muted);
    line-height: 1.55;
}

.wa-sobre-desc--excerpt {
    margin-bottom: 8px;
}

.wa-sobre-desc-more {
    margin: 0 0 14px;
}

.wa-sobre-link-btn {
    padding: 0;
    border: none;
    background: none;
    color: var(--wa-teal);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.wa-sobre-link-btn:hover {
    color: var(--wa-teal-hover);
}

.wa-sobre-video {
    margin: 0 0 18px;
    border-radius: 12px;
    overflow: hidden;
    background: #0f0f0f;
    border: 1px solid #e9edef;
}

.wa-sobre-video__inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(56vh, 360px);
}

.wa-sobre-video__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.wa-hours {
    border-top: 1px solid #e9edef;
    border-bottom: 1px solid #e9edef;
    margin: 0 0 16px;
}

.wa-hours__sum {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    cursor: pointer;
    list-style: none;
    font-size: 0.9375rem;
}

.wa-hours__sum::-webkit-details-marker {
    display: none;
}

.wa-hours__sum-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.wa-hours__sum-chev {
    flex-shrink: 0;
    color: #8696a0;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.wa-hours[open] .wa-hours__sum-chev {
    transform: rotate(180deg);
}

.wa-hours__day {
    font-weight: 600;
    color: var(--wa-text);
}

.wa-hours__state {
    color: var(--wa-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.wa-hours-grade {
    margin-top: 4px;
    border: 1px solid #e9edef;
    border-radius: 10px;
    overflow: hidden;
    background: #fafcfb;
}

.wa-hours-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 14px;
    border-bottom: 1px solid #e9edef;
    font-size: 0.9375rem;
}

.wa-hours-row:last-child {
    border-bottom: none;
}

.wa-hours-row__day {
    font-weight: 500;
    color: var(--wa-text);
}

.wa-hours-row__val {
    font-size: 0.875rem;
    text-align: right;
    white-space: nowrap;
}

.wa-hours-row__val--closed {
    color: #8696a0;
}

.wa-hours-row__val--open {
    color: var(--wa-text);
    font-weight: 500;
}

.wa-hours__note {
    margin: 10px 0 0;
    font-size: 0.75rem;
    color: var(--wa-muted);
    font-style: italic;
}

.wa-hours__wa-cta {
    margin: 14px 0 0;
}

.wa-hours__wa-btn.wa-info-modal__pill {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.wa-map {
    border-radius: 8px;
    overflow: hidden;
    height: 140px;
    background: #d1d7db;
    margin-bottom: 10px;
}

.wa-map--embed {
    height: 180px;
    background: #b8c2c7;
}

a.wa-map--linkout {
    display: block;
    min-height: 140px;
    text-decoration: none;
    color: inherit;
}

a.wa-map--linkout:hover .wa-map__linkout-label {
    text-decoration: underline;
}

.wa-map__inner--linkout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    width: 100%;
    box-sizing: border-box;
}

.wa-map__linkout-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #027eb5;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.wa-map__inner {
    height: 100%;
    background:
        radial-gradient(circle at 50% 45%, rgba(0, 128, 105, 0.35) 0%, transparent 45%),
        linear-gradient(180deg, #e2e8eb 0%, #cfd7da 100%);
    position: relative;
}

.wa-map__inner--embed {
    overflow: hidden;
    background: #e2e8eb;
}

.wa-map__inner--embed::after,
.wa-map__inner--linkout::after {
    content: none;
    display: none;
}

.wa-map__iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Recorta a barra inferior do iframe (links “Reportar…”, atalhos, etc.) — o conteúdo é de terceiros. */
.wa-map__inner--embed .wa-map__iframe {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: calc(100% + 58px);
    max-width: none;
}

/* Marcador (igual ao pin antigo em ::after), por cima do iframe ou do fundo “linkout” */
.wa-map__pin {
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 42%;
    z-index: 2;
    width: 22px;
    height: 22px;
    margin: -18px 0 0 -11px;
    background: var(--wa-map-pin);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.wa-map__inner--linkout .wa-map__linkout-label {
    position: relative;
    z-index: 1;
    margin-top: 22px;
}

.wa-map-link-wrap {
    margin: -4px 0 14px;
}

.wa-map-link {
    font-size: 0.875rem;
    color: #027eb5;
    text-decoration: none;
}

.wa-map-link:hover {
    text-decoration: underline;
}

.wa-map__inner::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 42%;
    width: 22px;
    height: 22px;
    margin: -18px 0 0 -11px;
    background: var(--wa-map-pin);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.wa-address {
    margin: 0 0 14px;
    font-size: 0.875rem;
    color: var(--wa-muted);
}

.wa-links {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.wa-links li {
    margin-bottom: 8px;
}

.wa-links a {
    color: #027eb5;
    text-decoration: none;
    font-size: 0.9375rem;
}

.wa-links a:hover {
    text-decoration: underline;
}

.wa-ig-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--wa-pill-bg);
    border-radius: 10px;
    text-decoration: none;
    color: var(--wa-text);
    transition: background 0.15s ease;
}

.wa-ig-card:hover {
    background: #e6e8eb;
}

.wa-ig-card__icon {
    color: #e1306c;
    flex-shrink: 0;
}

.wa-ig-card__txt {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.8125rem;
    color: var(--wa-muted);
}

.wa-ig-card__txt strong {
    font-size: 0.9375rem;
    color: var(--wa-text);
}

.wa-ig-card--catalog {
    margin: 0 0 12px;
}

.wa-ig-card--catalog .wa-ig-card__icon {
    color: var(--wa-teal);
}

/* Rodapé escuro */
.wa-bus-footer {
    background: var(--wa-footer);
    color: var(--wa-footer-muted);
    padding: 18px 20px 22px;
    margin-top: 0;
}

.wa-bus-footer__row {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    font-size: 0.8125rem;
}

.wa-bus-footer__host {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wa-bus-footer__wmini {
    opacity: 0.85;
    flex-shrink: 0;
}

.wa-bus-footer__copy {
    flex: 1 1 auto;
    text-align: center;
    min-width: 0;
}

@media (max-width: 640px) {
    .wa-bus-footer__copy {
        order: 3;
        flex-basis: 100%;
        text-align: left;
    }
}

.wa-bus-footer__legal {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.wa-bus-footer__legal:hover {
    text-decoration: underline;
}

/* Envolve modal + vitrine; não altera o layout flex do host */
.wa-pmodal-card-article {
    display: contents;
}

/* Modal produto (resumo estilo vitrine) — sempre centrado na viewport */
.wa-produto-modal-host {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(12px, env(safe-area-inset-top, 0px)) 12px max(12px, calc(12px + env(safe-area-inset-bottom, 0px))) 12px;
}

.wa-produto-modal-host[hidden] {
    display: none !important;
}

@media (max-width: 479px) {
    .wa-pmodal__body {
        padding: 14px 16px 22px;
    }
}

body.wa-produto-modal-open {
    overflow: hidden;
}

.wa-pmodal {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: min(92vh, 720px);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.wa-pmodal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.wa-pmodal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    background: var(--wa-card);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22), 0 0 1px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: min(88vh, 680px);
}

@media (min-width: 480px) {
    .wa-produto-modal-host {
        padding: max(20px, env(safe-area-inset-top, 0px)) 20px max(20px, calc(12px + env(safe-area-inset-bottom, 0px))) 20px;
    }

    .wa-pmodal__dialog {
        max-height: min(90vh, 680px);
    }
}

.wa-pmodal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 50;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--wa-text);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.wa-pmodal__close:hover {
    background: #fff;
}

.wa-pmodal__media {
    position: relative;
    z-index: 0;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, #f0f2f5, #e2e8eb);
    overflow: hidden;
}

/* Telemóvel: faixa da foto mais baixa para caber título/preço/ações sem tanto scroll. */
@media (max-width: 639px) {
    .wa-pmodal__media {
        aspect-ratio: 16 / 9;
        max-height: min(36vh, 240px);
    }
}

.wa-pmodal__video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.wa-pmodal__video-clickblock {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
}

.wa-pmodal__btn--video-fechar {
    background-color: #dc2626 !important;
    color: #fff !important;
}

.wa-pmodal__btn--video-fechar:hover {
    background-color: #b91c1c !important;
    color: #fff !important;
}

/* Base: igual ao personalizado — cover/contain via modificadores (evita depender de Tailwind em className via JS). */
.wa-pmodal__img {
    width: 100%;
    height: 100%;
    display: block;
    box-sizing: border-box;
}

.wa-pmodal__img--cover {
    object-fit: cover;
    padding: 0;
}

/* object-contain + p-4 do card personalizado */
.wa-pmodal__img--contain {
    object-fit: contain;
    padding: 1rem;
}

.wa-pmodal__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #fff;
}

.wa-pmodal__badge--esgotado {
    background: #dc2626;
}

.wa-pmodal__body {
    padding: 14px 16px 18px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.wa-pmodal__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.wa-pmodal__chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
}

.wa-pmodal__chip--lanc {
    background: #16a34a;
}

.wa-pmodal__chip--promo {
    background: #111b21;
}

.wa-pmodal__title-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}

.wa-pmodal__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--wa-text);
    line-height: 1.25;
    flex: 1;
    min-width: 0;
}

.wa-pmodal__meta {
    flex-shrink: 0;
    text-align: right;
    font-size: 0.6875rem;
    color: var(--wa-muted);
}

.wa-pmodal__cond {
    display: block;
    font-weight: 600;
}

.wa-pmodal__bat {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
    font-size: 0.6875rem;
}

.wa-pmodal__cor {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 0.8125rem;
    color: var(--wa-text);
}

.wa-pmodal__cor-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.wa-pmodal__car-list {
    margin: 0 0 10px;
    padding: 0 0 0 16px;
    font-size: 0.8125rem;
    color: var(--wa-muted);
    line-height: 1.45;
}

.wa-pmodal__variante {
    margin: 0 0 8px;
    font-size: 0.8125rem;
    color: var(--wa-muted);
    line-height: 1.4;
}

.wa-pmodal__obs {
    margin: 0 0 10px;
    font-size: 0.8125rem;
    color: var(--wa-muted);
    line-height: 1.45;
}

.wa-pmodal__preco {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.wa-pmodal__preco-old {
    font-size: 0.8125rem;
    color: #8696a0;
    text-decoration: line-through;
}

.wa-pmodal__preco-now {
    font-size: 1.25rem;
    font-weight: 800;
    color: #16a34a;
}

.wa-pmodal__preco-consulte {
    margin: 0;
    font-size: 0.875rem;
    color: var(--wa-muted);
}

.wa-pmodal__parcelas {
    margin: 0 0 12px;
    font-size: 0.8125rem;
    color: var(--wa-text);
}

.wa-pmodal__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

/* Rodapé do modal: vídeo (esq.) + WhatsApp — como personalizado.php */
.wa-pmodal__actions--personalizado {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    gap: 8px;
}

.wa-pmodal__actions--personalizado .wa-pmodal__btn--video,
.wa-pmodal__actions--personalizado .wa-pmodal__btn--wa,
.wa-pmodal__actions--personalizado .wa-pmodal__btn--esgotado {
    flex: 1 1 0;
    min-width: 7rem;
    font-size: 0.8125rem;
    padding: 10px 12px;
}

.wa-pmodal__btn--video--muted {
    opacity: 0.55;
}

.wa-pmodal__btn--esgotado {
    background: #9ca3af;
    color: #fff;
    cursor: default;
    text-align: center;
}

.wa-pmodal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 0;
    cursor: pointer;
}

.wa-pmodal__btn--wa {
    background: #25d366;
    color: #fff;
}

.wa-pmodal__btn--wa:hover {
    background: #1ebe5a;
    color: #fff;
}

.wa-pmodal__btn--sec {
    background: var(--wa-pill-bg);
    color: #027eb5;
}

.wa-pmodal__btn--sec:hover {
    background: #e6e8eb;
}

.wa-pmodal-error {
    margin: 0;
    padding: 16px;
    font-size: 0.875rem;
    color: #b91c1c;
    text-align: center;
}

.wa-cat-cell--modal,
.wa-cat-cell--preview {
    cursor: pointer;
}

.wa-pmodal__body--cat-preview {
    text-align: center;
    padding: 16px 16px 20px;
}

.wa-catalog-preview-title {
    margin: 0 0 14px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--wa-text);
    line-height: 1.3;
}

.wa-pmodal--cat-preview .wa-cat-preview-desc {
    text-align: center;
    white-space: pre-line;
    max-width: 100%;
}

.wa-pmodal--cat-preview .wa-cat-preview-desc:not([hidden]) {
    margin-top: -6px;
    margin-bottom: 12px;
}

.wa-pmodal--cat-preview .wa-pmodal__btn--sec {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-decoration: none;
    box-sizing: border-box;
}

/* —— Modal «Mais informações» (Sobre | Horário) —— */
body.wa-info-modal-open {
    overflow: hidden;
}

.wa-info-modal {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(12px, env(safe-area-inset-top, 0px)) 12px max(12px, calc(12px + env(safe-area-inset-bottom, 0px))) 12px;
}

.wa-info-modal[hidden] {
    display: none !important;
}

@media (max-width: 599px) {
    .wa-info-modal__body {
        padding: 16px 18px 28px;
    }
}

@media (min-width: 600px) {
    .wa-info-modal {
        padding: max(24px, env(safe-area-inset-top, 0px)) 24px max(24px, calc(12px + env(safe-area-inset-bottom, 0px))) 24px;
    }
}

.wa-info-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 27, 33, 0.48);
    cursor: pointer;
}

.wa-info-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 520px;
    max-height: min(92dvh, 720px);
    background: var(--wa-card);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(11, 20, 26, 0.22), 0 0 1px rgba(11, 20, 26, 0.08);
    outline: none;
}

@media (min-width: 600px) {
    .wa-info-modal__dialog {
        max-height: min(88dvh, 680px);
    }
}

.wa-info-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e9edef;
    flex-shrink: 0;
}

.wa-info-modal__title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--wa-text);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wa-info-modal__close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: var(--wa-pill-bg);
    color: var(--wa-muted);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.wa-info-modal__close:hover {
    background: #e9edef;
    color: var(--wa-text);
}

.wa-info-modal__tabs {
    display: flex;
    border-bottom: 1px solid #e9edef;
    flex-shrink: 0;
}

.wa-info-modal__tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 10px;
    border: none;
    background: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--wa-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.15s ease;
}

.wa-info-modal__tab:hover {
    color: var(--wa-text);
}

.wa-info-modal__tab.is-active {
    color: var(--wa-teal);
}

.wa-info-modal__tab.is-active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--wa-teal);
}

.wa-info-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 18px 20px;
    -webkit-overflow-scrolling: touch;
}

.thin-scrollbar {
    scrollbar-width: thin;
}

.wa-info-modal__sobre-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

@media (min-width: 480px) {
    .wa-info-modal__sobre-top {
        flex-direction: row;
        align-items: flex-start;
    }
}

.wa-info-modal__logo-wrap {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f2f5;
    border: 1px solid #e9edef;
}

.wa-info-modal__logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-info-modal__sobre-text {
    flex: 1;
    min-width: 0;
}

.wa-info-modal__desc--full {
    margin: 0;
    color: var(--wa-text);
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
}

.wa-info-modal__social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-top: 14px;
}

.wa-info-modal__social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wa-teal);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
}

.wa-info-modal__social:hover {
    text-decoration: underline;
}

.wa-info-modal__social-icon {
    flex-shrink: 0;
    display: block;
}

.wa-info-modal__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0 6px;
}

.wa-info-modal__cards .wa-ig-card--catalog {
    margin-bottom: 0;
}

.wa-info-modal__h3 {
    margin: 20px 0 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--wa-text);
}

.wa-info-modal__h3:first-of-type {
    margin-top: 8px;
}

.wa-info-modal__contato {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wa-info-modal__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #d1d7db;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--wa-text);
    transition: background 0.15s ease, border-color 0.15s ease;
}

.wa-info-modal__pill:hover {
    background: #f0f2f5;
    border-color: var(--wa-teal);
}

.wa-info-modal__pill--wa {
    color: #15803d;
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.wa-info-modal__pill--wa:hover {
    background: #dcfce7;
}

.wa-info-modal__pill-icon {
    flex-shrink: 0;
    display: block;
}

.wa-info-modal__address {
    margin: 0 0 12px;
    color: var(--wa-text);
    line-height: 1.5;
    font-size: 0.9375rem;
}

.wa-info-modal__map {
    margin-bottom: 10px;
}

.wa-info-modal__map.wa-map {
    height: 180px;
}

.wa-info-modal__map-link-wrap {
    margin: 0;
    font-size: 0.875rem;
}

.wa-info-modal__horario-status {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--wa-pill-bg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wa-teal);
}

.wa-hours-grade--modal {
    margin-top: 0;
}

/* —— Avaliações (modal) —— */
.wa-info-modal__tab-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 7px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--wa-teal);
    color: #fff;
    vertical-align: middle;
}

.wa-av-flash {
    margin: 0 0 14px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
}

.wa-av-flash--ok {
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.wa-av-flash--err {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.wa-av-resumo {
    margin: 0 0 12px;
    font-size: 0.875rem;
    color: var(--wa-muted);
    font-weight: 600;
}

.wa-av-lead {
    margin: 0 0 12px;
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--wa-muted);
}

.wa-av-cta-wrap {
    margin: 0 0 18px;
}

.wa-av-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--wa-teal);
    color: #fff !important;
    text-decoration: none;
    transition: background 0.15s ease;
}

.wa-av-cta-link:hover {
    background: var(--wa-teal-hover);
}

/* —— Aba Avaliações na Sobre: vitrine só leitura —— */
.wa-card.wa-card--avaliacoes.wa-av-showcase {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 128, 105, 0.12);
    box-shadow: 0 1px 2px rgba(11, 20, 26, 0.06), 0 8px 28px rgba(0, 128, 105, 0.07);
}

.wa-card.wa-card--avaliacoes.wa-av-showcase::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wa-teal), #34d399, var(--wa-teal));
    opacity: 0.85;
    pointer-events: none;
}

.wa-av-showcase__header {
    margin-bottom: 4px;
}

.wa-av-showcase__header .wa-card__title--solo.wa-av-showcase__heading {
    margin-bottom: 0;
}

.wa-av-lista--showcase.wa-av-lista--full {
    max-height: min(58vh, 520px);
    margin-top: 18px;
    padding-right: 4px;
}

.wa-av-items--showcase {
    gap: 16px;
}

.wa-av-item--showcase {
    padding: 0;
    background: #fff;
    border: 1px solid rgba(17, 27, 33, 0.08);
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(11, 20, 26, 0.05);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}

.wa-av-item--showcase:hover {
    border-color: rgba(0, 128, 105, 0.22);
    box-shadow: 0 4px 18px rgba(11, 20, 26, 0.08);
    transform: translateY(-1px);
}

.wa-av-item--showcase .wa-av-item__row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
}

.wa-av-item__avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    background: hsl(var(--wa-av-m, 168), 52%, 92%);
    color: hsl(var(--wa-av-m, 168), 45%, 30%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.wa-av-item__avatar--foto {
    padding: 0;
    overflow: hidden;
    background: #e8ecf0;
    box-shadow: inset 0 0 0 1px rgba(17, 27, 33, 0.08);
}

.wa-av-item__avatar--foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wa-av-item--showcase .wa-av-item__body {
    flex: 1;
    min-width: 0;
}

.wa-av-item--showcase .wa-av-item__head {
    margin-bottom: 2px;
}

.wa-av-item--showcase .wa-av-item__nome {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.wa-av-item--showcase .wa-av-item__data {
    margin-bottom: 10px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.wa-av-item--showcase .wa-av-item__texto {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #1a2429;
}

.wa-av-item__foto-produto-stage {
    padding: 10px 16px 14px;
    border-top: 1px solid rgba(17, 27, 33, 0.06);
    background: rgba(248, 250, 251, 0.65);
}

.wa-av-item__foto-produto {
    margin: 0;
    max-width: min(220px, 88%);
}

.wa-av-item__foto-produto-frame {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(17, 27, 33, 0.1);
    box-shadow: 0 1px 2px rgba(11, 20, 26, 0.05);
    background: #f1f5f4;
}

.wa-av-item__foto-produto-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    vertical-align: middle;
}

@media (min-width: 720px) {
    .wa-av-item--showcase--foto-produto {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .wa-av-item--showcase--foto-produto .wa-av-item__row {
        flex: 1 1 0;
        min-width: 0;
        padding: 16px 12px 16px 18px;
    }

    .wa-av-item--showcase--foto-produto .wa-av-item__foto-produto-stage {
        flex: 0 0 clamp(140px, 28vw, 200px);
        width: clamp(140px, 28vw, 200px);
        max-width: 40%;
        margin: 0;
        padding: 14px 16px;
        border-top: none;
        border-left: 1px solid rgba(17, 27, 33, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: stretch;
        box-sizing: border-box;
    }

    .wa-av-item--showcase--foto-produto .wa-av-item__foto-produto {
        max-width: 100%;
        width: 100%;
    }
}

.wa-av-empty--showcase {
    margin: 12px 0 8px;
    padding: 36px 24px 40px;
    text-align: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fafb 0%, #f0f4f4 100%);
    border: 1px dashed rgba(0, 128, 105, 0.22);
}

.wa-av-empty__glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--wa-teal);
    background: rgba(0, 128, 105, 0.1);
    box-shadow: 0 2px 8px rgba(0, 128, 105, 0.12);
}

.wa-av-empty__title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--wa-text);
}

.wa-av-empty__hint {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--wa-muted);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.wa-av-lista--full {
    max-height: min(56vh, 480px);
    overflow-y: auto;
}

.wa-av-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}

@media (min-width: 720px) {
    .wa-av-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
    }

    .wa-av-lista {
        flex: 1;
        min-width: 0;
        max-height: min(52vh, 420px);
        overflow-y: auto;
    }

    .wa-av-form-wrap {
        flex: 0 0 280px;
        max-width: 100%;
    }
}

.wa-av-empty {
    margin: 0;
    font-size: 0.9rem;
    color: var(--wa-muted);
}

.wa-av-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wa-av-item {
    padding: 12px 14px;
    border-radius: var(--wa-radius);
    background: var(--wa-pill-bg);
    border: 1px solid rgba(17, 27, 33, 0.06);
}

.wa-av-item__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 4px;
}

.wa-av-item__nome {
    font-size: 0.9375rem;
}

.wa-av-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: 0;
}

.wa-av-star--full {
    color: #ca8a04;
}

.wa-av-star--half {
    background: linear-gradient(90deg, #ca8a04 50%, #d1d5db 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wa-av-star--empty {
    color: #d1d5db;
}

.wa-av-item__data {
    display: block;
    font-size: 0.75rem;
    color: var(--wa-muted);
    margin-bottom: 8px;
}

.wa-av-item__texto {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: var(--wa-text);
}

.wa-av-form__title {
    margin: 0 0 6px;
    font-size: 1rem;
}

.wa-av-form__hint {
    margin: 0 0 12px;
    font-size: 0.8rem;
    color: var(--wa-muted);
    line-height: 1.4;
}

.wa-av-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.wa-av-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-av-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wa-muted);
}

.wa-av-req {
    color: var(--wa-red);
}

.wa-av-input,
.wa-av-textarea {
    font: inherit;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d1d7db;
    background: #fff;
    color: var(--wa-text);
}

.wa-av-textarea {
    resize: vertical;
    min-height: 96px;
}

.wa-av-submit {
    margin-top: 4px;
    padding: 11px 16px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--wa-teal);
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease;
}

.wa-av-submit:hover {
    background: var(--wa-teal-hover);
}
