/* SPARRAMA - CSS COMPLETO */
:root {
    --pri: #8B1A1A;
    --pri-d: #6B1010;
    --gold: #D4A843;
    --gold-l: #E8C96A;
    --gold-d: #B8922E;
    --bg: #0D0D0D;
    --bg2: #1A1A1A;
    --bg3: #111111;
    --bg4: #1E1E1E;
    --txt: #F5F0EB;
    --txt2: #B0A89E;
    --mute: #7A7268;
    --borda: #2A2520;
    --r: 12px;
    --rs: 8px;
    --tr: all 0.3s ease;
    --ft: 'Playfair Display', Georgia, serif;
    --fb: 'Montserrat', sans-serif;
    --fs: 'Dancing Script', cursive;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    outline: none;
    border: none
}

/* CUSTOM SCROLLBAR - DESIGN PREMIUM */
::-webkit-scrollbar {
    width: 10px;
    background: var(--bg);
}

::-webkit-scrollbar-track {
    background: var(--bg2);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
    border: 2px solid var(--bg2);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pri);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    font-family: var(--fb);
    background: var(--bg);
    color: var(--txt);
    line-height: 1.7;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--tr)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.gold {
    color: var(--gold)
}

/* SECTION HEADERS */
.section-label {
    font-family: var(--fs);
    color: var(--gold);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 8px
}

.section-title {
    font-family: var(--ft);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--gold)
}

.section-divider span {
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: .5
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .5px;
    transition: var(--tr);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--fb);
    justify-content: center
}

.btn-primary {
    background: var(--pri);
    color: #fff;
    border-color: var(--pri)
}

.btn-primary:hover {
    background: var(--pri-d);
    border-color: var(--pri-d);
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: var(--txt);
    border-color: var(--gold)
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-2px)
}

.btn-sm {
    padding: 10px 22px;
    font-size: .85rem
}

/* ========== NAVBAR PRETA FIXA ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000;
    padding: 12px 0;
    border-bottom: 1px solid var(--borda)
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.nav-logo img {
    height: 60px;
    object-fit: contain
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.nav-link {
    font-size: .9rem;
    font-weight: 500;
    color: var(--txt2);
    position: relative;
    letter-spacing: .5px
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--tr)
}

.nav-link:hover {
    color: var(--gold)
}

.nav-link:hover::after {
    width: 100%
}

.btn-nav {
    background: var(--pri);
    color: #fff;
    padding: 10px 20px;
    font-size: .85rem;
    border: none;
    white-space: nowrap;
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--bg)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-actions { display: none; } /* Removido conforme solicitado */

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--txt);
    transition: var(--tr)
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .8)) url('img/hero-bg.png') center/cover no-repeat
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    animation: hFade 1.2s ease
}

@keyframes hFade {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-subtitle-top {
    font-family: var(--fs);
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 8px
}

.hero-title {
    font-family: var(--ft);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 8px;
    line-height: 1.1
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px auto;
    color: var(--gold)
}

.hero-divider span {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.hero-subtitle {
    font-family: var(--ft);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--gold-l);
    font-style: italic;
    margin-bottom: 16px;
    letter-spacing: 3px
}

.hero-description {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 36px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gold);
    font-size: 1.5rem;
    animation: sB 2s infinite
}

@keyframes sB {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(10px)
    }
}

/* ========== DESTAQUES ========== */
.destaques {
    padding: 50px 0;
    background: var(--bg3);
    border-top: 1px solid var(--borda);
    border-bottom: 1px solid var(--borda)
}

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.destaque-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg2);
    border-radius: var(--r);
    border: 1px solid var(--borda);
    transition: var(--tr)
}

.destaque-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold)
}

.destaque-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(139, 26, 26, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold);
    border: 1px solid rgba(212, 168, 67, .15)
}

.destaque-card h3 {
    font-family: var(--ft);
    font-size: 1.2rem;
    margin-bottom: 10px
}

.destaque-card p {
    color: var(--txt2);
    font-size: .9rem;
    line-height: 1.6
}

/* ========== SOBRE ========== */
.sobre {
    padding: 60px 0;
    background: var(--bg)
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.sobre-images {
    position: relative
}

.sobre-img-main {
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .4)
}

.sobre-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.sobre-img-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
    border-radius: var(--r);
    overflow: hidden
}

.sobre-img-row img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform .5s
}

.sobre-img-row img:hover {
    transform: scale(1.05)
}

.sobre-experience {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--pri), var(--pri-d));
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--r);
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
    border: 1px solid rgba(212, 168, 67, .2)
}

.exp-number {
    display: block;
    font-family: var(--ft);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1
}

.exp-text {
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: .9
}

.sobre-content .section-label,
.sobre-content .section-title {
    text-align: left
}

.sobre-content .section-title {
    line-height: 1.3
}

.sobre-content .section-divider {
    justify-content: flex-start
}

.sobre-text {
    color: var(--txt2);
    margin-bottom: 16px;
    font-size: .95rem;
    line-height: 1.8
}

.sobre-text strong {
    color: var(--txt)
}

.sobre-stats {
    display: flex;
    gap: 30px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--borda)
}

.stat-item {
    text-align: center;
    flex: 1
}

.stat-number {
    display: block;
    font-family: var(--ft);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold)
}

.stat-label {
    font-size: .8rem;
    color: var(--mute);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px
}

/* ========== CARDÁPIO ========== */
.cardapio {
    padding: 60px 0;
    background: var(--bg3)
}

.cardapio-header {
    text-align: center;
    margin-bottom: 25px
}

/* CARROSSEL - CENTRALIZADO */
.menu-carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
    aspect-ratio: 16/7
}

.mc-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease
}

.mc-slide.active {
    opacity: 1
}

.mc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, .5);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
    backdrop-filter: blur(4px)
}

.mc-btn:hover {
    background: rgba(212, 168, 67, .3);
    border-color: var(--gold)
}

.mc-prev {
    left: 16px
}

.mc-next {
    right: 16px
}

.mc-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px
}

.mc-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    border: 1px solid rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: var(--tr)
}

.mc-dots .dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3)
}

/* TABS */
.cardapio-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px
}

.tab-btn {
    background: var(--bg2);
    color: var(--txt2);
    border: 1px solid var(--borda);
    padding: 10px 16px;
    border-radius: 50px;
    font-family: var(--fb);
    font-size: .85rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 8px
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--pri), var(--pri-d));
    color: #fff;
    border-color: var(--pri);
    box-shadow: 0 4px 15px rgba(139, 26, 26, .3)
}

/* TAB CONTENT */
.tab-content {
    display: none;
    animation: tFade .4s ease
}

.tab-content.active {
    display: block
}

@keyframes tFade {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ===== MENU ROW - PADRONIZADO EM TUDO ===== */
.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px
}

.menu-col {
    display: flex;
    flex-direction: column;
    gap: 0
}

.mr {
    display: flex;
    align-items: baseline;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, .08);
    transition: var(--tr)
}

.mr:last-child {
    border-bottom: none
}

.mr:hover {
    background: rgba(255, 255, 255, .02);
    padding-left: 8px
}

/* Nome e ingredientes TUDO EM DOURADO */
.mn {
    font-family: var(--ft);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0
}

.md {
    flex: 1;
    border-bottom: 1px dotted rgba(212, 168, 67, .2);
    margin: 0 10px;
    min-width: 20px;
    align-self: flex-end;
    margin-bottom: 5px
}

.mi {
    font-size: .83rem;
    color: var(--gold-l);
    line-height: 1.4;
    text-align: right;
    max-width: 45%;
    flex-shrink: 0;
    opacity: .85
}

/* Destaque extra */
.mr.sp .mn {
    color: var(--gold)
}

.mr.sp .mi {
    opacity: 1
}

/* Bebidas - mesmo estilo */
.mr.mh .mn {
    color: var(--gold)
}

.mr.mh .mi {
    color: var(--gold-l);
    opacity: .85
}

/* Vinhos - mesmo estilo */
.mr.mw .mn {
    color: var(--gold)
}

.mr.mw .mi {
    color: var(--gold-l);
    opacity: .85
}

.nota-rodape {
    text-align: center;
    color: var(--gold);
    font-size: .9rem;
    padding: 15px;
    margin-top: 15px;
    background: var(--bg2);
    border-radius: var(--rs);
    border: 1px dashed rgba(212, 168, 67, .2)
}

.nota-rodape i {
    margin-right: 6px
}

/* ========== HORÁRIOS ========== */
.horarios {
    padding: 60px 0;
    background: var(--bg)
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px
}

.horarios-card {
    background: var(--bg2);
    border-radius: var(--r);
    padding: 40px 30px;
    border: 1px solid var(--borda);
    text-align: center;
    transition: var(--tr)
}

.horarios-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px)
}

.horarios-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(139, 26, 26, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold);
    border: 1px solid rgba(212, 168, 67, .15)
}

.horarios-card h3 {
    font-family: var(--ft);
    font-size: 1.3rem;
    margin-bottom: 20px
}

.horarios-table {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.horario-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg4);
    border-radius: var(--rs)
}

.horario-row.dest {
    background: rgba(139, 26, 26, .15);
    border: 1px solid rgba(139, 26, 26, .2)
}

.horario-row.dest .hora {
    color: var(--gold)
}

.horario-row .dia {
    color: var(--txt2);
    font-size: .9rem
}

.horario-row .hora {
    color: var(--txt);
    font-weight: 600;
    font-size: .9rem
}

.endereco {
    color: var(--txt2);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px
}

.endereco small {
    color: var(--gold);
    font-size: .85rem
}

.endereco small i {
    margin-right: 4px
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px
}

.contato-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--txt2)
}

.contato-info i {
    color: var(--gold);
    width: 20px
}

.contato-info a:hover {
    color: var(--gold)
}

.contato-obs {
    color: var(--mute);
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.contato-obs i {
    color: var(--gold)
}

.mapa-wrapper {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--borda);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .4)
}

.mapa-wrapper iframe {
    display: block;
    width: 100%;
    filter: grayscale(40%) brightness(.85);
    transition: filter .5s
}

.mapa-wrapper:hover iframe {
    filter: none
}

/* ========== FOOTER ========== */
.footer {
    padding: 40px 0 0;
    background: var(--bg3);
    border-top: 1px solid var(--borda)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--txt);
    margin-bottom: 16px;
    letter-spacing: 2px
}

.footer-logo .logo-icon {
    color: var(--gold)
}

.footer-about {
    color: var(--mute);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 20px
}

.f-links-ar {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px
}

.f-links-ar a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg4);
    border: 1px solid var(--borda);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt2);
    font-size: 1.1rem;
    transition: var(--tr)
}

.f-links-ar a:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-3px)
}

.footer-col h4 {
    font-family: var(--ft);
    font-size: 1.1rem;
    color: var(--txt);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold)
}

.footer-col ul li {
    margin-bottom: 10px;
    color: var(--mute);
    font-size: .9rem
}

.footer-col ul li a {
    color: var(--mute)
}

.footer-col ul li a:hover {
    color: var(--gold)
}

.footer-col ul li i {
    color: var(--gold);
    margin-right: 8px;
    width: 16px
}

.footer-bottom {
    border-top: 1px solid var(--borda);
    padding: 20px 0;
    text-align: center
}

.footer-bottom p {
    color: var(--mute);
    font-size: .85rem
}

/* ========== MODAL POLÍTICA DE PRIVACIDADE ========== */
.privacy-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px)
}

.privacy-box {
    background: var(--bg2);
    border: 1px solid var(--borda);
    border-radius: var(--r);
    max-width: 760px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,.6)
}

.privacy-box h2 {
    font-family: var(--ft);
    font-size: 1.5rem;
    color: var(--gold);
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--borda);
    display: flex;
    align-items: center;
    gap: 10px
}

.privacy-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    color: var(--txt2);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--tr)
}

.privacy-close:hover {
    color: var(--gold)
}

.privacy-content {
    overflow-y: auto;
    padding: 24px 32px 32px;
    color: var(--txt2);
    font-size: .93rem;
    line-height: 1.8;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.privacy-content::-webkit-scrollbar {
    display: none; /* WebKit */
}

.privacy-content h3 {
    font-family: var(--ft);
    color: var(--txt);
    font-size: 1.1rem;
    margin: 24px 0 8px
}

.privacy-content h3:first-child {
    margin-top: 0
}

.privacy-content p {
    margin-bottom: 12px
}

.privacy-content a {
    color: var(--gold);
    text-decoration: underline
}

/* ========== RESPONSIVO ========== */
@media(max-width:1024px) {
    .destaques-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 80px
    }

    .sobre-images {
        max-width: 500px;
        margin: 0 auto
    }

    .sobre-content .section-label,
    .sobre-content .section-title,
    .sobre-content .section-divider {
        text-align: center;
        justify-content: center
    }

    .horarios-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 180px;
        height: 100vh;
        background: var(--bg3);
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        gap: 15px;
        transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, .5);
        z-index: 999;
        border-left: 1px solid var(--borda);
        transform: translateX(100%);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001
    }

    .btn-nav {
        display: inline-flex;
        margin-top: 15px; /* Volta para dentro do menu com espaçamento */
    }

    .hero-title {
        letter-spacing: 4px
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px
    }

    .destaques-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .sobre-img-main img {
        height: 280px
    }

    .sobre-img-row {
        grid-template-columns: repeat(3, 1fr)
    }

    .sobre-img-row img {
        height: 90px
    }

    .sobre-experience {
        top: 10px;
        right: 10px;
        padding: 14px 18px
    }

    .exp-number {
        font-size: 2rem
    }

    .sobre-stats {
        gap: 20px
    }

    .menu-columns {
        grid-template-columns: 1fr;
        gap: 0
    }

    .mi {
        max-width: 50%;
        font-size: .78rem
    }

    .mn {
        font-size: .95rem
    }

    .mc-btn {
        width: 36px;
        height: 36px;
        font-size: .85rem
    }

    .mc-prev {
        left: 8px
    }

    .mc-next {
        right: 8px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%)
    }

    .f-links-ar {
        margin: 30px auto 10px !important;
        display: flex !important;
        justify-content: center !important;
        gap: 25px !important;
        width: 100% !important;
        visibility: visible !important;
    }
    #fLinksAR a {
        width: 55px !important;
        height: 55px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: var(--bg4) !important;
        border: 2px solid var(--gold) !important; 
        color: var(--gold) !important; 
        font-size: 1.4rem !important;
        border-radius: 50% !important;
        visibility: visible !important;
    }
    #fLinksAR a i {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        line-height: 1 !important;
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: 2.5rem
    }

    .section-title {
        font-size: 1.8rem
    }

    .horario-row {
        flex-direction: column;
        gap: 4px;
        text-align: center
    }

    .mi {
        max-width: 45%;
        font-size: .75rem
    }

    .mn {
        font-size: .9rem
    }
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--bg);
    padding: 8px;
    z-index: 10000;
}

.skip-link:focus {
    top: 5px;
}

/* VOLTAR AO TOPO - DESIGN PREMIUM */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 2px solid transparent;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--bg);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px);
}

@media(max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

.rodizio-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.rodizio-item { display: flex; justify-content: space-between; align-items: center; background: var(--bg4); padding: 12px 18px; border-radius: var(--rs); }
.rodizio-info { display: flex; flex-direction: column; text-align: left; }
.rodizio-price { color: #FFF; font-weight: 700; white-space: nowrap; margin-left: auto; font-size: 1.2rem; }