/* ============================================================
   ESTILOS DA PÁGINA DE UNIDADE
   Complementa o site.css (base compartilhada)
   Variáveis CSS personalizáveis por unidade vêm via PHP
   ============================================================ */

/* Estado scrolled do header */
.header-unidade {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-unidade.header-scrolled {
    background: linear-gradient(183deg, #000000, #1a1a1a);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   HEADER DA UNIDADE
   Variação do header principal com badge de unidade
   ============================================================ */

/* Container específico do header de unidade */
.header-unidade .container {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 20px;
    height: 100%;
}

/* Badge de identificação da unidade (centro do header) */
.unidade-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    justify-self: center;
}

.unidade-badge-label {
    font-size: 10px;
    font-weight: 600;
    color: #ffc900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
    opacity: 0.85;
}

.unidade-badge-name {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

/* Estilo do botão de pedido do header da unidade */
.btn-order-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    padding: 11px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-order-whatsapp:hover {
    background-color: #1db954;
    transform: translateY(-2px);
}

/* Navegação da unidade (herdado do .nav padrão do site.css) */
.nav-unidade {
    gap: 30px;
}

.nav-unidade .nav-list {
    gap: 24px;
}

.nav-unidade .nav-list a {
    font-size: 14px;
}

/* ============================================================
   HERO DA UNIDADE
   Layout diferente do hero da matriz — mais focado em CTA
   e informações práticas
   ============================================================ */
.hero-unidade {
    position: relative;
    min-height: 60vh;
    background-image: var(--hero-bg-desk);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
}

.hero-unidade-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.65) 50%, rgb(0 0 0 / 35%) 100%);
    z-index: 1;
}

.hero-unidade-content {
    position: relative;
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    gap: 0;
    padding: 80px;
}

/* Badge de localização no hero */
.hero-unidade-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 200, 0, 0.15);
    border: 1px solid rgba(255, 200, 0, 0.5);
    color: #ffc800;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(6px);
}

/* Título principal do hero */
.hero-unidade-title {
    font-size: 72px;
    color: #ffffff;
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -3px;
    margin-bottom: 24px;
    max-width: 750px;
}

.hero-unidade-highlight {
    color: #ffc800;
    display: inline;
}

/* Subtítulo */
.hero-unidade-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Botões de ação do hero */
.hero-unidade-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-hero-primary:hover {
    background-color: #1db954;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

/* Info strip no rodapé do hero */
.hero-unidade-info-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 28px;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.hero-info-item svg {
    color: #ffc800;
    flex-shrink: 0;
}

.hero-info-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* ============================================================
   SEÇÃO DE DIFERENCIAIS
   ============================================================ */
.diferenciais-section {
    background-color: #111111;
    padding: 0 80px;
}

.diferenciais-container {
    display: flex;
    gap: 0;
    padding: 0;
    flex-wrap: wrap;
}

.diferencial-card {
    flex: 1;
    min-width: 220px;
    padding: 50px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 3px;
    background-color: #ffc800;
    border-radius: 2px 2px 0 0;
    transition: transform 0.3s ease;
}

.diferencial-card:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.diferencial-card:last-child {
    border-right: none;
}

.diferencial-card:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.diferencial-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc800, #e6a800);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #111;
    transition: transform 0.3s ease;
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.08) rotate(-4deg);
}

.diferencial-titulo {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.diferencial-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ============================================================
   GALERIA DA UNIDADE
   ============================================================ */
.galeria-unidade-section {
    background-color: #f6f6f6;
    padding: 100px 80px;
}

.galeria-unidade-container {
    flex-direction: column;
    gap: 60px;
}

.galeria-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.galeria-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #ffc800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.galeria-titulo {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.galeria-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Grid assimétrico – layout editorial */
.galeria-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 12px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: zoom-in;
    background-color: #ddd;
}

/* Item 0 – destaque grande à esquerda (ocupa 7 colunas, 2 linhas) */
.galeria-item-0 {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
}

/* Item 1 – topo direita (ocupa 5 colunas, 1 linha) */
.galeria-item-1 {
    grid-column: 8 / span 5;
    grid-row: 1 / span 1;
}

/* Item 2 – baixo direita (ocupa 2 colunas, 1 linha) */
.galeria-item-2 {
    grid-column: 8 / span 2;
    grid-row: 2 / span 1;
}

/* Item 3 – baixo extremo direito (ocupa 3 colunas, 1 linha) */
.galeria-item-3 {
    grid-column: 10 / span 3;
    grid-row: 2 / span 1;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

/* Overlay com ícone de zoom */
.galeria-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: all 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    background-color: rgba(0, 0, 0, 0.35);
    opacity: 1;
}

/* ============================================================
   FOOTER DA UNIDADE
   ============================================================ */
.footer-unidade {
    background-color: #111111;
    padding: 50px 0 0 0;
    border-top: 4px solid #ffc900;
}

.footer-unidade-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-unidade-container > .footer-legal {
    grid-column: 1 / -1;
    margin-top: 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-unidade-nome {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin: 0;
}

.footer-contato {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-social:hover {
    color: #ffc800;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    margin: 0;
}

/* ============================================================
   DEPOIMENTOS ANIMADOS — Marquee duplo
   ============================================================ */
.dep-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(192, 0, 0, 0.07) 0 2px, transparent 2.5px),
        radial-gradient(circle at 86% 72%, rgba(255, 200, 0, 0.14) 0 2px, transparent 2.5px),
        linear-gradient(180deg, #fbf7ef 0%, #f4efe6 100%);
    background-size: 64px 64px, 72px 72px, auto;
    padding: 100px 80px 80px;
    overflow: hidden;
    position: relative;
}

/* Faixa diagonal decorativa no topo */
.dep-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ffc800 0%, #c00000 50%, #ffc800 100%);
    z-index: 1;
}

.dep-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 45% at 50% 0%, rgba(255, 255, 255, 0.72) 0%, transparent 70%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(192, 0, 0, 0.05) 0%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

/* Cabeçalho */
.dep-header-wrap {
    position: relative;
    z-index: 1;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.dep-header {
    flex: 1;
}

.dep-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c00000;
    margin-bottom: 16px;
}

.dep-titulo {
    font-size: 46px;
    font-weight: 900;
    color: #111;
    line-height: 1.08;
    letter-spacing: -2px;
    margin: 0;
}

.dep-titulo-accent {
    color: #c00000;
}

/* Rating global */
.dep-rating-global {
    text-align: right;
    flex-shrink: 0;
}

.dep-stars {
    display: flex;
    gap: 3px;
    justify-content: flex-end;
    margin-bottom: 6px;
}

.dep-rating-num {
    font-size: 28px;
    font-weight: 900;
    color: #111;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1;
}

.dep-rating-num span {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0;
}

/* Wrapper do marquee com fade nas bordas */
.dep-marquee-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.dep-marquee-wrap:last-of-type {
    margin-bottom: 0;
}

.dep-fade-mask {
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 8%,
            black 92%,
            transparent 100%);
}

/* Faixa rolante */
.dep-marquee {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

/* Animações CSS puras — pausa automática no hover */
.dep-marquee-left {
    animation: depScrollLeft 40s linear infinite;
}

.dep-marquee-right {
    animation: depScrollRight 40s linear infinite;
}

.dep-marquee-wrap:hover .dep-marquee {
    animation-play-state: paused;
}

@keyframes depScrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes depScrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ── Card de depoimento ───────────────────────────────────── */
.dep-card {
    flex-shrink: 0;
    width: 340px;
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 28px;
    box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.04),
        0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.dep-card:hover {
    box-shadow:
        0 2px 0 rgba(0, 0, 0, 0.04),
        0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Topo do card: avatar + nome + fonte */
.dep-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar circular com inicial */
.dep-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c00000, #ff4444);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: -0.5px;
}

.dep-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dep-nome {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.dep-card-stars {
    display: flex;
    gap: 2px;
}

/* Badge de fonte (Google / iFood / WhatsApp) */
.dep-fonte {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 100px;
    flex-shrink: 0;
    align-self: flex-start;
}

.dep-fonte-google {
    background-color: #e8f0fe;
    color: #1a73e8;
}

.dep-fonte-ifood {
    background-color: #fff0f0;
    color: #ea1d2c;
}

.dep-fonte-whatsapp {
    background-color: #e6f9ee;
    color: #128c7e;
}

/* Texto do depoimento */
.dep-texto {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin: 0;
    font-style: italic;
    flex: 1;
}

/* ── Responsividade ───────────────────────────────────────── */
@media (max-width: 992px) {

    .dep-section,
    .galeria-unidade-section,
    .diferenciais-section {
        padding-left: 0;
        padding-right: 0;
    }

    .diferenciais-container {
        padding: 0 20px;
    }

    .dep-header-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .dep-rating-global {
        text-align: left;
    }

    .dep-stars {
        justify-content: flex-start;
    }

    .dep-titulo {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .dep-card {
        width: 280px;
        padding: 22px 20px;
    }
}

@media (max-width: 480px) {
    .dep-titulo {
        font-size: 28px;
    }

    .dep-card {
        width: 260px;
    }
}

/* ============================================================
   LOCALIZAÇÃO E HORÁRIO DE FUNCIONAMENTO
   ============================================================ */
.loc-section {
    background-color: #ffffff;
    padding: 100px 80px;
    border-top: 1px solid #f0f0f0;
}

.loc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ── COLUNA DO MAPA ─────────────────────────────────────────── */
.loc-map-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loc-map-wrap {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background-color: #e8e8e8;
}

.loc-map-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.loc-map-wrap[data-consent-embed]:not(.consent-embed-loaded) .loc-map-overlay {
    display: none;
}

/* Overlay clicável que surge no hover */
.loc-map-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.loc-map-overlay:hover {
    background-color: rgba(0, 0, 0, 0.35);
}

.loc-map-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 14px 24px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 700;
}

.loc-map-overlay:hover .loc-map-overlay-content {
    opacity: 1;
    transform: scale(1);
}

/* Card de endereço abaixo do mapa */
.loc-endereco-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #f8f8f8;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 18px 20px;
}

.loc-endereco-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c00000, #e83333);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.loc-endereco-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.loc-endereco-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.loc-endereco-rua {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.loc-endereco-cidade {
    font-size: 13px;
    color: #666;
}

.loc-btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #111;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.loc-btn-maps:hover {
    background-color: #c00000;
    transform: translateY(-1px);
}

/* ── COLUNA DE INFORMAÇÕES ──────────────────────────────────── */
.loc-info-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.loc-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loc-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c00000;
}

.loc-titulo {
    font-size: 44px;
    font-weight: 900;
    color: #111;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0;
}

.loc-titulo-accent {
    color: #c00000;
}

/* Indicador de status ao vivo */
.loc-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    width: fit-content;
}

.loc-status-aberto {
    background-color: #e6f9ee;
    color: #128c7e;
}

.loc-status-fechado {
    background-color: #fff0f0;
    color: #c00000;
}

.loc-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.loc-status-aberto .loc-status-dot {
    background-color: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
    animation: locPulse 2s ease-in-out infinite;
}

.loc-status-fechado .loc-status-dot {
    background-color: #c00000;
}

@keyframes locPulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.1);
    }
}

/* ── TABELA DE HORÁRIOS ──────────────────────────────────────── */
.loc-horarios {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.loc-horario-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s ease;
}

.loc-horario-row:last-child {
    border-bottom: none;
}

.loc-horario-row:hover {
    background-color: #fafafa;
}

/* Linha de hoje em destaque */
.loc-horario-hoje {
    background-color: #fff8e6;
    border-left: 3px solid #ffc800;
}

.loc-horario-hoje:hover {
    background-color: #fff3d4;
}

.loc-dia {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.loc-horario-hoje .loc-dia {
    font-weight: 700;
    color: #111;
}

.loc-hoje-badge {
    font-size: 10px;
    font-weight: 800;
    background-color: #ffc800;
    color: #111;
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loc-horario-right {
    text-align: right;
}

.loc-horario-texto {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.loc-fechado-texto {
    font-size: 13px;
    font-weight: 600;
    color: #c00000;
}

/* ── CONTATOS ────────────────────────────────────────────────── */
.loc-contatos {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loc-contato-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ebebeb;
    background-color: #fafafa;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.loc-contato-item:hover {
    border-color: #ddd;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transform: translateX(4px);
}

.loc-contato-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    flex-shrink: 0;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.loc-icon-wpp {
    background-color: #e6f9ee;
    color: #25d366;
}

.loc-icon-insta {
    background-color: #fce4ec;
    color: #e1306c;
}

.loc-contato-texto {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.loc-contato-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    line-height: 1;
}

.loc-contato-texto strong {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

/* ── CTA PEDIR ────────────────────────────────────────────────── */
.loc-btn-pedir {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    padding: 18px 30px;
    border-radius: 12px;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    width: 100%;
    text-align: center;
}

.loc-btn-pedir:hover {
    background-color: #1db954;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
}

/* ── RESPONSIVIDADE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .loc-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .loc-map-wrap {
        height: 300px;
    }

    .loc-titulo {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .loc-section {
        padding: 70px 0;
    }

    .loc-titulo {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .loc-endereco-card {
        flex-wrap: wrap;
        gap: 12px;
    }

    .loc-btn-maps {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   MAIS PEDIDOS
   ============================================================ */
.mais-pedidos-section {
    background-color: #0e0e0e;
    padding: 100px 80px 80px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Padrão sutil de fundo */
.mais-pedidos-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.065) 0 1px, transparent 1px 18px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.042) 0 1px, transparent 1px 76px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 76px);
    background-size: 180px 180px, 76px 76px, 76px 76px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 86%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 86%, transparent 100%);
    opacity: 0.92;
    pointer-events: none;
    z-index: 0;
}

.mais-pedidos-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 52% at 50% 0%, rgba(255, 255, 255, 0.055) 0%, transparent 62%),
        radial-gradient(ellipse 90% 70% at 50% 100%, rgba(0, 0, 0, 0.42) 0%, transparent 68%);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.mais-pedidos-container {
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

/* Cabeçalho da seção */
.mais-pedidos-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
    width: 100%;
}

.mais-pedidos-header-text {
    flex: 1;
}

.mais-pedidos-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: #ffc800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
}

.mais-pedidos-titulo {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.mais-pedidos-titulo-destaque {
    color: #ffc800;
}

.mais-pedidos-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 480px;
}

/* Link "Ver cardápio completo" no header */
.mais-pedidos-cta-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 4px;
}

.mais-pedidos-cta-header:hover {
    color: #ffc800;
    border-color: #ffc800;
}

/* ── GRID DE CARDS ─────────────────────────────────────────── */
.mais-pedidos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.mp-card.mp-card-duplicate {
    display: none;
}

/* ── CARD ─────────────────────────────────────────────────── */
.mp-card {
    background: linear-gradient(160deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    /* Estado inicial para animação */
    opacity: 0;
    transform: translateY(40px);
}

.mp-card.mp-visible {
    opacity: 1;
    transform: translateY(0);
}

.mp-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 200, 0, 0.15);
    border-color: rgba(255, 200, 0, 0.25);
}

/* ── IMAGEM DO CARD ───────────────────────────────────────── */
.mp-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 2;
    overflow: hidden;
    flex-shrink: 0;
}

.mp-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.mp-card:hover .mp-card-img {
    transform: scale(1.07);
}

/* Gradiente sobre a imagem */
.mp-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

/* ── BADGE DE RANKING ─────────────────────────────────────── */
.mp-rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(8px);
    font-size: 20px;
    line-height: 1;
    background-color: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.mp-rank-1 {
    border-color: rgba(255, 200, 0, 0.5);
}

.mp-rank-2 {
    border-color: rgba(180, 180, 180, 0.5);
}

.mp-rank-3 {
    border-color: rgba(180, 100, 40, 0.5);
}

.mp-rank-num {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

/* ── TAG DE DESTAQUE ──────────────────────────────────────── */
.mp-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ffc800;
    color: #111111;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 10px;
    border-radius: 100px;
    z-index: 2;
    white-space: nowrap;
}

/* ── CORPO DO CARD ────────────────────────────────────────── */
.mp-card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.mp-card-nome {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.mp-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ── RODAPÉ DO CARD ───────────────────────────────────────── */
.mp-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mp-card-preco {
    font-size: 20px;
    font-weight: 900;
    color: #ffc800;
    letter-spacing: -0.5px;
    line-height: 1;
}

.mp-card-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.mp-btn-whatsapp,
.mp-btn-pedir {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.mp-btn-whatsapp {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.2);
}

.mp-btn-whatsapp-label {
    display: none;
}

.mp-btn-pedir {
    min-height: 40px;
    padding: 0 16px;
    background: linear-gradient(135deg, #0ea5ff 0%, #2563eb 48%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.34);
}

.mp-btn-whatsapp:hover,
.mp-btn-pedir:hover {
    transform: translateY(-1px) scale(1.03);
    filter: brightness(1.08);
}

/* ── CTA BOTTOM (visível apenas mobile) ───────────────────── */
.mais-pedidos-cta-bottom {
    display: none;
    margin-top: 40px;
    text-align: center;
}

@keyframes mais-pedidos-mobile-loop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

/* Tablets */
@media (max-width: 1024px) {
    .hero-unidade-title {
        font-size: 56px;
    }

    /* Mais Pedidos – 2 colunas em tablet */
    .mais-pedidos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mais-pedidos-titulo {
        font-size: 38px;
    }

    .galeria-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px 240px;
    }

    .galeria-item-0 {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    .galeria-item-1 {
        grid-column: 1;
        grid-row: 2;
    }

    .galeria-item-2 {
        grid-column: 2;
        grid-row: 2;
    }

    .galeria-item-3 {
        grid-column: 1 / span 2;
        grid-row: 3;
    }
}

/* Mobile */
@media (max-width: 992px) {

    /* Header */
    .header-unidade .container {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        width: 100%;
    }

    .header-unidade .menu-toggle {
        grid-column: 3;
        justify-self: end;
        margin-left: auto;
    }

    /* Mais Pedidos – carrossel horizontal no mobile */
    .mais-pedidos-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }

    .mais-pedidos-titulo {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .mais-pedidos-cta-header {
        display: none;
    }

    .mais-pedidos-section {
        overflow: hidden;
        padding-left: 0;
        padding-right: 0;
    }

    .mais-pedidos-grid {
        display: flex;
        grid-template-columns: none;
        grid-auto-flow: initial;
        grid-auto-columns: initial;
        width: max-content;
        max-width: none;
        overflow: visible;
        scroll-snap-type: none;
        gap: 0;
        padding-bottom: 12px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        animation: mais-pedidos-mobile-loop 34s linear infinite;
        will-change: transform;
    }

    .mp-card {
        flex: 0 0 82vw;
        width: 82vw;
        margin-right: 16px;
        min-width: 0;
        scroll-snap-align: unset;
        opacity: 1;
        transform: none;
    }

    .mp-card.mp-card-duplicate {
        display: flex;
    }

    .mp-card:hover {
        transform: none;
    }

    .mp-card-body {
        min-height: 235px;
    }

    .mp-card-footer {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-end;
        gap: 12px;
        margin-top: auto;
    }

    .mp-card-preco {
        width: 100%;
        font-size: 22px;
    }

    .mp-card-actions {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
    }

    .mp-btn-whatsapp,
    .mp-btn-pedir {
        flex: 0 0 calc(50% - 4px);
        width: auto;
        min-width: 0;
        height: 44px;
        min-height: 44px;
        padding: 0 10px;
    }

    .mp-btn-whatsapp {
        gap: 8px;
        font-size: 12px;
        font-weight: 900;
    }

    .mp-btn-whatsapp-label {
        display: inline;
    }

    .mais-pedidos-cta-bottom {
        display: flex;
        justify-content: center;
    }

    .mais-pedidos-cta-bottom .btn-hero-primary {
        width: 100%;
        max-width: 360px;
        justify-content: center;
        background: linear-gradient(135deg, #0ea5ff 0%, #2563eb 48%, #1d4ed8 100%);
        box-shadow: 0 14px 30px rgba(37, 99, 235, 0.36);
    }

    .unidade-badge {
        display: none;
    }

    /* Hero */
    .hero-unidade {
        background-image: var(--hero-bg-mob);
        min-height: 80svh;
    }

    .hero-unidade-content {
        padding: 35px;
    }

    .hero-unidade-title {
        font-size: 42px;
        letter-spacing: -1.5px;
    }

    .hero-unidade-subtitle {
        font-size: 16px;
    }

    .hero-unidade-actions {
        flex-direction: column;
        width: 100%;
        max-width: 360px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        font-size: 16px;
        padding: 16px 24px;
    }

    .hero-unidade-info-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-info-divider {
        width: 100%;
        height: 1px;
    }

    /* Diferenciais */
    .diferenciais-container {
        flex-direction: column;
    }

    .diferencial-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 40px 30px;
    }

    .diferencial-card:last-child {
        border-bottom: none;
    }

    .diferencial-card::before {
        bottom: auto;
        top: 0;
        border-radius: 0 0 2px 2px;
    }

    /* Galeria */
    .galeria-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: 240px 120px;
    }

    .galeria-item-0 {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .galeria-item-1 {
        grid-column: 1;
        grid-row: 2;
    }

    .galeria-item-2 {
        grid-column: 2;
        grid-row: 2;
    }

    .galeria-item-3 {
        grid-column: 3;
        grid-row: 2;
    }

    .galeria-titulo {
        font-size: 32px;
    }

    /* Footer */
    .footer-unidade-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contato {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-unidade-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-unidade-tag {
        font-size: 11px;
    }

    .galeria-grid {
        grid-template-rows: 220px 96px;
        gap: 8px;
    }
}
