﻿/* *********************************** Base */

.bv-est-info {
    display: grid;
    gap: 14px;
    color: var(--est-text, #202124);
}

    .bv-est-info,
    .bv-est-info * {
        box-sizing: border-box;
    }

.bv-est-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bv-est-info-card {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--est-border, #e5e8ee);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 7px 24px rgba(22, 30, 48, .045);
}

.bv-est-info-card--wide {
    grid-column: 1 / -1;
}

/* *********************************** Títulos */

.bv-est-info-section-header {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    margin-bottom: 16px;
}

.bv-est-info-section-header__icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--est-primary-soft, rgba(255, 46, 147, .11));
    color: var(--est-primary-dark, #d91f78);
    font-size: 1rem;
}

.bv-est-info-section-header span,
.bv-est-info-section-header h3 {
    display: block;
    margin: 0;
}

.bv-est-info-section-header > div:last-child > span {
    color: var(--est-primary-dark, #d91f78);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.bv-est-info-section-header h3 {
    margin-top: 3px;
    color: var(--est-text, #202124);
    font-size: .98rem;
    line-height: 1.25;
    font-weight: 950;
}

/* *********************************** Galeria */

.bv-est-info-gallery {
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--est-border, #e5e8ee);
    border-radius: 26px;
    background: #fff;
}

.bv-est-info-gallery__track {
    display: grid;
    grid-template-columns: 1.65fr 1fr 1fr;
    grid-template-rows: repeat(2, 145px);
    gap: 8px;
}

.bv-est-info-gallery__item {
    position: relative;
    min-width: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #edf0f4;
    cursor: zoom-in;
}

    .bv-est-info-gallery__item:first-child {
        grid-row: 1 / 3;
    }

    .bv-est-info-gallery__item img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 280ms ease;
    }

    .bv-est-info-gallery__item:hover img {
        transform: scale(1.035);
    }

.bv-est-info-gallery__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(10, 15, 28, .24));
    pointer-events: none;
}

.bv-est-info-gallery__zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 12px;
    background: rgba(17, 24, 39, .54);
    color: #fff;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(9px);
}

.bv-est-info-gallery__item:hover .bv-est-info-gallery__zoom,
.bv-est-info-gallery__item:focus-visible .bv-est-info-gallery__zoom {
    opacity: 1;
    transform: translateY(0);
}

.bv-est-info-gallery.has-1 .bv-est-info-gallery__track {
    grid-template-columns: 1fr;
    grid-template-rows: 340px;
}

.bv-est-info-gallery.has-1 .bv-est-info-gallery__item:first-child {
    grid-row: auto;
}

.bv-est-info-gallery.has-2 .bv-est-info-gallery__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 300px;
}

.bv-est-info-gallery.has-2 .bv-est-info-gallery__item:first-child {
    grid-row: auto;
}

.bv-est-info-gallery.has-3 .bv-est-info-gallery__track {
    grid-template-columns: 1.55fr 1fr;
    grid-template-rows: repeat(2, 145px);
}

.bv-est-info-gallery.has-4 .bv-est-info-gallery__track {
    grid-template-columns: 1.55fr repeat(2, 1fr);
}

.bv-est-info-gallery__footer {
    display: none;
}

/* *********************************** Ações rápidas */

.bv-est-info-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
    gap: 9px;
}

.bv-est-info-action {
    min-height: 68px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid var(--est-border, #e5e8ee);
    border-radius: 19px;
    background: #fff;
    color: var(--est-text, #202124);
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(22, 30, 48, .04);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

    .bv-est-info-action:hover {
        color: var(--est-text, #202124);
        border-color: rgba(255, 46, 147, .28);
        box-shadow: 0 10px 24px rgba(22, 30, 48, .08);
        transform: translateY(-2px);
    }

    .bv-est-info-action > span {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border-radius: 14px;
        background: var(--est-primary-soft, rgba(255, 46, 147, .11));
        color: var(--est-primary-dark, #d91f78);
    }

    .bv-est-info-action strong {
        font-size: .76rem;
        font-weight: 900;
    }

    .bv-est-info-action.is-whatsapp > span {
        background: rgba(20, 168, 82, .12);
        color: #159447;
    }

    .bv-est-info-action.is-route > span {
        background: rgba(54, 105, 255, .12);
        color: #315fd8;
    }

    .bv-est-info-action.is-reservation > span {
        background: rgba(125, 68, 220, .12);
        color: #7540c7;
    }

/* *********************************** Vagas */

.bv-est-info-hiring {
    min-height: 92px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(38, 121, 87, .2);
    border-radius: 24px;
    background: linear-gradient(135deg, #f0fbf6, #f7fffb);
    color: #173c2c;
    text-decoration: none;
    overflow: hidden;
}

    .bv-est-info-hiring:hover {
        color: #173c2c;
        border-color: rgba(38, 121, 87, .34);
    }

.bv-est-info-hiring__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #168a4d;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 10px 22px rgba(22, 138, 77, .2);
}

.bv-est-info-hiring__copy small,
.bv-est-info-hiring__copy strong,
.bv-est-info-hiring__copy > span {
    display: block;
}

.bv-est-info-hiring__copy small {
    color: #168a4d;
    font-size: .63rem;
    font-weight: 950;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.bv-est-info-hiring__copy strong {
    margin-top: 3px;
    font-size: .94rem;
    font-weight: 950;
}

.bv-est-info-hiring__copy > span {
    margin-top: 3px;
    color: #537164;
    font-size: .73rem;
}

.bv-est-info-hiring__action {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border-radius: 999px;
    background: #168a4d;
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    white-space: nowrap;
}

/* *********************************** Sobre */

.bv-est-info-about {
    margin: 0;
    color: #454b56;
    font-size: .88rem;
    line-height: 1.75;
    white-space: pre-line;
}

/* *********************************** Funcionamento */

.bv-est-info-opening {
    min-height: 66px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 12px;
    border-radius: 18px;
    background: #f6f7f9;
}

.bv-est-info-opening__indicator {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff;
}

    .bv-est-info-opening__indicator i {
        font-size: .62rem;
    }

.bv-est-info-opening strong,
.bv-est-info-opening small {
    display: block;
}

.bv-est-info-opening strong {
    font-size: .84rem;
    font-weight: 950;
}

.bv-est-info-opening small {
    margin-top: 2px;
    color: var(--est-muted, #737b88);
    font-size: .7rem;
}

.bv-est-info-opening.is-open {
    background: rgba(22, 138, 77, .07);
    color: #168a4d;
}

.bv-est-info-opening.is-closed {
    background: rgba(199, 45, 45, .06);
    color: #b42b2b;
}

.bv-est-info-today {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding: 11px 2px;
    border-bottom: 1px solid var(--est-border, #e5e8ee);
}

    .bv-est-info-today span {
        color: var(--est-muted, #737b88);
        font-size: .71rem;
        font-weight: 800;
    }

    .bv-est-info-today strong {
        font-size: .74rem;
        font-weight: 900;
    }

.bv-est-info-hours-toggle {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 5px;
    padding: 0 2px;
    border: 0;
    background: transparent;
    color: var(--est-primary-dark, #d91f78);
    font-size: .72rem;
    font-weight: 900;
}

    .bv-est-info-hours-toggle i {
        transition: transform 180ms ease;
    }

    .bv-est-info-hours-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

.bv-est-info-hours-list {
    display: grid;
    gap: 5px;
    margin-top: 6px;
}

    .bv-est-info-hours-list[hidden] {
        display: none;
    }

.bv-est-info-hours-day {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 9px;
    border-radius: 12px;
    font-size: .7rem;
}

    .bv-est-info-hours-day.is-today {
        background: var(--est-primary-softer, rgba(255, 46, 147, .065));
    }

    .bv-est-info-hours-day > span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--est-muted, #737b88);
        font-weight: 800;
    }

    .bv-est-info-hours-day small {
        padding: 3px 6px;
        border-radius: 999px;
        background: var(--est-primary-soft, rgba(255, 46, 147, .11));
        color: var(--est-primary-dark, #d91f78);
        font-size: .57rem;
        font-weight: 900;
    }

    .bv-est-info-hours-day strong {
        text-align: right;
        font-size: .69rem;
        font-weight: 900;
    }

/* *********************************** Tags */

.bv-est-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bv-est-info-tag {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid var(--est-border, #e5e8ee);
    border-radius: 13px;
    background: var(--est-surface-soft, #f8f9fb);
    color: #404650;
    font-size: .7rem;
    font-weight: 850;
}

    .bv-est-info-tag > i {
        color: var(--est-primary-dark, #d91f78);
    }

    .bv-est-info-tag small {
        margin-left: 3px;
        color: var(--est-muted, #737b88);
        font-size: .6rem;
        font-weight: 800;
    }

/* *********************************** Detalhes */

.bv-est-info-details {
    display: grid;
    gap: 8px;
}

.bv-est-info-detail {
    min-height: 57px;
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border: 1px solid var(--est-border, #e5e8ee);
    border-radius: 16px;
    background: var(--est-surface-soft, #f8f9fb);
}

    .bv-est-info-detail > span {
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        background: #fff;
        color: var(--est-primary-dark, #d91f78);
    }

    .bv-est-info-detail small,
    .bv-est-info-detail strong {
        display: block;
    }

    .bv-est-info-detail small {
        color: var(--est-muted, #737b88);
        font-size: .62rem;
        font-weight: 800;
    }

    .bv-est-info-detail strong {
        margin-top: 2px;
        font-size: .76rem;
        font-weight: 950;
    }

/* *********************************** Localização */

.bv-est-info-location {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
    gap: 18px;
}

.bv-est-info-location__copy {
    min-width: 0;
}

.bv-est-info-location__item {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    margin-top: 12px;
}

    .bv-est-info-location__item > i {
        margin-top: 2px;
        color: var(--est-primary-dark, #d91f78);
    }

    .bv-est-info-location__item small,
    .bv-est-info-location__item strong {
        display: block;
    }

    .bv-est-info-location__item small {
        color: var(--est-muted, #737b88);
        font-size: .61rem;
        font-weight: 800;
    }

    .bv-est-info-location__item strong {
        margin-top: 2px;
        color: #404650;
        font-size: .73rem;
        line-height: 1.45;
        font-weight: 850;
        white-space: pre-line;
    }

.bv-est-info-route {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
    padding: 0 15px;
    border-radius: 14px;
    background: var(--est-primary, #ff2e93);
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    text-decoration: none;
}

    .bv-est-info-route:hover {
        color: #fff;
    }

.bv-est-info-map {
    min-height: 270px;
    overflow: hidden;
    border: 1px solid var(--est-border, #e5e8ee);
    border-radius: 20px;
    background: #edf0f4;
}

    .bv-est-info-map iframe {
        width: 100%;
        height: 100%;
        min-height: 270px;
        display: block;
        border: 0;
    }

/* *********************************** Links */

.bv-est-info-links {
    display: grid;
    gap: 8px;
}

.bv-est-info-link {
    min-height: 55px;
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid var(--est-border, #e5e8ee);
    border-radius: 16px;
    background: var(--est-surface-soft, #f8f9fb);
    color: var(--est-text, #202124);
    text-decoration: none;
}

    .bv-est-info-link:hover {
        color: var(--est-primary-dark, #d91f78);
        border-color: rgba(255, 46, 147, .24);
    }

    .bv-est-info-link > span {
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        background: #fff;
        color: var(--est-primary-dark, #d91f78);
    }

    .bv-est-info-link strong {
        font-size: .74rem;
        font-weight: 900;
    }

    .bv-est-info-link > i {
        color: var(--est-muted, #737b88);
        font-size: .68rem;
    }

/* *********************************** Redes sociais */

.bv-est-info-social {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

    .bv-est-info-social a {
        min-height: 51px;
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 0 12px;
        border: 1px solid var(--est-border, #e5e8ee);
        border-radius: 16px;
        background: var(--est-surface-soft, #f8f9fb);
        color: var(--est-text, #202124);
        text-decoration: none;
        font-size: .71rem;
        font-weight: 900;
    }

        .bv-est-info-social a > i {
            width: 28px;
            text-align: center;
            font-size: 1rem;
        }

    .bv-est-info-social .is-instagram > i {
        color: #c13584;
    }

    .bv-est-info-social .is-facebook > i {
        color: #1877f2;
    }

    .bv-est-info-social .is-youtube > i {
        color: #f00;
    }

/* *********************************** Lightbox */

.bv-est-info-lightbox {
    position: fixed;
    z-index: 2147483000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
}

    .bv-est-info-lightbox[hidden] {
        display: none;
    }

.bv-est-info-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(8, 11, 19, .92);
    backdrop-filter: blur(9px);
}

.bv-est-info-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    height: min(88dvh, 820px);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 12px;
}

.bv-est-info-lightbox figure {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    place-items: center;
    gap: 10px;
    margin: 0;
}

    .bv-est-info-lightbox figure img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 18px;
        object-fit: contain;
    }

.bv-est-info-lightbox figcaption {
    color: #fff;
    font-size: .72rem;
    font-weight: 850;
}

.bv-est-info-lightbox__close,
.bv-est-info-lightbox__navigation {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    backdrop-filter: blur(8px);
}

.bv-est-info-lightbox__close {
    position: fixed;
    z-index: 3;
    top: max(14px, env(safe-area-inset-top));
    right: max(14px, env(safe-area-inset-right));
}

/* *********************************** Tablet */

@media (max-width: 820px) {
    .bv-est-info-grid {
        grid-template-columns: 1fr;
    }

    .bv-est-info-card--wide {
        grid-column: auto;
    }

    .bv-est-info-location {
        grid-template-columns: 1fr;
    }

    .bv-est-info-map,
    .bv-est-info-map iframe {
        min-height: 230px;
    }
}

/* *********************************** Celular */

@media (max-width: 620px) {
    .bv-est-info {
        gap: 10px;
    }

    .bv-est-info-card,
    .bv-est-info-gallery {
        padding: 13px;
        border-radius: 20px;
    }

        .bv-est-info-gallery__track,
        .bv-est-info-gallery.has-1 .bv-est-info-gallery__track,
        .bv-est-info-gallery.has-2 .bv-est-info-gallery__track,
        .bv-est-info-gallery.has-3 .bv-est-info-gallery__track,
        .bv-est-info-gallery.has-4 .bv-est-info-gallery__track {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }

            .bv-est-info-gallery__track::-webkit-scrollbar {
                display: none;
            }

    .bv-est-info-gallery__item,
    .bv-est-info-gallery__item:first-child {
        width: 84%;
        height: 235px;
        flex: 0 0 84%;
        grid-row: auto;
        scroll-snap-align: start;
    }

    .bv-est-info-gallery__zoom {
        opacity: 1;
        transform: none;
    }

    .bv-est-info-gallery__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-top: 9px;
        color: var(--est-muted, #737b88);
        font-size: .63rem;
    }

        .bv-est-info-gallery__footer strong {
            color: var(--est-text, #202124);
            font-size: .66rem;
        }

    .bv-est-info-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bv-est-info-action {
        min-height: 74px;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 6px;
        padding: 8px 5px;
        text-align: center;
    }

        .bv-est-info-action strong {
            font-size: .64rem;
        }

    .bv-est-info-hiring {
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 13px;
    }

    .bv-est-info-hiring__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .bv-est-info-hiring__action {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
        margin-top: 2px;
    }

    .bv-est-info-social {
        grid-template-columns: 1fr;
    }

    .bv-est-info-lightbox {
        padding: 8px;
    }

    .bv-est-info-lightbox__dialog {
        grid-template-columns: 1fr;
        height: 86dvh;
    }

    .bv-est-info-lightbox__navigation {
        position: fixed;
        z-index: 3;
        top: 50%;
        transform: translateY(-50%);
    }

        .bv-est-info-lightbox__navigation.is-previous {
            left: 10px;
        }

        .bv-est-info-lightbox__navigation.is-next {
            right: 10px;
        }
}

@media (prefers-reduced-motion: reduce) {
    .bv-est-info *,
    .bv-est-info *::before,
    .bv-est-info *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}



/* *********************************** Descrição formatada */

.bv-est-info-about strong {
    color: var(--est-text, #202124);
    font-weight: 950;
}

/* *********************************** Botão de rota */

.bv-est-info-route,
.bv-est-info-route:link,
.bv-est-info-route:visited,
.bv-est-info-route:hover,
.bv-est-info-route:focus,
.bv-est-info-route:active {
    color: #fff !important;
    text-decoration: none !important;
}

    .bv-est-info-route i {
        color: inherit;
    }

/* *********************************** Lightbox visível */

html.bv-est-info-lightbox-open,
html.bv-est-info-lightbox-open body {
    overflow: hidden !important;
}

.bv-est-info-lightbox {
    width: 100vw;
    height: 100dvh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
}

    .bv-est-info-lightbox.is-open {
        opacity: 1;
        visibility: visible;
    }

    .bv-est-info-lightbox[hidden] {
        display: none !important;
    }

.bv-est-info-lightbox__dialog {
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
}

.bv-est-info-lightbox figure img {
    max-width: 100%;
    max-height: calc(100dvh - 80px);
    display: block;
}

/* *********************************** Horários */

.bv-est-info-hours-list:not([hidden]) {
    display: grid;
}

.bv-est-info-hours-toggle,
.bv-est-info-hours-toggle:hover,
.bv-est-info-hours-toggle:focus {
    color: var(--est-primary-dark, #d91f78);
}