/* ============================================
   Bora pro Buteco? — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
    --amber:     #F59E0B;
    --amber-dk:  #D97706;
    --amber-lt:  #FDE68A;
    --gold:      #FBBF24;
    --foam:      #FFFBEB;
    --brown-dk:  #1C0A00;
    --brown:     #3D1A00;
    --brown-md:  #78350F;
    --brown-lt:  #B45309;
    --cream:     #FFFDF5;
    --green:     #16A34A;
    --red:       #DC2626;
    --border:    #FDE68A;
    --shadow:    rgba(61,26,0,.15);
}

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

body {
    font-family: 'Nunito', system-ui, sans-serif;
    background-color: var(--cream);
    color: var(--brown-dk);
    min-height: 100vh;
}

h1,h2,h3,.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }

/* ── Navbar ──────────────────────────────────── */
.navbar-buteco {
    background: var(--brown-dk);
    border-bottom: 4px solid var(--amber);
    padding: 0;
}
.navbar-buteco .container {
    height: 64px;
    align-items: stretch;
}
.navbar-buteco .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--amber) !important;
    padding: 0 16px 0 0;
    border-right: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
    line-height: 1;
}
.navbar-buteco .navbar-brand .logo-icon {
    font-size: 1.6rem;
    animation: wobble 3s ease-in-out infinite;
    will-change: transform;
}
@keyframes wobble {
    0%,100% { transform: rotate(-5deg); }
    50%      { transform: rotate(5deg); }
}
.navbar-buteco .navbar-brand .highlight { color: var(--gold); }

.navbar-buteco .nav-link {
    color: rgba(255,255,255,.75) !important;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 0 16px !important;
    height: 64px;
    display: flex !important;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: color .15s, border-color .15s;
}
.navbar-buteco .nav-link:hover,
.navbar-buteco .nav-link.active {
    color: var(--gold) !important;
    border-bottom-color: var(--gold);
}
.navbar-buteco .nav-link i { font-size: 1rem; }

.navbar-toggler { border: none; padding: 0 16px; }
.navbar-toggler:focus { box-shadow: none; }

.btn-nav-login {
    background: transparent;
    border: 2px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.85) !important;
    border-radius: 8px;
    font-weight: 700;
    font-size: .85rem;
    padding: 6px 16px !important;
    height: auto !important;
    border-bottom: 2px solid rgba(255,255,255,.3) !important;
    transition: all .15s !important;
}
.btn-nav-login:hover {
    border-color: var(--amber) !important;
    color: var(--amber) !important;
}
.btn-nav-register {
    background: var(--amber) !important;
    border: none;
    color: var(--brown-dk) !important;
    border-radius: 8px;
    font-weight: 800;
    font-size: .85rem;
    padding: 7px 18px !important;
    height: auto !important;
    border-bottom: none !important;
    transition: background .15s !important;
}
.btn-nav-register:hover { background: var(--gold) !important; }

/* ── Hero ────────────────────────────────────── */
.hero {
    background: var(--brown-dk);
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(245,158,11,.15) 0%, transparent 65%),
        radial-gradient(ellipse at 10% 80%, rgba(251,191,36,.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-bubbles {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 45%;
    pointer-events: none;
    overflow: hidden;
}
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(251,191,36,.3), rgba(245,158,11,.05));
    border: 1px solid rgba(251,191,36,.15);
    animation: float linear infinite;
    will-change: transform, opacity;
}
.bubble:nth-child(1) { width:60px; height:60px; left:20%; bottom:-10%; animation-duration:8s; animation-delay:0s; }
.bubble:nth-child(2) { width:40px; height:40px; left:50%; bottom:-10%; animation-duration:6s; animation-delay:1s; }
.bubble:nth-child(3) { width:80px; height:80px; left:70%; bottom:-10%; animation-duration:10s; animation-delay:2s; }
.bubble:nth-child(4) { width:30px; height:30px; left:35%; bottom:-10%; animation-duration:7s; animation-delay:3s; }
.bubble:nth-child(5) { width:50px; height:50px; left:85%; bottom:-10%; animation-duration:9s; animation-delay:1.5s; }
@keyframes float { to { transform: translateY(-110vh); opacity: 0; } }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.3);
    color: var(--amber);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
}
.hero h1 .line-gold { color: var(--gold); }
.hero h1 .line-amber { color: var(--amber); }

.hero-sub {
    color: rgba(255,255,255,.65);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 36px;
}

.search-box {
    display: flex;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    max-width: 520px;
}
.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: var(--brown-dk);
    background: transparent;
}
.search-box input::placeholder { color: #aaa; font-weight: 400; }
.search-box button {
    background: var(--amber);
    border: none;
    padding: 16px 24px;
    color: var(--brown-dk);
    font-weight: 800;
    font-size: .95rem;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .15s;
}
.search-box button:hover { background: var(--gold); }

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero-copo {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    min-height: 380px;
}
.hero-copo-img {
    font-size: 12rem;
    line-height: 1;
    filter: drop-shadow(0 20px 40px rgba(245,158,11,.4));
    animation: sway 4s ease-in-out infinite;
    -webkit-user-select: none;
    user-select: none;
    will-change: transform;
}
@keyframes sway {
    0%,100% { transform: rotate(-3deg) translateY(0px); }
    50%      { transform: rotate(3deg) translateY(-12px); }
}
.hero-bottom-wave {
    display: block;
    width: 100%;
    margin-top: -2px;
}

/* ── Botões ──────────────────────────────────── */
.btn-amber {
    background: var(--amber);
    color: var(--brown-dk);
    border: none;
    font-weight: 800;
    border-radius: 10px;
    transition: background .15s, transform .1s;
}
.btn-amber:hover { background: var(--gold); color: var(--brown-dk); transform: translateY(-1px); }
.btn-amber:active { transform: translateY(0); }

.btn-outline-amber {
    background: transparent;
    color: var(--amber);
    border: 2px solid var(--amber);
    font-weight: 700;
    border-radius: 10px;
    transition: all .15s;
}
.btn-outline-amber:hover { background: var(--amber); color: var(--brown-dk); }

.btn-brown {
    background: var(--brown);
    color: #fff;
    border: none;
    font-weight: 700;
    border-radius: 10px;
    transition: background .15s;
}
.btn-brown:hover { background: var(--brown-md); color: #fff; }

/* ── Section titles ──────────────────────────── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--amber-lt);
    color: var(--brown-md);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--brown-dk);
    margin-bottom: 6px;
}
.section-sub {
    color: var(--brown-md);
    font-size: .95rem;
    opacity: .8;
}

/* ── Cards de buteco ─────────────────────────── */
.card-buteco {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 2px 12px var(--shadow);
    transition: transform .2s, box-shadow .2s, border-color .2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.card-buteco:hover {
    transform: translateY(-6px) rotate(-.3deg);
    box-shadow: 0 16px 40px var(--shadow);
    border-color: var(--amber);
}
.card-buteco-img {
    height: 190px;
    overflow: hidden;
    position: relative;
}
.card-buteco-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.card-buteco:hover .card-buteco-img img { transform: scale(1.05); }
.card-buteco-placeholder {
    height: 190px;
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-md) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: transform .3s;
}
.card-buteco:hover .card-buteco-placeholder { transform: scale(1.05); }

.card-buteco-nota {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--brown-dk);
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.card-buteco-nota small {
    font-family: 'Nunito', sans-serif;
    font-size: .55rem;
    color: rgba(255,255,255,.5);
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.card-buteco-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card-buteco-cat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--amber-lt);
    color: var(--brown-md);
    border-radius: 6px;
    padding: 2px 10px;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.card-buteco-nome {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: .5px;
    color: var(--brown-dk);
    line-height: 1.2;
    margin-bottom: 4px;
}
.card-buteco-local {
    font-size: .82rem;
    color: var(--brown-md);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}
.card-buteco-stars {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}
.stars { color: var(--amber); letter-spacing: 1px; }
.stars-sm { font-size: .85rem; }
.stars-lg { font-size: 1.3rem; }
.stars-count { font-size: .78rem; color: var(--brown-md); font-weight: 600; }

/* ── Avaliações recentes ─────────────────────── */
.feed-section {
    background: var(--brown-dk);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.feed-section::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,.015) 0px,
        rgba(255,255,255,.015) 1px,
        transparent 1px,
        transparent 20px
    );
}
.card-feed {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 18px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: background .2s, transform .2s;
}
.card-feed:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-3px);
}
.feed-avatar {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--amber);
    color: var(--brown-dk);
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}
.feed-buteco-link {
    color: var(--amber) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
}
.feed-buteco-link:hover { color: var(--gold) !important; text-decoration: underline; }
.feed-comment {
    color: rgba(255,255,255,.65);
    font-size: .85rem;
    line-height: 1.5;
    margin-top: 8px;
    font-style: italic;
}

/* ── Ranking ─────────────────────────────────── */
.ranking-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid transparent;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 2px 8px var(--shadow);
}
.ranking-item:hover {
    border-color: var(--amber);
    transform: translateX(4px);
    box-shadow: 0 4px 16px var(--shadow);
    color: inherit;
}
.rank-pos {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
    width: 42px;
    text-align: center;
    flex-shrink: 0;
}
.rank-pos.p1 { color: #FFD700; }
.rank-pos.p2 { color: #C0C0C0; }
.rank-pos.p3 { color: #CD7F32; }
.rank-pos.pn { color: var(--amber-lt); }
.ranking-item .nota-pill {
    margin-left: auto;
    background: var(--amber);
    color: var(--brown-dk);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    padding: 4px 12px;
    border-radius: 8px;
    line-height: 1.2;
    flex-shrink: 0;
}

/* ── Formulário de avaliação ─────────────────── */
.stars-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
}
.stars-input input { display: none; }
.stars-input label {
    font-size: 2rem;
    color: var(--border);
    cursor: pointer;
    transition: color .1s, transform .1s;
    line-height: 1;
}
.stars-input input:checked ~ label,
.stars-input label:hover,
.stars-input label:hover ~ label {
    color: var(--amber);
    transform: scale(1.15);
}

/* ── Barras de nota ──────────────────────────── */
.nota-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .88rem;
}
.nota-row-label {
    width: 100px;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--brown-md);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nota-bar {
    flex: 1;
    height: 10px;
    background: var(--amber-lt);
    border-radius: 5px;
    overflow: hidden;
}
.nota-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--amber), var(--gold));
    border-radius: 5px;
    transition: width .6s cubic-bezier(.4,0,.2,1);
}
.nota-val {
    width: 36px;
    text-align: right;
    font-weight: 800;
    color: var(--brown-dk);
    font-size: .88rem;
}

/* ── Badge nota geral ────────────────────────── */
.nota-geral-badge {
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: var(--brown-dk);
    font-family: 'Bebas Neue', sans-serif;
    border-radius: 16px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(245,158,11,.4);
    flex-shrink: 0;
}
.nota-geral-num { font-size: 2.8rem; line-height: 1; display: block; }
.nota-geral-label { font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; opacity: .7; }

/* ── Cards de avaliação ──────────────────────── */
.card-avaliacao {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
    transition: border-color .15s, box-shadow .15s;
}
.card-avaliacao:hover {
    border-color: var(--amber);
    box-shadow: 0 4px 16px var(--shadow);
}
.av-avatar {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--brown-dk);
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.av-mini-cats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 8px 0;
}
.av-cat-item {
    font-size: .75rem;
    color: var(--brown-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}
.av-comment {
    background: var(--foam);
    border-left: 3px solid var(--amber);
    border-radius: 0 8px 8px 0;
    padding: 8px 12px;
    font-size: .88rem;
    color: var(--brown-md);
    font-style: italic;
    margin-top: 8px;
}

/* ── Btn curtir ──────────────────────────────── */
.btn-curtir {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--brown-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all .15s;
}
.btn-curtir:hover, .btn-curtir.curtido {
    background: var(--amber-lt);
    border-color: var(--amber);
    color: var(--brown-md);
}

/* ── CTA ─────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dk) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-section::after {
    content: '🍺';
    position: absolute;
    font-size: 180px;
    opacity: .04;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    pointer-events: none;
}

/* ── Footer ──────────────────────────────────── */
.footer-buteco {
    background: #0D0500;
    border-top: 4px solid var(--amber);
    padding: 40px 0 24px;
    color: rgba(255,255,255,.5);
    font-size: .88rem;
}
.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--amber);
}
.footer-logo span { color: var(--gold); }
.footer-link {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .15s;
}
.footer-link:hover { color: var(--amber); }

/* ── Flash ───────────────────────────────────── */
.alert-flash {
    border-radius: 12px;
    font-weight: 600;
    border: none;
}
.alert-flash.alert-success { background: #ECFDF5; color: #065F46; border-left: 4px solid #10B981; }
.alert-flash.alert-danger  { background: #FEF2F2; color: #991B1B; border-left: 4px solid #EF4444; }
.alert-flash.alert-warning { background: #FFFBEB; color: #92400E; border-left: 4px solid var(--amber); }

/* ── Página buteco capa ──────────────────────── */
.buteco-hero {
    background: var(--brown-dk);
    padding: 40px 0;
    border-bottom: 4px solid var(--amber);
}
.buteco-capa-wrap {
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.buteco-capa-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.buteco-capa-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--brown), var(--amber-dk));
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
}

/* ── Auth — split screen ─────────────────────── */
.auth-page {
    display: flex;
    min-height: 100vh;
}

/* Painel esquerdo: brand */
.auth-panel--brand {
    width: 420px;
    flex-shrink: 0;
    background: linear-gradient(160deg, #0D0500 0%, #1C0A00 45%, #2D1200 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.auth-panel--brand::before {
    content: '🍺';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 260px;
    opacity: .04;
    pointer-events: none;
    line-height: 1;
}
.auth-panel__inner {
    padding: 48px 40px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.auth-back {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.45);
    font-size: .8rem;
    text-decoration: none;
    margin-bottom: 40px;
    transition: color .15s;
}
.auth-back:hover { color: var(--amber); }

.auth-brand-emoji {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 16px;
}
.auth-brand-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.05;
    margin: 0 0 14px;
}
.auth-brand-title span { color: var(--amber); }
.auth-brand-sub {
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    line-height: 1.7;
    margin: 0 0 28px;
}

.auth-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.auth-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.7);
    font-size: .875rem;
    font-weight: 600;
}
.auth-perks li i { color: var(--amber); font-size: 1rem; flex-shrink: 0; }

.auth-brand-badge {
    display: inline-flex;
    flex-direction: column;
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.3);
    border-radius: 14px;
    padding: 12px 20px;
}
.auth-brand-badge__num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--amber);
    line-height: 1;
}
.auth-brand-badge__label {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    font-weight: 600;
}

/* Painel direito: formulário */
.auth-panel--form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 40px 24px;
    overflow-y: auto;
}
.auth-form-wrap {
    width: 100%;
    max-width: 420px;
}
.auth-form-header {
    margin-bottom: 28px;
}
.auth-form-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--brown-dk);
    margin: 0 0 4px;
}
.auth-form-header p {
    color: var(--brown-md);
    font-size: .88rem;
    margin: 0;
}

.auth-alert {
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.auth-alert--danger {
    background: #FEF2F2;
    color: #B91C1C;
    border: 1px solid #FECACA;
}

.auth-form { display: flex; flex-direction: column; gap: 14px; }

.auth-field {
    position: relative;
    display: flex;
    align-items: center;
}
.auth-field__icon {
    position: absolute;
    left: 14px;
    color: var(--brown-md);
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}
.auth-field__input {
    width: 100%;
    height: 50px;
    padding: 0 44px 0 42px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: .9rem;
    color: var(--brown-dk);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}
.auth-field__input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}
.auth-field__input::placeholder { color: #aaa; }
.auth-field__select { cursor: pointer; }

.auth-field__eye {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--brown-md);
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
    line-height: 1;
    transition: color .15s;
}
.auth-field__eye:hover { color: var(--amber); }

/* Linha com dois campos lado a lado */
.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 52px;
    background: var(--amber);
    color: var(--brown-dk);
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background .15s, transform .1s, box-shadow .15s;
    margin-top: 6px;
}
.auth-submit:hover {
    background: var(--amber-dk);
    box-shadow: 0 6px 20px rgba(180,83,9,.3);
    transform: translateY(-1px);
}
.auth-submit:active { transform: translateY(0); }

.auth-switch {
    text-align: center;
    margin: 20px 0 0;
    font-size: .875rem;
    color: var(--brown-md);
}
.auth-switch a {
    color: var(--amber-dk);
    font-weight: 800;
    text-decoration: none;
}
.auth-switch a:hover { text-decoration: underline; }

/* Mobile: empilha os painéis */
@media (max-width: 768px) {
    .auth-page { flex-direction: column; }
    .auth-panel--brand {
        width: 100%;
        padding: 0;
    }
    .auth-panel__inner {
        padding: 32px 24px 28px;
    }
    .auth-brand-title { font-size: 2rem; }
    .auth-back { margin-bottom: 20px; }
    .auth-perks { display: none; }
    .auth-brand-badge { display: none; }
    .auth-panel--form { padding: 32px 20px; }
    .auth-row { grid-template-columns: 1fr; }
}

/* Mantém compatibilidade com código antigo */
.auth-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 40px var(--shadow);
    overflow: hidden;
}
.auth-card-header {
    background: var(--brown-dk);
    padding: 32px;
    text-align: center;
    border-bottom: 4px solid var(--amber);
}
.auth-card-body { padding: 32px; }

/* ── Google Maps button ──────────────────────── */
.btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
    transition: background .15s, color .15s, border-color .15s;
}
.btn-maps:hover {
    background: #4285F4;
    border-color: #4285F4;
    color: #fff;
}
.btn-maps i { font-size: .9rem; }

/* Versão compacta (cards da busca geo) */
.btn-maps-sm {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #EBF3FD;
    color: #1A56DB;
    border: 1px solid #BFDBFE;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: .74rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
    transition: background .15s, color .15s;
}
.btn-maps-sm:hover {
    background: #4285F4;
    border-color: #4285F4;
    color: #fff;
}

/* ── Admin sidebar ───────────────────────────── */
.sidebar-admin {
    background: var(--brown-dk);
    min-height: 100vh;
    width: 240px;
    position: fixed;
    top: 0; left: 0;
    z-index: 100;
    border-right: 3px solid var(--amber);
    display: flex;
    flex-direction: column;
}
.sidebar-brand {
    padding: 20px 20px 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--amber);
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
    display: block;
}
.sidebar-brand span { color: var(--gold); }
.sidebar-admin .nav-link {
    color: rgba(255,255,255,.65);
    padding: 11px 20px;
    font-size: .88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .3px;
    border-left: 3px solid transparent;
    transition: all .15s;
}
.sidebar-admin .nav-link:hover,
.sidebar-admin .nav-link.active {
    color: var(--gold);
    background: rgba(255,255,255,.05);
    border-left-color: var(--amber);
}
.sidebar-admin .nav-link i { font-size: 1rem; width: 18px; text-align: center; }
.sidebar-divider {
    height: 1px;
    background: rgba(255,255,255,.08);
    margin: 8px 20px;
}
.admin-content {
    margin-left: 240px;
    padding: 28px;
    min-height: 100vh;
    background: #F5F0E8;
}
.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}
.admin-page-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--brown-dk);
    margin: 0;
}

/* ── Stat cards (admin) ──────────────────────── */
.stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    border-top: 4px solid var(--amber);
    box-shadow: 0 2px 12px var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
}
.stat-icon {
    font-size: 2.2rem;
    width: 56px; height: 56px;
    background: var(--amber-lt);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    line-height: 1;
    color: var(--brown-dk);
}
.stat-label {
    font-size: .78rem;
    color: var(--brown-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── Table ───────────────────────────────────── */
.table-buteco { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 12px var(--shadow); }
.table-buteco thead th {
    background: var(--brown-dk);
    color: rgba(255,255,255,.75);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    border: none;
    padding: 12px 16px;
}
.table-buteco tbody tr { border-bottom: 1px solid #F5EFE0; transition: background .1s; }
.table-buteco tbody tr:last-child { border-bottom: none; }
.table-buteco tbody tr:hover { background: var(--foam); }
.table-buteco td { padding: 12px 16px; vertical-align: middle; border: none; font-size: .88rem; }

/* ── Form controls ───────────────────────────── */
.form-control, .form-select {
    border: 2px solid #E5D5B0;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    padding: 9px 14px;
    transition: border-color .15s, box-shadow .15s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(245,158,11,.15);
    outline: none;
}
.form-label { font-weight: 700; font-size: .85rem; color: var(--brown-md); margin-bottom: 6px; }

/* ── Chips categoria filtro ──────────────────── */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--brown-md);
    text-decoration: none;
    transition: all .15s;
}
.chip:hover, .chip.active {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--brown-dk);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991px) {
    .sidebar-admin { display: none; }
    .admin-content { margin-left: 0; }
    .hero { padding: 50px 0 0; }
    .hero-copo { display: none; }
    .hero-stats { gap: 20px; }
}
@media (max-width: 576px) {
    .hero h1 { font-size: 2.8rem; }
    .search-box input { font-size: .9rem; }
}

/* ════════════════════════════════════════════════
   HOME PAGE — Estilo Comida di Buteco
════════════════════════════════════════════════ */

/* ── Hero Full ───────────────────────────────── */
.hero-full {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Gradiente rico em camadas — sem depender de imagem */
    background:
        radial-gradient(ellipse at 20% 50%, rgba(180,83,9,.55) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(245,158,11,.25) 0%, transparent 45%),
        radial-gradient(ellipse at 60% 80%, rgba(120,53,15,.4) 0%, transparent 50%),
        linear-gradient(160deg, #0D0500 0%, #1C0A00 40%, #2D1200 70%, #1C0A00 100%);
    padding: 90px 24px 70px;
    overflow: hidden;
}

/* Textura de madeira simulada com gradiente diagonal */
.hero-full::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(
            105deg,
            transparent 0px,
            transparent 18px,
            rgba(255,255,255,.012) 18px,
            rgba(255,255,255,.012) 19px
        ),
        repeating-linear-gradient(
            15deg,
            transparent 0px,
            transparent 40px,
            rgba(180,83,9,.04) 40px,
            rgba(180,83,9,.04) 41px
        );
    pointer-events: none;
}

/* Fade para o conteúdo abaixo */
.hero-full::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Luz central âmbar */
.hero-full-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 55%, rgba(245,158,11,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 15% 80%, rgba(251,191,36,.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Decoração: bolhas de cerveja no fundo */
.hero-full-overlay::before {
    content: '🍺';
    position: absolute;
    font-size: 260px;
    right: -30px;
    bottom: -40px;
    opacity: .04;
    transform: rotate(15deg);
    filter: grayscale(1);
    pointer-events: none;
}
.hero-full-overlay::after {
    content: '🍻';
    position: absolute;
    font-size: 180px;
    left: -20px;
    top: 10px;
    opacity: .04;
    transform: rotate(-20deg);
    filter: grayscale(1);
    pointer-events: none;
}
.hero-full-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(245,158,11,.2);
    border: 1px solid rgba(245,158,11,.4);
    color: var(--amber);
    border-radius: 20px;
    padding: 5px 16px;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 8vw, 6rem);
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 14px;
    text-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.hero-desc {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ── Search bar centralizada ─────────────────── */
.hero-search-bar { width: 100%; max-width: 680px; margin: 0 auto 32px; }
.hsb-inner {
    display: flex;
    flex-direction: row;   /* garante horizontal em todos os tamanhos > mobile */
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(245,158,11,.2);
    overflow: hidden;
    min-height: 62px;
}
.hsb-field {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
    min-width: 0;
}
.hsb-icon {
    color: var(--amber);
    font-size: 1rem;
    flex-shrink: 0;
}
.hsb-field input,
.hsb-field select {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Nunito', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--brown-dk);
    background: transparent;
    min-width: 0;
    height: 100%;
    padding: 14px 0;
}
.hsb-field select { cursor: pointer; -webkit-appearance: none; appearance: none; }
.hsb-divider {
    width: 1px;
    background: #EDD9A3;
    flex-shrink: 0;
    align-self: center;
    height: 32px;
}
.hsb-btn {
    background: var(--amber);
    border: none;
    color: var(--brown-dk);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    padding: 0 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    transition: background .15s;
    flex-shrink: 0;
    border-radius: 0 14px 14px 0;
}
.hsb-btn:hover { background: var(--gold); }

/* ── Counters no hero ────────────────────────── */
.hero-counters {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 10px 24px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.hc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
}
.hc-item strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
}
.hc-item span {
    font-size: .7rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 700;
}
.hc-sep {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}

/* ── Barra de categorias deslizante ──────────── */
.cats-bar {
    background: #fff;
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 64px;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.cats-track {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    overflow-x: auto;
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */
    max-width: 1200px;
    margin: 0 auto;
}
.cats-track::-webkit-scrollbar { display: none; }
.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 24px;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--brown-md);
    font-weight: 700;
    font-size: .85rem;
    white-space: nowrap;
    text-decoration: none;
    transition: all .15s;
    flex-shrink: 0;
}
.cat-chip:hover {
    border-color: var(--amber);
    color: var(--brown-dk);
}
.cat-chip.active {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--brown-dk);
}
.cat-chip-icon { font-size: 1rem; }

/* ── Section helpers ─────────────────────────── */
.section-padded { padding: 60px 0; }
.section-cream  { background: #FFF8EE; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 12px;
}
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--amber-lt);
    color: var(--brown-md);
    border-radius: 6px;
    padding: 3px 12px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    letter-spacing: 1px;
    color: var(--brown-dk);
    margin: 0;
    line-height: 1.1;
}
.btn-link-amber {
    color: var(--amber);
    font-weight: 700;
    text-decoration: none;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: color .15s;
}
.btn-link-amber:hover { color: var(--amber-dk); }

/* ── Grid de butecos ─────────────────────────── */
.buteco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 991px) { .buteco-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .buteco-grid { grid-template-columns: 1fr; } }

/* Card destaque ocupa 2 colunas na primeira linha */
.buteco-card--featured {
    grid-column: span 2;
}
@media (max-width: 767px) {
    .buteco-card--featured { grid-column: span 1; }
}

.buteco-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 14px rgba(61,26,0,.1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
    border: 2px solid transparent;
}
.buteco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(61,26,0,.18);
    border-color: var(--amber);
    color: inherit;
}

.buteco-card__photo {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.buteco-card--featured .buteco-card__photo { height: 280px; }

.buteco-card__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .35s;
}
.buteco-card:hover .buteco-card__photo img { transform: scale(1.06); }

.buteco-card__photo-ph {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--brown) 0%, var(--amber-dk) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    transition: transform .35s;
}
.buteco-card:hover .buteco-card__photo-ph { transform: scale(1.06); }

.buteco-card__badges {
    position: absolute;
    top: 12px; left: 12px;
    display: flex; gap: 6px;
}
.badge-cat {
    background: rgba(28,10,0,.7);
    color: var(--amber);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.badge-rank {
    font-size: 1.1rem;
    background: rgba(28,10,0,.5);
    border-radius: 6px;
    padding: 2px 6px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.buteco-card__nota {
    position: absolute;
    bottom: 12px; right: 12px;
    background: var(--amber);
    color: var(--brown-dk);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    padding: 6px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.buteco-card__body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.buteco-card__name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: .5px;
    color: var(--brown-dk);
    margin: 0 0 5px;
    line-height: 1.2;
}
.buteco-card__local {
    font-size: .82rem;
    color: var(--brown-md);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.buteco-card__local i { color: var(--amber); }
.buteco-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bc-stars { color: var(--amber); letter-spacing: 1px; font-size: .9rem; }
.bc-count  { font-size: .75rem; color: var(--brown-md); font-weight: 600; }

/* ── Banner CTA ──────────────────────────────── */
.banner-cta {
    background: linear-gradient(135deg, #D97706 0%, var(--brown-dk) 55%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.banner-cta::before {
    content: '🍺';
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
    font-size: 160px;
    opacity: .06;
    pointer-events: none;
}
.banner-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.banner-cta__text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 8px;
}
.banner-cta__text p {
    color: rgba(255,255,255,.7);
    margin: 0;
    font-size: .95rem;
    max-width: 420px;
}
.banner-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── Botões utilitários ──────────────────────── */
.btn-amber-solid {
    display: inline-flex;
    align-items: center;
    background: var(--amber);
    color: var(--brown-dk);
    border: none;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: .9rem;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s, transform .1s;
}
.btn-amber-solid:hover { background: var(--gold); color: var(--brown-dk); transform: translateY(-1px); }
.btn-amber-solid.btn-lg-pill { border-radius: 30px; padding: 13px 30px; font-size: 1rem; }
.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: rgba(255,255,255,.85);
    border: 2px solid rgba(255,255,255,.35);
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: .9rem;
    text-decoration: none;
    transition: border-color .15s, color .15s;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost-light.btn-lg-pill { border-radius: 30px; padding: 13px 30px; font-size: 1rem; }

/* ── Feed grid ───────────────────────────────── */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 991px) { .feed-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .feed-grid { grid-template-columns: 1fr; } }

.feed-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 2px solid var(--border);
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
.feed-card:hover {
    border-color: var(--amber);
    box-shadow: 0 6px 20px rgba(61,26,0,.1);
    transform: translateY(-3px);
}
.feed-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.feed-card__avatar {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--brown-dk);
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.feed-card__meta { flex: 1; min-width: 0; }
.feed-card__meta strong { display: block; font-size: .88rem; color: var(--brown-dk); }
.feed-card__buteco {
    display: block;
    font-size: .78rem;
    color: var(--amber);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feed-card__buteco:hover { text-decoration: underline; }
.feed-card__nota {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--amber);
    line-height: 1;
    flex-shrink: 0;
}
.feed-card__nota small { font-size: .7rem; color: var(--brown-md); }
.feed-card__stars { color: var(--amber); letter-spacing: 1px; font-size: .85rem; margin-bottom: 8px; }
.feed-card__comment {
    font-size: .83rem;
    color: var(--brown-md);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    padding: 8px 12px;
    background: var(--foam);
    border-left: 3px solid var(--amber);
    border-radius: 0 8px 8px 0;
}

/* ── Ranking list ────────────────────────────── */
.ranking-list { display: flex; flex-direction: column; gap: 10px; }
.ranking-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s, transform .15s, box-shadow .15s;
}
.ranking-row:hover {
    border-color: var(--amber);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(61,26,0,.1);
    color: inherit;
}
.ranking-row__pos {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}
.ranking-row__pos.gold   { color: #F59E0B; }
.ranking-row__pos.silver { color: #9CA3AF; }
.ranking-row__pos.bronze { color: #B45309; }
.ranking-row__pos.normal { color: var(--amber-lt); }
.ranking-row__thumb {
    width: 52px; height: 52px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.ranking-row__thumb--ph {
    background: linear-gradient(135deg, var(--brown), var(--amber-dk));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.ranking-row__info { flex: 1; min-width: 0; }
.ranking-row__name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: .5px;
    color: var(--brown-dk);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}
.ranking-row__local {
    font-size: .76rem;
    color: var(--brown-md);
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
}
.ranking-row__local i { color: var(--amber); }
.ranking-row__nota {
    background: var(--amber);
    color: var(--brown-dk);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    padding: 5px 12px;
    border-radius: 8px;
    line-height: 1.2;
    flex-shrink: 0;
}

/* ── Empty state ─────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 60px 24px;
    border: 2px dashed var(--border);
    border-radius: 16px;
}
.empty-state span { font-size: 3rem; display: block; margin-bottom: 12px; }
.empty-state p    { color: var(--brown-md); font-weight: 600; margin-bottom: 16px; }

/* ── Geolocalização ──────────────────────────── */
.section-geo { background: var(--cream); }

.geo-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
    border: 2px dashed var(--amber-lt);
    border-radius: 20px;
    background: linear-gradient(135deg, #FFFDF5, #FEF3C7);
    gap: 16px;
    transition: border-color .2s;
}
.geo-cta__icon { font-size: 3rem; line-height: 1; }
.geo-cta__text {
    font-size: 1rem;
    color: var(--brown-md);
    font-weight: 600;
    max-width: 480px;
    margin: 0;
    line-height: 1.6;
}

/* Spinner inline no botão */
.geo-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(61,26,0,.25);
    border-top-color: var(--brown-dk);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    vertical-align: middle;
    will-change: transform;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Mensagens de estado */
.geo-msg {
    font-size: .85rem;
    font-weight: 600;
    min-height: 1.2em;
    margin: 0;
}
.geo-msg--erro  { color: #DC2626; }
.geo-msg--vazio { color: var(--brown-md); }

/* Badge de distância nos cards vindos da geo */
.badge-dist {
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    border-radius: 20px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Seção ativa: esconde o CTA e mostra só o grid */
.geo-section--active .geo-cta { display: none; }

/* ── Responsive hero ─────────────────────────── */
@media (max-width: 767px) {
    .hero-full { min-height: 480px; padding: 70px 16px 50px; }
    .hsb-inner { flex-direction: column; height: auto; border-radius: 14px; padding: 4px; gap: 0; }
    .hsb-field { padding: 12px 14px; width: 100%; }
    .hsb-divider { width: 100%; height: 1px; }
    .hsb-btn { width: 100%; justify-content: center; padding: 14px; border-radius: 10px; }
    .hero-counters { gap: 0; padding: 8px 12px; }
    .hc-item { padding: 0 10px; }
    .hc-item strong { font-size: 1.2rem; }
    .banner-cta__inner { flex-direction: column; text-align: center; }
    .banner-cta__text p { margin: 0 auto; }
    .banner-cta__actions { justify-content: center; }
}
