/* ============================================================
   TOKENS GLOBAIS
============================================================ */

:root {
    /* ── CORES ── */
    --ouro: #D6B377;
    --ouro-suave: #cdb68c;
    --ouro-claro: #f0d8b0;
    --ouro-medio: #d4b87a;
    --ouro-escuro: #a88a3e;
    --laranja: #ff8c00;
    --roxo: #b14fff;
    --preto: #050505;
    --preto-claro: #141414;
    --preto-medio: #1a1a1a;
    --fundo-escuro: #10141d;
    --fundo-card: #1e1e1e;
    --branco: #ffffff;
    --texto-mutado: #cccccc;
    --texto-dourado: #e3bf81;

    /* ── FONTES ── */
    --fonte-titulo: 'Cinzel', 'Times New Roman', serif;
    --fonte-corpo: 'Poppins', sans-serif;
    --peso-leve: 300;
    --peso-normal: 400;
    --peso-medio: 600;
    --peso-negrito: 700;
    --tamanho-pequeno: 0.75rem;
    --tamanho-normal: 0.85rem;
    --tamanho-medio: 1rem;
    --tamanho-grande: clamp(22px, 4vw, 45px);
    --tamanho-hero: clamp(2.5rem, 8vw, 4.5rem);
    --tamanho-marca: clamp(2rem, 5vw, 4rem);

    /* ── TRANSIÇÕES ── */
    --transicao: 0.35s cubic-bezier(.4, 0, .2, 1);

    /* ── BORDAS ── */
    --raio-pequeno: 6px;
    --raio-medio: 12px;
    --raio-grande: 18px;
    --borda-botao: 1px solid rgba(184,156,110,0.7);
    --borda-seta: 1px solid rgba(184,156,110,0.4);

    /* ── CARROSSEL ── */
    --fundo-slide-1: linear-gradient(160deg, #0d0c0a 0%, #1c1a16 40%, #2e2820 100%);
    --fundo-slide-2: linear-gradient(160deg, #0f0e0c 0%, #1e1b17 40%, #302920 100%);
    --fundo-slide-3: linear-gradient(160deg, #0c0c0d 0%, #191820 40%, #252338 100%);
    --fundo-slide-4: linear-gradient(160deg, #0d0b0b 0%, #1c1515 40%, #2e1e1e 100%);
    --fundo-slide-5: linear-gradient(160deg, #090c0b 0%, #121c18 40%, #1c2e28 100%);
    --tamanho-tagline: 1rem;
    --tamanho-botao: 0.65rem;
    --opacidade-branco: 0.55;
    --opacidade-seta: 0.6;
    --espacamento-botao: 0.85rem 2.5rem;
    --cor-seta: rgba(253,252,250,0.6);

    /* aliases legados */
    --gold: #D6B377;
    --gold-soft: #cdb68c;
    --gold-pale: #f0d8b0;
    --gold-light: #d4b87a;
    --gold-dark: #a88a3e;
    --font-display: 'Cinzel', 'Times New Roman', serif;
    --font-body: 'Poppins', sans-serif;
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --black: #050505;
    --black-light: #141414;
    --black-medium: #1a1a1a;
    --orange: #ff8c00;
    --purple: #b14fff;
}

/* ============================================================
   RESET E BASE
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;

}

html {
    scroll-behavior: smooth;
}

/* ============================================================
   TIPOGRAFIA GLOBAL
============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-negrito);
}

h3, h4, h5, h6 {
    font-weight: var(--peso-medio);
}

a {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-medio);
}

p, span, li, label {
    font-family: var(--fonte-corpo);
    font-weight: var(--peso-normal);
}

button, .btn, .btn-nav, .btn-share, .btn-wpp,
.btn-share-partner, .on-btn,
input[type="button"], input[type="submit"] {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-medio);
    letter-spacing: 0.05em;
}

 /* 1. menu lateral */
* { margin: 0; padding: 0; box-sizing: border-box; }



  






/* ============================================================
   HERO
============================================================ */
.heroin {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/1440.avif') center/cover no-repeat;
    padding: 150px 1.5rem 4rem;
    text-align: center;
    
}

.heroin-overlay {
    position: absolute;
    inset: 0;
  
}

.heroin-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.heroin-tag {
    display: inline-block;
    font-size: var(--tamanho-pequeno);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ouro);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--ouro);
    border-radius: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.heroin-title {
    font-family: var(--fonte-titulo);
    font-size: var(--tamanho-hero);
    font-weight: var(--peso-medio);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--branco);
    animation: fadeInUp 0.8s ease 0.3s both;
}

.heroin-subtitle {
    font-family: var(--fonte-corpo);
    font-size: var(--tamanho-medio);
    font-weight: var(--peso-leve);
    color: var(--texto-mutado);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.heroin-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.heroin-buttons .btn {
    width: 100%;
    max-width: 750px;
}

/* ============================================================
   BOTÕES GLOBAIS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: var(--tamanho-normal);
    font-weight: var(--peso-medio);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #c9a55c;
    color: var(--preto);
}

.btn-primary:hover {
    background: var(--ouro-medio);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,165,92,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--branco);
    border: 1px solid var(--branco);
}

.btn-secondary:hover {
    background: var(--branco);
    color: #0a0a0a;
}



/* ============================================================
   FOOTER MENU
============================================================ */
.footer {
    background: #151921;
}

.menu-footer-container {
     background: linear-gradient(135deg, #1a0033 0%, #000 100%);
    border-top: 1px solid rgba(214, 179, 119, 0.38);
    border-bottom: 1px solid rgba(214, 179, 119, 0.3);
    padding: 30px 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.0);
    text-align: center;
}

.menu-titulo {
    font-family: var(--fonte-titulo);
    font-weight: var(--peso-medio);
    text-align: center;
    margin-bottom: 20px;
    font-size: var(--tamanho-normal);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ouro);
}

.menu-titulo::before, .menu-titulo::after {
    content: "✦";
    margin: 0 10px;
    color: var(--ouro);
    opacity: 0.6;
}

.menu-botoes {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-nav {
    background: transparent;
    color: var(--texto-mutado);
    border: 1px solid rgba(214, 179, 119, 0.35);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
    cursor: pointer;
}

.btn-nav:hover {
    color: var(--ouro);
    border-color: var(--ouro);
    transform: translateY(-2px);
}

/* ============================================================
   CARDS
============================================================ */
.secao-header {
    max-width: 1500px;
    margin: 0 auto;
    padding: 50px 0;
    
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
    padding: 30px 10px;
    align-items: stretch;
}

.card {
 
    border: 1px solid rgba(214, 179, 119, 0.15);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    height: 100%;
    min-height: 380px;
 
}

.card:hover {
    transform: scale(1.02);
    border-color: rgba(201,165,92,.5);
    box-shadow: 0 8px 24px rgba(78,57,3,.1);
}

.card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 3px;
}

.card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.card-name {
    font-family: var(--fonte-titulo);
    font-size: 16px;
    font-weight: var(--peso-medio);
    color: var(--ouro);
    line-height: 1.3;
    margin: 0;
    width: 100%;
}

.card-desc {
    font-family: var(--fonte-corpo);
    font-size: 13px;
    color: var(--branco);
    line-height: 1.2;
}

.card-hours {
    font-family: var(--fonte-corpo);
    font-size: 13px;
    color: var(--texto-dourado);
    margin: 2px 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}



.addr {
    font-family: var(--fonte-corpo);
    font-size: 13px;
    color: var(--texto-dourado);
     margin: 2px 10px ;
     padding:0 0 10px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.addr::before {
    flex-shrink: 0;
    margin-top: 4px;
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
}

.stars {
    color: #f3c05b;
    font-size: 11px;
    transition: all 0.3s ease;
    padding: 2px;
    border-radius: 30px;
}

.stars:hover {
    background: #ecd197;
    color: #fff;
    cursor: pointer;
}

.card-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding: 10px;
    border-top: 0.5px solid #6b5837;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.card label[for^="ent-"], .card label[for^="gastro-"],
.card label[for^="moda-"], .card label[for^="adv-"],
.card label[for^="car-"], .card label[for^="saude-"],
.card label[for^="del-"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
}


/* ============================================================
   BOTÃO COMPARTILHAR E WHATSAPP
============================================================ */
.btn-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 9px;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: var(--peso-medio);
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
    color: var(--ouro);
    padding: 0;
    border: none;
    text-decoration: none;
    flex-shrink: 0;
    flex: 1;
    min-width: 140px;
    position: relative;
    z-index: 11;
}

.btn-share::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D6B377'%3E%3Cpath d='M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92z'/%3E%3C/svg%3E");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    border: 1.5px solid var(--ouro);
    transition: all 0.25s ease;
}

.btn-share:hover {
    color: var(--ouro);
}

.btn-wpp {
    position: relative;
    z-index: 11;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    background: #10141d;
    color: var(--ouro);
    border: 1px solid rgba(201, 165, 92, .4);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    width: 100%;
}

.btn-wpp:active {
    border-color: var(--ouro);
    box-shadow: 0 0 15px 0 rgba(214, 179, 119, 0.8), 0 0 5px 0 rgba(214, 179, 119, 0.5);
    background: rgba(214, 179, 119, 0.1);
}

.btn-wpp:hover {
    border-color: var(--ouro);
    box-shadow: 0 0 10px 0 rgba(214, 179, 119, 0.5);
    background: rgba(214, 179, 119, 0.05);
}




/* ============================================================
   CARROSSEL
============================================================ */
.car-wrap {
  
    overflow-x: auto;
    overflow-y: hidden;
    user-select: none;
    -webkit-user-select: none;
    padding: 10px 30px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

/* Esconde a barra de rolagem mas mantém funcional */
.car-wrap::-webkit-scrollbar {
    display: none;
}

.car-wrap {
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: transparent; /* ← FUNDO TRANSPARENTE */
}
.car-track {
    display: flex;
    gap: 20px;
}

.car-card {
    flex: 0 0 auto;
    width: 300px;
    padding: 10px;
    border: 1px solid rgba(214, 179, 119, 0.15);
    border-radius: 12px;
   
    scroll-snap-align: start;
}
car-card:hover{
    border: 1px solid #fff;
}



.car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    filter: brightness(.92);
}
.car-info {
    padding: .9rem 10px 0;  
    
}

.car-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .04em;
    line-height: 1.3;
}

.car-sub {
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    color: #bdbcbc;
    letter-spacing: .06em;
    margin-top: .25rem;
    font-style: italic;
}

.car-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: .5rem;
}

.car-meta span {
    font-family: 'Poppins', sans-serif;
    font-size: .78rem;
    color: #a88a3e;
    letter-spacing: .05em;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }

/* ROOT: CORES UNIFICADAS */
:root {
    --gold-m: #D4B87A;
    --main-m: #0a0a0a;         /* Cor de fundo do footer */
    --copy-m: #0B021a;         /* Cor do copyright */
    --text-m: #ffffff;         /* Texto padrão */
    --col-m: rgba(255, 255, 255, 0.03);
    --border-color-m: rgba(212, 184, 122, 0.15);
    --light-effect: rgba(212, 184, 122, 0.15); 
}

/* 1. O PAI (FOOTER) */
.footer {
    background-color: var(--main-m); /* Corrigido de --main-bg para --main-m */
    padding-top: 60px;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* 2. A LUZ (O gradiente) */
.footer::before {
    content: "";
    position: absolute;
    top: -180px; /* Ajustado para ficar mais alto conforme pediu */
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, var(--light-effect) 0%, rgba(212, 184, 122, 0.05) 50%, transparent 75%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

/* 3. O CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* 4. AS COLUNAS COM BORDAS ANIMADAS */
.footer-col {
    background: var(--col-m); 
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color-m);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animação mais suave */
    backdrop-filter: blur(2px);
    overflow: hidden;
}

/* EFEITO AO PASSAR O MOUSE (HOVER) */
.footer-col:hover {
    transform: translateY(-8px);
    border-color: var(--gold-m);
    background: rgba(212, 184, 122, 0.05); /* Leve brilho no fundo do card */
    /* A Borda Animada (Brilho Externo) */
    box-shadow: 0 0 20px rgba(212, 184, 122, 0.3), 
                inset 0 0 10px rgba(212, 184, 122, 0.1);
}

/* TÍTULOS */
.footer-subtitle, .footer-rede {
    color: var(--text-m);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.footer-subtitle::after {
    content: ""; 
    position: absolute; 
    bottom: -8px; 
    left: 0;
    width: 40px; 
    height: 2px; 
    background: var(--gold-m);
    transition: width 0.3s ease; /* Linha anima ao hover */
}

.footer-col:hover .footer-subtitle::after {
    width: 60px; /* A linha dourada cresce no hover */
}

/* LINKS E MENU */
.footer-menu { list-style: none; width: 100%; }
.footer-menu li { margin-bottom: 12px; font-size: 14px; }
.footer-menu a { color: var(--gold-m); text-decoration: none; transition: 0.3s; }
.footer-menu a:hover { color: var(--text-m); padding-left: 5px; /* Pequeno movimento */ }

.menus-lado-a-lado { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 10px; }

/* CONTATO */
.contato { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }
.contato a { color: var(--text-m); text-decoration: none; font-size: 14px; }
.span-men { color: var(--gold-m); font-weight: bold; margin-right: 5px; }

/* LOGO E SOBRE NÓS */
.footer-logo { height: 50px; width: auto; margin-bottom: 20px; transition: 0.3s; }
.footer-col:hover .footer-logo { transform: scale(1.05); } /* Logo dá um zoom leve */

.footer-local-link { margin-bottom: 20px; }
.footer-local-link a { 
    color: var(--text-m); 
    font-size: 14px; 
    text-decoration: underline; 
    font-weight: bold; 
}

/* REDES SOCIAIS */
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 35px; height: 35px; 
    border: 1px solid var(--gold-m); 
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-m); text-decoration: none; transition: 0.3s;
}
.social-link:hover { background: var(--gold-m); color: #000; transform: rotate(10deg); }

/* COPYRIGHT */
.footer-copy {
    background: var(--copy-m); 
    color: var(--gold-m); 
    text-align: center;
    padding: 20px; font-size: 13px; 
    border-top: 1px solid var(--border-color-m);
}

/* RESPONSIVIDADE */
@media (max-width: 992px) { .footer-container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-container { grid-template-columns: 1fr; } }







/* ============================================================
   RESPONSIVO
============================================================ */

    
@media (min-width: 1400px) {
    .cards { grid-template-columns: repeat(4, 1fr); padding: 0 40px 40px; }
    .partners-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 0 40px; }
    .cluba-gallery { padding: 0 120px; }
}
    


@media (min-width: 1024px) {
    .btn-share { display: none !important; }.cards { grid-template-columns: repeat(4, 1fr); }.partners-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }.cluba-gallery-grid { grid-template-columns: repeat(3, 1fr); }.car-card { width: 25%; } }


@media (min-width: 769px) and (max-width: 1024px) {
    .heroin-title { font-size: clamp(2rem, 6vw, 3.5rem); }
    .titulo-duas-cores, .sec-title { font-size: 32px; }
    .cards { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 20px 20px; }
   
    .menu-botoes { gap: 8px; }
    .btn-nav { padding: 8px 14px; font-size: 0.75rem; }
    .btn-share::before { width: 15px; height: 15px; background-size: 14px; }
    

/* ── TAMANHOS POR BREAKPOINT CARROSSEL ── */
@media (max-width: 768px) { 
    .car-card { width: 75%; } 
}
@media (min-width: 769px) and (max-width: 1024px) { 
    .car-card { width: 33.333%; } 
}
@media (min-width: 1025px) { 
    .car-card { width: 25%; } 
}

/* Responsivo mobile unificado */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; width: 100%; }
    .heroin { padding: 120px 1rem 3rem; }
    .heroin-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .heroin-buttons .btn { max-width: 100%; }
    .titulo-duas-cores, .sec-title { font-size: 26px; padding: 0 16px; }
    .section-subtitle, .sec-sub { padding: 0 20px; font-size: 0.7rem; }
    
    .menu-footer-container { padding: 20px 16px; }
    .menu-botoes { gap: 8px; }
    .btn-nav { padding: 8px 12px; font-size: 0.72rem; }
    
    .cards { display: flex; flex-direction: column; gap: 12px; padding: 10px; width: 100%; }
    .card { display: grid; grid-template-columns: 140px 1fr; grid-template-rows: auto auto auto auto; height: auto; min-height: 140px; padding: 0; width: 100%; overflow: hidden; }
    .card-img { grid-column: 1; grid-row: 1 / span 2; width: 140px; height: 100%; min-height: 140px; overflow: hidden; aspect-ratio: unset; }
    .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .card-body { grid-column: 2; grid-row: 1; padding: 10px 12px 4px; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
    .card-name { font-size: 14px; word-break: break-word; }
    .card-desc { font-size: 12px; word-break: break-word; }
    .card-hours { grid-column: 2; grid-row: 2; padding: 0 12px 8px; margin: 0; font-size: 11px; align-items: center; }
    .addr { grid-column: 1 / span 2; grid-row: 3; padding: 6px 12px; margin: 0; font-size: 11px; justify-content: center; border-top: 1px solid rgba(214,179,119,0.1); }
    .card-footer { grid-column: 1 / span 2; grid-row: 4; padding: 8px 12px; border-top: 1px solid rgba(214,179,119,0.15); }
    .footer-actions { display: flex; flex-direction: row; gap: 8px; width: 100%; }
    .btn-wpp, .btn-share { flex: 1; text-align: center; margin: 0; font-size: 10px; }
    
    
    .on-hero-cta { flex-direction: column; width: 100%; }
    .on-hero-cta a { width: 100%; text-align: center; }
}

@media (max-width: 599px) {
    .heroin { padding: 100px 1rem 2.5rem; }
    .heroin-tag { font-size: 0.65rem; }
    .heroin-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
    .heroin-subtitle { font-size: 0.9rem; }
    .titulo-duas-cores, .sec-title { font-size: 22px; padding: 0 12px; }
    .section-subtitle, .sec-sub { padding: 0 16px; letter-spacing: 0.1rem; }
   
    .menu-footer-container { padding: 16px 12px; }
    .btn-nav { padding: 8px 10px; font-size: 0.7rem; letter-spacing: 0.5px; }
    .sec-header, .secao-header { padding: 30px 0; }
}








@media (max-width: 380px) {
    .heroin-title { font-size: 1.5rem; }
    .titulo-duas-cores, .sec-title { font-size: 20px; }
    .btn-nav { font-size: 0.65rem; padding: 7px 8px; }
  
    
      .heroin-title { font-size: 1.5rem; }
    .titulo-duas-cores, .sec-title { font-size: 20px; }
    .btn-nav { font-size: 0.65rem; padding: 7px 8px; }
    
    
}

@media (min-width: 640px) {
    .on-hero-cta { flex-direction: row; }
}}