/* =========================
   TRUSKA
   BASE
========================= */
html {
    scroll-behavior: smooth;
}



* 

{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #050505;
    color: #f2eadf;
    font-family: "Gochi Hand", cursive;
}

a {
    color: inherit;
    text-decoration: none;
}



/* =========================
   HEADER
========================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(12px);

    z-index: 1000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.logo {
    color: #ff5a00;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 4px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: 0.3s;
}

.nav a:hover {
    color: #ff5a00;
}
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #f2eadf;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 20px;

    background-image: url("../assets/images/hero/hero-truska.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* Escurece a fotografia */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(5, 5, 5, 0.45),
            rgba(5, 5, 5, 0.70)
        );

    z-index: 1;
}


/* Conteúdo */

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 1200px;
}


/* HOUSE BAR */

.hero-subtitle {
    color: #ff5a00;

    font-family: "Gochi Hand", cursive;

    font-size: 20px;

    letter-spacing: 5px;

    margin-bottom: 25px;
}


/* TRUSKA */

.hero h1 {
    font-family: "Gochi Hand", cursive;

    font-size: clamp(90px, 16vw, 190px);

    line-height: 0.8;

    font-weight: 400;

    letter-spacing: 2px;

    color: #f2eadf;

    text-shadow:
        0 0 30px rgba(255, 90, 0, 0.12);
}


/* SLOGAN */

.hero-slogan {
    margin-top: 35px;

    font-family: "Gochi Hand", cursive;

    font-size: 22px;

    letter-spacing: 4px;

    color: #ff5a00;
}


/* BOTÕES */

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 45px;
}


/* SCROLL */

.hero-scroll {
    position: absolute;

    z-index: 2;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: rgba(242, 234, 223, 0.7);

    font-size: 9px;

    letter-spacing: 4px;
}

.hero-scroll span {
    color: #ff5a00;

    font-size: 18px;

    animation: scrollArrow 1.5s infinite;
}


@keyframes scrollArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }

}

.hero-buttons,
.contact-buttons {
    display: flex;
    gap: 15px;

    margin-top: 45px;
}

.button {
    display: inline-block;

    padding: 15px 28px;

    border: 1px solid #ff5a00;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1.5px;

    transition: 0.3s;
}

.button-primary {
    background: #ff5a00;
    color: #050505;
}

.button-primary:hover {
    background: #f2eadf;
    border-color: #f2eadf;
}

.button-secondary {
    color: #ff5a00;
}

.button-secondary:hover {
    background: #ff5a00;
    color: #050505;
}


/* =========================
   SECTIONS
========================= */



.section-label {
    color: #ff5a00;

    font-size: 12px;
    letter-spacing: 4px;

    margin-bottom: 20px;
}

.section h2 {
    font-size: clamp(40px, 7vw, 90px);

    line-height: 0.95;

    margin-bottom: 30px;
}

.section > p {
    max-width: 600px;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(242, 234, 223, 0.7);
}


/* =========================
   EXPERIENCE
========================= */



.experience-card {
    padding: 40px 25px;

    min-height: 200px;

    border: 1px solid rgba(255, 90, 0, 0.3);

    transition: 0.3s;
}

.experience-card:hover {
    border-color: #ff5a00;
    transform: translateY(-5px);
}

.experience-card h3 {
    color: #ff5a00;

    margin-bottom: 20px;

    letter-spacing: 2px;
}

.experience-card p {
    color: rgba(242, 234, 223, 0.6);

    line-height: 1.5;
}




/* =========================
   FOOTER
========================= */

.footer {
    padding: 70px 8%;

    text-align: center;

    border-top: 1px solid rgba(242, 234, 223, 0.08);
}

.footer p {
    margin-top: 15px;

    font-size: 11px;
    letter-spacing: 3px;
}

.footer small {
    display: block;

    margin-top: 40px;

    color: rgba(242, 234, 223, 0.4);
}

/* =========================
   O TRUSKA
========================= */

.about-section {
    min-height: 100vh;

    padding: 140px 8%;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 8%;

    align-items: center;

    background: #050505;
}


/* FOTO */

.about-image {
    position: relative;

    height: 680px;

    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    filter: saturate(0.9) brightness(0.75);

    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}


/* ETIQUETA SOBRE FOTO */

.image-tag {
    position: absolute;

    bottom: 25px;
    left: 25px;

    padding: 8px 14px;

    background: #ff5a00;

    color: #050505;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 2px;
}


/* TEXTO */

.about-content {
    max-width: 520px;
}

.about-content h2 {
    font-family: "Gochi Hand", cursive;

    font-size: clamp(60px, 7vw, 105px);

    font-weight: 400;

    line-height: 0.85;

    letter-spacing: 1px;

    margin-bottom: 45px;

    color: #f2eadf;
}


.about-text {
    max-width: 460px;

    margin-bottom: 20px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(242, 234, 223, 0.68);
}


/* LINK */

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 25px;

    padding-bottom: 7px;

    border-bottom: 1px solid #ff5a00;

    color: #ff5a00;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: bold;

    letter-spacing: 2px;
}

.text-link span {
    font-size: 18px;

    transition: transform 0.3s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

/* =========================
   EXPERIÊNCIA
========================= */

.experience-section {
    min-height: 100vh;

    padding: 140px 8%;

    background: #080808;
}


/* CABEÇALHO */

.experience-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 60px;

    margin-bottom: 70px;
}


.experience-header h2 {
    font-family: "Gochi Hand", cursive;

    font-size: clamp(60px, 8vw, 115px);

    font-weight: 400;

    line-height: 0.85;

    letter-spacing: 1px;

    color: #f2eadf;

    margin: 0;
}


.experience-intro {
    max-width: 380px;

    margin-bottom: 8px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.8;

    color: rgba(242, 234, 223, 0.6);
}


/* IMAGEM / VÍDEO */

.experience-media {
    position: relative;

    width: 100%;

    height: 620px;

    overflow: hidden;

    background: #111;
}


.experience-media img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    filter: brightness(0.72) saturate(0.9);

    transition: transform 1s ease;
}


.experience-media:hover img {
    transform: scale(1.025);
}


/* SOBREPOSIÇÃO */

.media-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 5, 5, 0.8),
            transparent 50%
        );
}


/* TEXTO SOBRE A FOTO */

.media-caption {
    position: absolute;

    bottom: 30px;

    left: 35px;

    right: 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}


.media-caption span {
    font-family: "Gochi Hand", cursive;

    font-size: 22px;

    color: #f2eadf;

    letter-spacing: 2px;
}


.media-caption span:last-child {
    color: #ff5a00;

    font-size: 15px;
}


/* CARACTERÍSTICAS */

.experience-features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-bottom: 1px solid rgba(242, 234, 223, 0.12);
}


.feature {
    min-height: 210px;

    padding: 35px 25px;

    border-right: 1px solid rgba(242, 234, 223, 0.12);
}


.feature:first-child {
    border-left: 1px solid rgba(242, 234, 223, 0.12);
}


.feature span {
    display: block;

    margin-bottom: 35px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;

    color: #ff5a00;

    letter-spacing: 2px;
}


.feature h3 {
    margin-bottom: 12px;

    font-family: "Gochi Hand", cursive;

    font-size: 30px;

    font-weight: 400;

    color: #f2eadf;
}


.feature p {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    line-height: 1.6;

    color: rgba(242, 234, 223, 0.5);
}

/* =========================================
   CARDÁPIO TRUSKA
   ========================================= */

.menu-section {
    position: relative;
    background: #050505;
    color: #f2eadb;
    padding: 140px 8% 100px;
    overflow: hidden;
}

/* Cabeçalho */

.menu-header {
    max-width: 850px;
    margin: 0 auto 90px;
    text-align: center;
}

.menu-header .section-label {
    margin-bottom: 20px;
}

.menu-header h2 {
    font-family: 'Gochi Hand', cursive;
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 1px;
    margin: 0 0 35px;
    color: #f2eadb;
}

.menu-intro {
    max-width: 550px;
    margin: 0 auto;
    color: rgba(242, 234, 219, 0.65);
    font-size: 1rem;
    line-height: 1.8;
}


/* Conteúdo */

.menu-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(242, 234, 219, 0.25);
    border-bottom: 1px solid rgba(242, 234, 219, 0.25);
}

.menu-column {
    padding: 55px 45px;
}

.menu-column + .menu-column {
    border-left: 1px solid rgba(242, 234, 219, 0.2);
}


/* Categorias */

.menu-category {
    margin-bottom: 70px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category h3 {
    font-family: 'Gochi Hand', cursive;
    color: #f2eadb;
    font-size: 2.4rem;
    font-weight: 400;
    margin: 0 0 28px;
    letter-spacing: 1px;
}

.menu-category h4 {
    color: #ff5a00;
    font-size: 0.72rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin: 30px 0 15px;
}


/* Itens */

.menu-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;

    padding: 11px 0;

    border-bottom: 1px dashed rgba(242, 234, 219, 0.13);
}

.menu-item span {
    color: rgba(242, 234, 219, 0.82);
    font-size: 0.95rem;
}

.menu-item strong {
    flex-shrink: 0;
    color: #ff5a00;
    font-size: 0.9rem;
    font-weight: 600;
}


/* Rodapé do cardápio */

.menu-footer {
    max-width: 1200px;
    margin: 70px auto 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.menu-footer p {
    margin: 0;

    font-family: 'Gochi Hand', cursive;
    color: #f2eadb;
    font-size: 2rem;
}

.menu-link {
    display: inline-block;

    color: #ff5a00;
    text-decoration: none;

    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;

    border-bottom: 1px solid #ff5a00;
    padding-bottom: 8px;

    transition: all 0.3s ease;
}

.menu-link:hover {
    color: #f2eadb;
    border-color: #f2eadb;
}


/* =========================================
   RESPONSIVIDADE
   ========================================= */

@media (max-width: 900px) {

    .menu-section {
        padding: 100px 6% 80px;
    }

    .menu-content {
        grid-template-columns: 1fr;
    }

    .menu-column + .menu-column {
        border-left: none;
        border-top: 1px solid rgba(242, 234, 219, 0.2);
    }

    .menu-column {
        padding: 45px 30px;
    }

    .menu-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 600px) {

    .menu-section {
        padding: 80px 5% 60px;
    }

    .menu-header {
        margin-bottom: 60px;
    }

    .menu-header h2 {
        font-size: 3.4rem;
    }

    .menu-column {
        padding: 40px 20px;
    }

    .menu-category h3 {
        font-size: 2rem;
    }

    .menu-item span {
        font-size: 0.88rem;
    }

    .menu-item strong {
        font-size: 0.82rem;
    }

    .menu-footer p {
        font-size: 1.7rem;
    }
}

/* =========================================
   GALERIA TRUSKA
   ========================================= */

.gallery-section {
    background: #050505;
    padding: 140px 8% 110px;
    overflow: hidden;
}


/* CABEÇALHO */

.gallery-header {
    max-width: 1200px;
    margin: 0 auto 75px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 60px;
}

.gallery-header h2 {
    margin: 0;

    font-family: 'Gochi Hand', cursive;

    font-size: clamp(4rem, 8vw, 8rem);

    font-weight: 400;

    line-height: 0.85;

    color: #f2eadb;
}

.gallery-intro {
    max-width: 360px;

    margin: 0 0 8px;

    color: rgba(242, 234, 219, 0.6);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* GRID */

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.4fr 0.8fr 0.8fr;

    grid-template-rows: 300px 300px;

    gap: 12px;
}
.gallery-item {
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.8);
}

/* FOTOS */

.gallery-item {
    position: relative;

    overflow: hidden;

    background: #111;
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: 2 / 4;
}


.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter: brightness(0.78) saturate(0.95);

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}


.gallery-item:hover img {
    transform: scale(1.04);

    filter: brightness(0.9) saturate(1);
}


/* OVERLAY */

.gallery-overlay {
    position: absolute;

    inset: 0;

    padding: 22px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    background:
        linear-gradient(
            to top,
            rgba(5, 5, 5, 0.65),
            transparent 45%
        );

    pointer-events: none;
}

.gallery-overlay span {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #f2eadb;
}

.gallery-overlay span:first-child {
    color: #ff5a00;
}


/* RODAPÉ */

.gallery-footer {
    max-width: 1200px;

    margin: 55px auto 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.gallery-footer p {
    margin: 0;

    font-family: 'Gochi Hand', cursive;

    font-size: 2rem;

    color: #f2eadb;
}

.gallery-link {
    color: #ff5a00;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-decoration: none;

    padding-bottom: 8px;

    border-bottom: 1px solid #ff5a00;

    transition: 0.3s ease;
}

.gallery-link:hover {
    color: #f2eadb;

    border-color: #f2eadb;
}


/* =========================================
   GALERIA — MOBILE
   ========================================= */

@media (max-width: 900px) {

    .gallery-section {
        padding: 100px 6% 80px;
    }

    .gallery-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        margin-bottom: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            400px
            250px
            250px;

        gap: 8px;
    }

    .gallery-item-large {
        grid-column: span 2;

        grid-row: auto;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }
}


@media (max-width: 600px) {

    .gallery-section {
        padding: 80px 5% 60px;
    }

    .gallery-header h2 {
        font-size: 4rem;
    }

    .gallery-intro {
        font-size: 14px;
    }

    .gallery-grid {
        display: flex;

        flex-direction: column;

        gap: 8px;
    }

    .gallery-item,
    .gallery-item-large,
    .gallery-item-wide {
        height: 350px;
    }

    .gallery-footer {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 40px;
    }

}

/* =========================================
   AJUSTE DE NAVEGAÇÃO ENTRE SEÇÕES
   ========================================= */

#inicio,
#truska,
#experiencia,
#cardapio,
#galeria,
#contato {
    scroll-margin-top: 100px;
}

/* =========================================
   CONTATO TRUSKA
   ========================================= */

.contact-section {
    position: relative;

    background: #080808;

    padding: 150px 8% 60px;

    overflow: hidden;
}


/* CABEÇALHO */

.contact-header {
    max-width: 1200px;

    margin: 0 auto 100px;
}

.contact-header h2 {
    margin: 0 0 40px;

    font-family: 'Gochi Hand', cursive;

    font-size: clamp(5rem, 10vw, 10rem);

    font-weight: 400;

    line-height: 0.82;

    color: #f2eadb;
}

.contact-intro {
    max-width: 400px;

    margin: 0;

    color: rgba(242, 234, 219, 0.6);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* GRID */

.contact-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(242, 234, 219, 0.2);

    border-bottom: 1px solid rgba(242, 234, 219, 0.2);
}


/* BLOCOS */

.contact-block {
    min-height: 330px;

    padding: 40px 35px;

    border-right: 1px solid rgba(242, 234, 219, 0.15);
}

.contact-block:first-child {
    border-left: 1px solid rgba(242, 234, 219, 0.15);
}

.contact-number {
    display: block;

    margin-bottom: 70px;

    color: #ff5a00;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;
}

.contact-block h3 {
    margin: 0 0 15px;

    font-family: 'Gochi Hand', cursive;

    font-size: 2.2rem;

    font-weight: 400;

    color: #f2eadb;
}

.contact-block p {
    max-width: 250px;

    margin: 0 0 30px;

    color: rgba(242, 234, 219, 0.55);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    line-height: 1.7;
}


/* LINKS */

.contact-action {
    display: inline-block;

    color: #ff5a00;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    padding-bottom: 8px;

    border-bottom: 1px solid #ff5a00;

    transition: 0.3s ease;
}

.contact-action:hover {
    color: #f2eadb;

    border-color: #f2eadb;
}


/* RODAPÉ DA SEÇÃO */

.contact-bottom {
    max-width: 1200px;

    margin: 70px auto 0;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;
}

.contact-brand {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.contact-brand span {
    font-family: 'Gochi Hand', cursive;

    font-size: 2.5rem;

    color: #ff5a00;
}

.contact-brand small {
    color: rgba(242, 234, 219, 0.45);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 8px;

    letter-spacing: 3px;
}

.contact-slogan {
    font-family: 'Gochi Hand', cursive;

    font-size: 1.8rem;

    color: #f2eadb;
}


/* =========================================
   CONTATO — MOBILE
   ========================================= */

@media (max-width: 900px) {

    .contact-section {
        padding: 110px 6% 60px;
    }

    .contact-header {
        margin-bottom: 65px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-block {
        min-height: auto;

        padding: 40px 25px;

        border-right: none;

        border-bottom: 1px solid rgba(242, 234, 219, 0.15);
    }

    .contact-block:first-child {
        border-left: none;
    }

    .contact-number {
        margin-bottom: 35px;
    }

    .contact-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }
}


@media (max-width: 600px) {

    .contact-section {
        padding: 80px 5% 50px;
    }

    .contact-header h2 {
        font-size: 5rem;
    }

    .contact-block h3 {
        font-size: 2rem;
    }

    .contact-intro {
        font-size: 14px;
    }

    .contact-slogan {
        font-size: 1.5rem;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {
   

        .experience-section {
        padding: 100px 20px;
        
    }
    
    .experience-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        margin-bottom: 45px;
    }

    .experience-header h2 {
        font-size: 68px;
    }

    .experience-media {
        height: 500px;
    }

    .experience-features {
        grid-template-columns: 1fr 1fr;
    }

    .feature {
        min-height: 180px;
    }

    .feature:nth-child(2) {
        border-right: none;
    }

    .feature:nth-child(3) {
        border-left: 1px solid rgba(242, 234, 223, 0.12);
    }

        .about-section {
        grid-template-columns: 1fr;

        padding: 100px 20px;

        gap: 50px;
    }

    .about-image {
        height: 500px;
    }

    .about-content h2 {
        font-size: 70px;
    }
   .header {
    padding: 0 20px;
    }

    .menu-toggle {
    display: block;
    }

   .nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;

    flex-direction: column;
    align-items: center;
    gap: 0;

    padding: 20px 0;

    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav.active {
    display: flex;
}

.nav a {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
}

    .experience-grid {
        grid-template-columns: 1fr 1fr;
    }
}



@media (max-width: 500px) {

    .hero-buttons,
    .contact-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .button {
        text-align: center;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }
    


.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
 }
 /* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    background: transparent;
    border: none;
    color: #f2eadf;
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
    color: #ff5a00;
    transform: scale(1.1);
}

@media (max-width: 600px) {

    .lightbox {
        padding: 20px;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 36px;
    }

}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #f2eadf;
    font-family: Arial, sans-serif;
    font-size: 42px;
    cursor: pointer;
    padding: 20px;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ff5a00;
}

.lightbox-prev:hover {
    transform: translateY(-50%) translateX(-4px);
}

.lightbox-next:hover {
    transform: translateY(-50%) translateX(4px);
}

@media (max-width: 600px) {

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

}

/* =========================================
   ANIMAÇÕES DE SCROLL
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}


/* Respeita usuários que preferem menos movimento */

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* LOGO DA MARCA NO HEADER */

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo img {
    width: 170px;
    height: auto;
    display: block;
}
/* SÍMBOLO DA MARCA — O TRUSKA */

.about-logo-symbol {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    margin-bottom: 25px;
}
/* LOGO DO FOOTER */

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo {
    width: 190px;
    height: auto;
    display: block;
}
/* =========================================
   PÁGINA DE CARDÁPIO
========================================= */

.full-menu-page {
    background: #050505;
    color: #f2ebdd;
}

.full-menu {
    padding-top: 90px;
}

/* HERO DO CARDÁPIO */

.full-menu-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 40px 100px;
    text-align: center;
}

.full-menu-hero .section-label {
    color: #ff5a00;
}

.full-menu-hero h1 {
    margin: 25px 0;
    font-family: 'Gochi Hand', cursive;
    font-size: clamp(55px, 8vw, 110px);
    line-height: 0.9;
    font-weight: 400;
}

.full-menu-hero p {
    max-width: 600px;
    margin: 30px auto 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #aaa;
}


/* CONTEÚDO */

.full-menu-content {
    width: min(1100px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 100px;
    padding-bottom: 120px;
}


/* CATEGORIA */

.full-menu-category {
    border-top: 1px solid #333;
    padding-top: 25px;
}

.full-menu-category-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.full-menu-category-title span {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #ff5a00;
    letter-spacing: 2px;
}

.full-menu-category-title h2 {
    margin: 0;
    font-family: 'Gochi Hand', cursive;
    font-size: 36px;
    font-weight: 400;
    color: #f2ebdd;
}


/* ITEM */

.full-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 16px 0;

    border-bottom: 1px solid #222;
}

.full-menu-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.full-menu-item h3 {
    margin: 0;
    font-family: 'Gochi Hand', cursive;
    font-size: 24px;
    font-weight: 400;
    color: #f2ebdd;
}

.full-menu-item span {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #777;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.full-menu-item strong {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ff5a00;
    white-space: nowrap;
}


/* CTA FINAL */

.full-menu-cta {
    padding: 100px 20px 140px;
    text-align: center;
    border-top: 1px solid #222;
}

.full-menu-cta p {
    margin-bottom: 35px;
    font-family: 'Gochi Hand', cursive;
    font-size: 48px;
    color: #f2ebdd;
}

.full-menu-cta .button {
    margin: 5px;
}


/* MOBILE */

@media (max-width: 800px) {

    .full-menu {
        padding-top: 70px;
    }

    .full-menu-hero {
        padding: 90px 20px 70px;
    }

    .full-menu-hero h1 {
        font-size: clamp(48px, 14vw, 80px);
    }

    .full-menu-content {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .full-menu-category-title h2 {
        font-size: 32px;
    }

    .full-menu-item h3 {
        font-size: 22px;
    }

    .full-menu-cta {
        padding: 80px 20px 100px;
    }

    .full-menu-cta p {
        font-size: 40px;
    }

}

@media (max-width: 500px) {

    .full-menu-hero h1 {
        font-size: 48px;
    }

    .full-menu-category-title h2 {
        font-size: 28px;
    }

    .full-menu-item h3 {
        font-size: 20px;
    }

    .full-menu-cta p {
        font-size: 36px;
    }

}


/* PRÉVIA DO CARDÁPIO */

.menu-description {
    margin: 12px 0 0;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #777;
    letter-spacing: 0.5px;
}