:root {
    --coal: #070808;
    --coal-2: #111516;
    --brown: #260b06;
    --brown-2: #35130c;
    --cream: #fff3de;
    --muted: #d9c1ac;
    --copper: #c78345;
    --copper-2: #efb46e;
    --fire: #ff2a16;
    --red: #e72816;
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    --radius: 34px;
    --header-height: 168px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}
body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: radial-gradient(circle at 18% 10%, rgba(174, 86, 35, 0.26), transparent 32%), var(--coal);
    color: #fff;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}
button {
    font: inherit;
    color: inherit;
}
p {
    color: #d9c8b8;
    line-height: 1.65;
}
.container {
    width: min(1210px, calc(100% - 42px));
    margin-inline: auto;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 15px 22px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: 0.22s ease;
    white-space: nowrap;
}

/* BOTÃO DESTAQUE 01 --- aqui muda a configuração do 'botão destaque 1' ----*/
.btn.primary {
	/*
    background: linear-gradient(135deg, var(--copper-2), #870002);
	*/
	background-color: #fff100;
    color: #870002;
    box-shadow: 0 12px 30px rgba(224, 120, 42, 0.25);
}

/* BOTÃO DESTAQUE 01 --- aqui muda a configuração do 'botão destaque 1' ----*/
.btn.secondary {
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
}
.btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.08);
}
.eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--copper-2);
    font-weight: 900;
}

/* SECTION - ESPAÇO PADRÃO -- aqui muda o espaço de altura 'top' e 'bottom' padrão do site ---*/
.section {
    padding: 110px 0;
    position: relative;
}


/* ESPAÇO MENOR -- aqui muda o espaço de altura 'top' e 'bottom' MENOR ---*/
.section-menor {
    padding: 40px 0;
    position: relative;
}

/* ESPAÇO MÉDIO -- aqui muda o espaço de altura 'top' e 'bottom' MÉDIO ---*/
.section-medio {
    padding: 60px 0;
    position: relative;
}

/* QUEM SOMOS -- aqui muda o tamanho do texto do titulo ---*/
.about h2 {
    font-size: clamp(2.2rem, 4.3vw, 2.8rem);
    line-height: 0.94;
    margin: 10px 0 18px;
    letter-spacing: -0.06em;
}


.section h2,
.menu-section h2,
.contact-panel h2 {
    font-size: clamp(2.2rem, 4.3vw, 4.8rem);
    line-height: 0.94;
    margin: 10px 0 18px;
    letter-spacing: -0.06em;
}


.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 34px;
}
.section-head p {
    max-width: 420px;
    margin-bottom: 12px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(28, 7, 3, 0.86) 0%, rgba(28, 7, 3, 0.46) 70%, rgba(28, 7, 3, 0) 100%);
    padding-bottom: 10px;
    transition: 0.22s ease;
    pointer-events: none;
}
.site-header.compact {
    --header-height: 150px;
    background: rgba(18, 5, 3, 0.86);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
}
.site-header * {
    pointer-events: auto;
}
.topbar {
    height: 38px;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(39, 10, 5, 0.72);
    backdrop-filter: blur(10px);
    font-weight: 850;
}
.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.top-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f5efe7;
    font-size: 0.9rem;
}
.top-pin {
    display: grid;
    place-items: center;
    width: 42px;
    height: 38px;
    background: #fb1010;
    border-radius: 0 0 7px 7px;
    font-size: 1.35rem;
    line-height: 1;
    box-shadow: 0 10px 26px rgba(255, 20, 15, 0.25);
}
.top-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #eadcd0;
    font-size: 0.9rem;
}
.top-links a:hover,
.social-mini a:hover {
    color: #fff;
}
.social-mini {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #ffd400;
    font-size: 1.03rem;
    font-weight: 1000;
    text-transform: uppercase;
}
.nav-container {
    padding-top: 10px;
}
.nav-panel {
    min-height: 110px;
    background: rgba(0, 0, 0, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 62px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 225px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 14px 20px 14px 24px;
    position: relative;
    backdrop-filter: blur(8px);
}
.brand {
    display: flex;
    align-items: center;
    justify-self: start;
}
.brand img {
    width: 185px;
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

/* MENU TOPO DESKTOP -- aqui muda o tamanho da fonte e outras configurações ---*/
.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -0.035em;
    font-size: 1.32rem;
    white-space: nowrap;
}
.main-menu a {
    position: relative;
    padding: 14px 0;
    color: #fff;
    transition: 0.2s ease;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}
.main-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 3px;
    background: var(--red);
    border-radius: 999px;
    transform: scaleX(0);
    transition: 0.22s ease;
    transform-origin: center;
}
.main-menu a:hover,
.main-menu a.active {
    color: #ffe6cf;
}
.main-menu a:hover::after,
.main-menu a.active::after {
    transform: scaleX(1);
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-self: end;
}
.divider {
    width: 1px;
    height: 43px;
    background: rgba(255, 255, 255, 0.52);
}
.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 25px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fe2f1d, #e51c11);
    font-size: 0.96rem;
    font-weight: 1000;
    box-shadow: 0 14px 34px rgba(231, 40, 22, 0.24);
}
.phone-button:hover {
    transform: translateY(-2px);
    filter: saturate(1.1);
}
.menu-toggle {
    display: none;
    background: var(--red);
    border: 0;
    border-radius: 18px;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span {
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transition: 0.22s ease;
}
.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    padding-top: 0;
    position: relative;
    overflow: hidden;
}
.hero-slider {
    height: 100vh;
    min-height: 760px;
    position: relative;
    overflow: hidden;
    background: #0b0d0d;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.65s ease;
    pointer-events: none;
}
.slide.active {
    opacity: 1;
    pointer-events: auto;
}
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.035);
}

/* -- SLIDE VIDEO - aqui muda as configurações dos vídeos do slider --*/
.slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    z-index: 0;
}

.slide::after {
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 8, 9, 0.95) 0%, rgba(6, 8, 9, 0.68) 38%, rgba(6, 8, 9, 0.1) 72%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 24%, transparent 48%),
        linear-gradient(0deg, #0c1012 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}
.hero-copy {
    max-width: 760px;
    padding-bottom: 36px;
}
.hero-tag {
    display: inline-flex;

    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 900;
    color: var(--cream);
}
.hero-tag span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--fire);
    box-shadow: 0 0 22px var(--fire);
}
.hero h1 {
    font-size: clamp(3.5rem, 8vw, 7.9rem);
    line-height: 0.88;
    letter-spacing: -0.08em;
    margin: 26px 0 18px;
    text-wrap: balance;
}
.hero h1 em {
    font-style: normal;
    color: var(--copper-2);
}
.hero p {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    max-width: 610px;
    color: #f2e2d0;
}
.hero-actions,
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.hero-actions {
    margin-top: 30px;
}
.hero-stats {
    margin-top: 42px;
}
.stat {
    padding: 15px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(10px);
    min-width: 150px;
}
.stat b {
    font-size: 1.75rem;
    display: block;
    letter-spacing: -0.06em;
}
.stat span {
    font-size: 0.82rem;
    color: #d8c3b0;
    font-weight: 800;
}
.video-badge {
    position: absolute;
    z-index: 4;
    right: 34px;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 12px 16px;
    backdrop-filter: blur(12px);
    font-weight: 900;
}
.video-badge span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--red);
}
.arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(0, 0, 0, 0.42);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
}
.arrow.left::before {
    transform: rotate(135deg);
}
.arrow.right::before {
    transform: rotate(-45deg);
}
.arrow:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.62);
}
.arrow:focus-visible {
    outline: 3px solid #fff100;
    outline-offset: 3px;
}
.arrow.left {
    left: 24px;
}
.arrow.right {
    right: 24px;
}


.slider-dots {
    position: absolute;
    z-index: 5;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.13);
    padding: 10px 14px;
    border-radius: 999px;
    backdrop-filter: blur(12px);
}
.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    padding: 0;
    transition: 0.22s ease;
}

/* BANNER - VIDEO -- aqui muda a cor da BOLINHA ATIVA que tem na parte de baixo do banner-video -------*/
.dot.active {
    background: #fff100;
    width: 36px;
    border-radius: 999px;
}


/* QUEM SOMOS -- aqui muda a cor do BG do item 'quem somos' ------------*/
.about {
	/*
    background: linear-gradient(180deg, #0c1012, #15191b);
	
	background: linear-gradient(180deg, #330302, #6f0e0a );
	*/
	background-image: url("../img/bg/bg_quemsomos.jpg"); background-repeat: no-repeat;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.about-text .lead {
    font-size: 1.08rem;
    color: #f1dfce;
}
.about-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}
.badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    padding: 18px;
    font-weight: 950;
    color: #fff;
}
.badge small {
    display: block;
    color: #cbb5a0;
    font-weight: 750;
    margin-top: 7px;
}
.photo-stack {
    position: relative;
    min-height: 545px;
}
.photo-main,
.photo-small {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: var(--shadow);
}

/* QUEM SOMOS - IMAGEM -- aqui muda o tamanho da imagem do 'quem somos' ----------*/
.photo-main {
    width: 100%;
    height: 700px;
}
.photo-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 250px;
}
.photo-main img,
.photo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.float-card {
    position: absolute;
    left: 22px;
    bottom: 26px;
    width: 255px;
    background: rgba(11, 13, 13, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    padding: 18px;
    backdrop-filter: blur(12px);
}
.float-card p {
    margin: 8px 0 0;
    font-size: 0.9rem;
}


/* RODÍZIOS -- aqui muda o background ----*/
.rodizios {
    background: radial-gradient(circle at 25% 10%, rgba(199, 131, 69, 0.08), transparent 14%), #070707;
}


.price-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* RODÍZIOS - CARDÁPIOS -- aqui muda a cor de fundo deles ----*/
.price-card {
    position: relative;
    background: linear-gradient(180deg, #6f0e0a, #390604);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}
.price-card.featured {
    transform: translateY(-14px);
    border-color: rgba(239, 180, 110, 0.45);
}
.price-card.featured-night {
    border-color: rgba(255, 42, 22, 0.45);
}
.ribbon {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    background: var(--red);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 950;
    font-size: 0.77rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.card-img {
    height: 190px;
    background-size: cover;
    background-position: center;
}


/* RODÍZIO COMPLETO -- aqui muda a imagem dele ----*/
.img-rodizio-completo {
    background-image: url("../img/rodizios/rodizio_completo.jpg");
}

/* MINI RODÍZIO -- aqui muda a imagem dele ----*/
.img-mini {
    background-image: url("../img/rodizios/mini_rodizio.jpg");
}

/* SELF SERVICE -- aqui muda a imagem dele ----*/
.img-self {
    background-image: url("../img/rodizios/self_service.jpg");
}

/* JANTAR A VONTADE -- aqui muda a imagem dele ----*/
.img-jantar {
    background-image: url("../img/rodizios/jantar.jpg");
}


.card-body {
    padding: 22px;
}
.card-body h3 {
    font-size: 1.45rem;
    margin: 0 0 14px;
    letter-spacing: -0.04em;
}
.price {
    font-size: 2.05rem;
    font-weight: 1000;
    letter-spacing: -0.07em;
    color: var(--copper-2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
    margin-bottom: 14px;
}
.price small {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ceb6a0;
    margin-bottom: 5px;
}
.card-body ul {
    margin: 0;
    padding-left: 18px;
    color: #ebdccd;
    line-height: 1.72;
}


/* GALERIA DE FOTOS --- aqui muda o bg da 'galeria de fotos' ---------*/
.gallery {
	/*
    background: #8f100b;
	*/
	background-image: url("../img/bg/bg_quemsomos.jpg");
    background-repeat: no-repeat;
    overflow: hidden;

    /* Espaçamento exclusivo da galeria: mais compacto que o .section padrão. */
    padding-top: 80px;
    padding-bottom: 68px;
}

/* Aproxima o título das fotos sem comprometer a leitura. */
.gallery .section-head {
    margin-bottom: 26px;
}
.gallery-carousel {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 76px;
}


/* GALERIA DE FOTOS -- aqui define a borda das imagens ----*/
.gallery-viewport {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #080909;
	border-radius: 150px;
}


.gallery-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}
.gallery-slide {
    flex: 0 0 calc(100% / 3);
    height: 430px;
    border: 0;
    padding: 0;
    margin: 0;
    background: #111;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.gallery-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 46%);
    opacity: 0.8;
    transition: 0.25s ease;
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.42s ease;
}
.gallery-slide:hover img {
    transform: scale(1.055);
    filter: saturate(1.1);
}
.gallery-slide:hover::after {
    opacity: 0.35;
}
.gallery-arrow {
    position: absolute;
    z-index: 3;
    top: calc(50% - 31px);
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(0, 0, 0, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.gallery-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
}
.gallery-prev::before {
    transform: rotate(135deg);
}
.gallery-next::before {
    transform: rotate(-45deg);
}
.gallery-arrow:hover {
    background: var(--red);
    border-color: rgba(255, 255, 255, 0.68);
}
.gallery-arrow:focus-visible {
    outline: 3px solid #fff100;
    outline-offset: 3px;
}
.gallery-prev {
    left: 22px;
}
.gallery-next {
    right: 22px;
}
.gallery-counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 9px 15px;
    font-weight: 950;
    color: #eed9c2;
    backdrop-filter: blur(10px);
}

.menu-section {
    background: radial-gradient(circle at 80% 20%, rgba(255, 42, 22, 0.12), transparent 30%), #0c1012;
}
.value-table {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    overflow: hidden;
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.04);
}
.cell {
    padding: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 850;
}
.cell:nth-child(3n) {
    border-right: 0;
}
.cell.head {
    background: rgba(199, 131, 69, 0.24);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}
.price-cell {
    color: var(--copper-2);
    font-size: 1.45rem;
    font-weight: 1000;
}
.notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 18px;
}
.note {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 22px;
    padding: 20px;
}
.note b {
    font-size: 1.1rem;
}
.note p {
    margin: 8px 0 0;
}


/* LOCALIZAÇÃO -- aqui muda a cor do bg da 'localização' ---------*/
.location {
    background: #ffb400;
}
.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}
.map-mock {
    min-height: 460px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f1e8db, #d2cabd);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
}
.map-lines::before,
.map-lines::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(35deg, transparent 0 55px, rgba(151, 128, 96, 0.28) 56px 60px),
        repeating-linear-gradient(110deg, transparent 0 78px, rgba(91, 130, 150, 0.22) 79px 84px);
}
.pin {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 34px;
    background: var(--red);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.32);
}
.pin::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 50%;
    background: #fff;
}
.map-label {
    position: absolute;
    left: calc(50% + 22px);
    top: calc(50% - 34px);
    background: #fff;
    color: #28130c;
    border-radius: 14px;
    padding: 10px 12px;
    font-weight: 950;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
}


/* CONTATO - PAINEL - aqui muda a cor do bg dele ---*/
.contact-panel {
	/*
    background: linear-gradient(180deg, #241914, #101314);
	*/
	background-color: #560001;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 34px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.info-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}
.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #eadccc;
    font-weight: 780;
}
.info-item span:first-child {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    flex: 0 0 36px;
}



.footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-top {
    background: #020202;
    border-bottom: 1px solid rgba(123, 19, 13, 0.78);
}
.footer-top-grid {
    min-height: 150px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}
.footer-top-grid > div,
.footer-logo {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(138, 37, 18, 0.45);
}
.footer-top-grid > div:last-child {
    border-right: 1px solid rgba(138, 37, 18, 0.45);
}
.footer-logo img {
    width: 170px;
}
.footer-socials,
.footer-contact-icons {
    gap: 18px;
}
.footer-socials a,
.footer-contact-icons a {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 42, 22, 0.58);
    color: #fff;
    font-weight: 1000;
    background: rgba(255, 255, 255, 0.02);
}
.footer-socials a:hover,
.footer-contact-icons a:hover {
    background: var(--red);
    transform: translateY(-2px);
}

/* FOOTER BG -- aqui muda a imagem e o efeito por cima dela no footer - rodapé - e também a altura 'top e bottom' dos itens internos ----*/
.footer-main {
    position: relative;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72)),
        url("../img/bg/bg_footer.jpg") center/cover;
    padding: 40px 0 34px;
}


.footer-columns {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 0.82fr 1.25fr;
    gap: 44px;
}

/* FOOTER -- aqui muda a cor e tamanho da fonte dos titulos das colunas ---*/
.footer-col h3 {
    margin: 0 0 16px;
    color: #fff200;
    font-size: 1.0rem;
    letter-spacing: -0.04em;
}
.footer-col h4 {
    margin: 22px 0 8px;
    color: #fff200;
    font-size: 1.03rem;
}
.footer-col p {
    margin: 0 0 12px;
    color: #e5d6ca;
    line-height: 1.55;
}
.footer-col a {
    display: block;
    color: #e5d6ca;
    margin: 0 0 12px;
    font-weight: 700;
}
.footer-col a:hover {
    color: #fe0000;
}
.footer-map {
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, #7b8f72, #dde4cf);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-transform: none !important;
    margin: 0 !important;
}
.footer-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(35deg, transparent 0 42px, rgba(255, 255, 255, 0.33) 43px 47px),
        repeating-linear-gradient(110deg, transparent 0 58px, rgba(96, 70, 50, 0.24) 59px 64px);
}
.footer-map::after {
    content: "";
    position: absolute;
    left: 48%;
    top: 48%;
    width: 25px;
    height: 25px;
    background: var(--red);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}
.footer-map span {
    position: absolute;
    z-index: 2;
    left: 12px;
    top: 10px;
    background: #fff;
    color: #2b67d6;
    border-radius: 3px;
    padding: 7px 12px;
    font-weight: 900;
    text-transform: none;
}
.footer-map b {
    position: absolute;
    z-index: 2;
    left: calc(48% + 16px);
    top: calc(48% - 20px);
    background: rgba(255, 255, 255, 0.9);
    color: #212121;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.86rem;
    line-height: 1.2;
}

/* FOOTER copyright - aqui muda a cor e altura --*/
.footer-bottom {
    background: #510001;
    padding: 15px 0;
}

/* FOOTER copyright - aqui muda o tamanho da fonte, estilo e outras configurações --*/
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


.whats-fixed {
    position: fixed;
    right: 22px;
    bottom: 90px;
    z-index: 60;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #06180b;
    font-size: 1.8rem;
    font-weight: 1000;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
}
.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--red);
    color: #fff;
    font-size: 1.55rem;
    font-weight: 1000;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 38px;
}
.lightbox.open {
    display: flex;
}
.lightbox img {
    max-width: min(1100px, 86vw);
    max-height: 84vh;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.lightbox-close,
.lightbox-arrow {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
}
.lightbox-close {
    right: 26px;
    top: 26px;
    width: 50px;
    height: 50px;
    font-size: 2rem;
}
.lightbox-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    font-size: 2.4rem;
}
.lightbox-prev {
    left: 26px;
}
.lightbox-next {
    right: 26px;
}

@media (max-width: 1120px) {
    :root {
        --header-height: 158px;
    }
    .nav-panel {
        grid-template-columns: 190px 1fr auto;
        gap: 16px;
        padding-inline: 18px;
        min-height: 102px;
    }
    .brand img {
        width: 162px;
    }
    .main-menu {
        gap: 16px;
        font-size: 0.92rem;
    }
    .phone-button {
        padding: 13px 18px;
        font-size: 0.9rem;
    }
    .price-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-card.featured {
        transform: none;
    }
    .gallery-slide {
        height: 390px;
    }
    .footer-columns {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1.15fr;
        gap: 30px;
    }
}
@media (max-width: 900px) {
    :root {
        --header-height: 138px;
    }
    .topbar {
        height: auto;
        padding: 7px 0;
    }
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }
    .top-address {
        font-size: 0.84rem;
    }
    .top-pin {
        width: 36px;
        height: 34px;
        font-size: 1.2rem;
        border-radius: 8px;
    }
    .top-links {
        font-size: 0.84rem;
        gap: 12px;
        flex-wrap: wrap;
    }
    .nav-panel {
        grid-template-columns: 1fr auto;
        min-height: 84px;
        border-radius: 34px;
        padding: 12px 16px;
    }
    .brand img {
        width: 138px;
    }
    .menu-toggle {
        display: flex;
    }
    .main-menu {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 12px);
        display: grid;
        gap: 2px;
        background: #050505;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 28px;
        padding: 16px;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: 0.22s ease;
    }
    .main-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .main-menu a {
        padding: 13px 14px;
        border-radius: 16px;
    }
    .main-menu a::after {
        display: none;
    }
    .main-menu a:hover,
    .main-menu a.active {
        background: rgba(199, 131, 69, 0.18);
    }
    .nav-cta {
        display: none;
    }
    .hero-slider {
        min-height: 710px;
    }
    .about-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    .section-head {
        display: block;
    }
    .about-badges,
    .notes {
        grid-template-columns: 1fr;
    }
    .photo-stack {
        min-height: auto;
    }
    .photo-main {
        width: 100%;
        height: 330px;
    }
    .photo-small {
        position: relative;
        width: 72%;
        height: 220px;
        margin-left: auto;
        margin-top: -60px;
    }
    .float-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: auto;
        margin-top: 16px;
    }
    .gallery-carousel {
        padding-inline: 62px;
    }
    .gallery-slide {
        flex-basis: 50%;
        height: 350px;
    }
    .value-table {
        grid-template-columns: 1fr;
    }
    .cell,
    .cell:nth-child(3n) {
        border-right: 0;
    }
    .cell.head:nth-child(2),
    .cell.head:nth-child(3) {
        display: none;
    }
    .value-table .cell:nth-child(3n + 2)::before {
        content: "Segunda a sábado: ";
        color: #fff;
        font-size: 0.8rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }
    .value-table .cell:nth-child(3n)::before {
        content: "Domingo: ";
        color: #fff;
        font-size: 0.8rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }
    .footer-top-grid {
        min-height: 118px;
    }
    .footer-top-grid > div,
    .footer-logo {
        min-height: 118px;
    }
    .footer-logo img {
        width: 140px;
    }
    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .copy {
        flex-direction: column;
    }
}
@media (max-width: 620px) {
    :root {
        --header-height: 136px;
    }
    .container {
        width: min(100% - 26px, 1210px);
    }
    .top-links {
        display: none;
    }
    .top-address span:last-child {
        line-height: 1.35;
    }
    .nav-container {
        padding-top: 8px;
    }
    .nav-panel {
        border-radius: 28px;
    }
    .brand img {
        width: 128px;
    }
    .hero h1 {
        font-size: 3.15rem;
    }
    .hero-slider {
        height: auto;
        min-height: 740px;
    }
    .hero-copy {
        padding-top: 84px;
    }
    .arrow {
        display: flex;
        width: 48px;
        height: 48px;
    }
    .arrow.left {
        left: 10px;
    }
    .arrow.right {
        right: 10px;
    }
    .arrow::before {
        width: 11px;
        height: 11px;
    }
    .slide-video {
        object-fit: contain;
        transform: none;
        background: #0b0d0d;
    }
    .video-badge {
        display: none;
    }
    .stat {
        min-width: calc(50% - 7px);
    }
    .section {
        padding: 76px 0;
    }
    .price-cards {
        grid-template-columns: 1fr;
    }
    .gallery {
        padding-top: 54px;
        padding-bottom: 42px;
    }
    .gallery .section-head {
        margin-bottom: 22px;
    }
    .gallery-carousel {
        padding-inline: 0;
        padding-bottom: 0;
    }
    .gallery-slide {
        flex-basis: 100%;
        height: clamp(420px, 120vw, 520px);
    }
    .gallery-arrow {
        width: 48px;
        height: 48px;
        top: calc(50% - 27px);
    }
    .gallery-prev {
        left: 12px;
    }
    .gallery-next {
        right: 12px;
    }
    .photo-main {
        height: auto;
    }
    .photo-main img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .photo-small {
        width: 86%;
        height: 190px;
    }
    .contact-panel {
        padding: 24px;
    }
    .map-mock {
        min-height: 330px;
    }
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
    .footer-top-grid > div,
    .footer-logo {
        min-height: 92px;
        border-left: 0;
        border-right: 0;
        border-top: 1px solid rgba(138, 37, 18, 0.45);
    }
    .footer-columns {
        grid-template-columns: 1fr;
    }
    .footer-map {
        height: 190px;
    }
    .lightbox-arrow {
        display: none;
    }
}




/* =========================================================
   HERO MOBILE V2
   No celular: cabeçalho -> vídeo completo -> conteúdo em fundo preto.
   O layout de desktop permanece inalterado.
   ========================================================= */
@media (max-width: 620px) {
    html {
        /* O cabeçalho deixa de ser fixo no celular. */
        scroll-padding-top: 16px;
    }

    .site-header,
    .site-header.compact {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        padding-bottom: 0;
        background: #1c0703;
        backdrop-filter: none;
    }

    .nav-container {
        padding-bottom: 8px;
    }

    .hero-slider {
        height: auto;
        min-height: 0;
        background: #000;
    }

    /*
     * Somente o slide ativo participa da altura da página.
     * Os demais continuam sobrepostos para preservar o funcionamento
     * e a transição do slider existente.
     */
    .slide {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
    }

    .slide.active {
        position: relative;
        inset: auto;
    }

    .slide::after {
        display: none;
    }

    .slide-video {
        position: relative;
        inset: auto;
        order: 1;
        display: block;
        width: 100%;
        height: 56.25vw;
        aspect-ratio: 16 / 9;
        object-fit: contain;
        object-position: center;
        transform: none;
        background: #000;
    }

    .hero-content,
    .hero-content.container {
        position: relative;
        order: 2;
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 0;
        margin: 0;
        padding: 28px 13px 96px;
        display: block;
        background: #000;
    }

    .hero-copy {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .hero h1 {
        margin: 0 0 16px;
        font-size: clamp(2.25rem, 10.5vw, 3rem);
        line-height: 0.96;
        letter-spacing: -0.055em;
    }

    .hero p {
        max-width: none;
        margin: 0;
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero p br {
        display: none;
    }

    .hero-actions {
        margin-top: 26px;
    }

    /*
     * A metade de 56.25vw é 28.125vw:
     * assim as setas ficam sempre no centro vertical do vídeo 16:9.
     */
    .arrow {
        top: 28.125vw;
        transform: translateY(-50%);
    }

    .slider-dots {
        bottom: 28px;
    }
}
