/* =========================================
   MANARICO SNACKS
========================================= */

:root {
    --black: #080808;
    --black-soft: #101010;
    --yellow: #ffc400;
    --yellow-light: #ffe066;
    --red: #e21b23;
    --red-dark: #9d0d12;
    --white: #ffffff;
    --gray: #a5a5a5;
    --heading-font: "Bebas Neue", sans-serif;
    --body-font: "Inter", sans-serif;
}

/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--body-font);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font-family: inherit;
}

/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 105px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navigation a {
    position: relative;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: var(--yellow);
}

.navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

.header-button {
    padding: 13px 22px;
    background: var(--yellow);
    color: var(--black);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.header-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 196, 0, 0.25);
}

.menu-button {
    display: none;
}

/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 130px 8% 80px;
    overflow: hidden;
    background: var(--black);
}

.hero-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
}

.hero-glow-yellow {
    width: 750px;
    height: 750px;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(
        circle,
        rgba(255, 196, 0, 0.15) 0%,
        rgba(255, 196, 0, 0.06) 35%,
        transparent 70%
    );
}

.hero-glow-red {
    width: 500px;
    height: 500px;
    left: -250px;
    bottom: -250px;
    background: radial-gradient(
        circle,
        rgba(226, 27, 35, 0.16),
        transparent 70%
    );
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 55%;
    max-width: 680px;
}

.hero-label {
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 20px;
    font-family: var(--heading-font);
    font-size: clamp(85px, 9.5vw, 155px);
    line-height: 0.78;
    letter-spacing: 1px;
}

.hero h1 span {
    display: block;
    color: var(--yellow);
    text-shadow: 5px 5px 0 var(--red);
}

.hero-description {
    max-width: 450px;
    margin-top: 35px;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    padding: 16px 25px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.button-primary {
    background: var(--yellow);
    color: var(--black);
}

.button-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 196, 0, 0.25);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.button-secondary:hover {
    transform: translateY(-4px);
    border-color: var(--yellow);
    color: var(--yellow);
}

/* =========================================
   HERO LOGO
========================================= */

.hero-logo {
    position: absolute;
    z-index: 3;
    right: 4%;
    top: 52%;
    width: min(47vw, 680px);
    transform: translateY(-50%);
}

.hero-logo img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(
        0 35px 45px rgba(0, 0, 0, 0.75)
    );
}

.hero-logo-glow {
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 196, 0, 0.18),
        rgba(255, 196, 0, 0.05) 40%,
        transparent 70%
    );
    filter: blur(10px);
}

/* =========================================
   SCROLL
========================================= */

.hero-scroll {
    position: absolute;
    left: 8%;
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    color: #666;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
}

.scroll-line {
    width: 65px;
    height: 1px;
    background: var(--yellow);
}

/* =========================================
   MARQUEE
========================================= */

.marquee-section {
    position: relative;
    width: 105%;
    margin-left: -2.5%;
    overflow: hidden;
    background: var(--yellow);
    transform: rotate(-1.5deg);
    z-index: 10;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.marquee-track {
    width: 100%;
    overflow: hidden;
    padding: 19px 0;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-scroll 24s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
    padding-right: 30px;
}

.marquee-content span {
    font-family: var(--heading-font);
    font-size: 38px;
    color: var(--black);
    white-space: nowrap;
}

.marquee-content b {
    color: var(--red);
    font-size: 25px;
}

@keyframes marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-25%, 0, 0);
    }
}

/* =========================================
   SECTION GLOBAL
========================================= */

.section-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--yellow);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 4px;
}

.section-kicker span {
    width: 35px;
    height: 2px;
    background: var(--yellow);
}

/* =========================================
   FAVORITOS
========================================= */

.favorites-section {
    position: relative;
    padding: 150px 8% 130px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(226, 27, 35, 0.08),
            transparent 30%
        ),
        var(--black);
    overflow: hidden;
}

.favorites-container {
    max-width: 1450px;
    margin: 0 auto;
}

.favorites-heading {
    max-width: 760px;
    margin-bottom: 75px;
}

.favorites-heading h2 {
    font-family: var(--heading-font);
    font-size: clamp(80px, 10vw, 150px);
    line-height: 0.78;
}

.favorites-heading h2 span {
    display: block;
    color: var(--yellow);
    text-shadow: 5px 5px 0 var(--red);
}

.favorites-heading p {
    max-width: 480px;
    margin-top: 30px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================
   FAVORITES SHOWCASE
========================================= */

.favorites-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.favorite-feature {
    position: relative;
    min-height: 480px;
    padding: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.favorite-feature:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 196, 0, 0.35);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
}

.favorite-feature-dark {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(226, 27, 35, 0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #161616,
            #090909
        );
}

.favorite-feature-yellow {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 255, 255, 0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #ffc400,
            #d89f00
        );
    color: var(--black);
}

.favorite-feature-number {
    position: absolute;
    top: 15px;
    right: 30px;
    font-family: var(--heading-font);
    font-size: 130px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.035);
}

.favorite-feature-yellow .favorite-feature-number {
    color: rgba(0, 0, 0, 0.07);
}

.favorite-feature-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.favorite-tag {
    margin-bottom: 12px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--yellow);
}

.favorite-feature-yellow .favorite-tag {
    color: var(--black);
}

.favorite-feature h3 {
    font-family: var(--heading-font);
    font-size: 90px;
    line-height: 0.82;
}

.favorite-feature p {
    max-width: 400px;
    margin-top: 25px;
    color: #999;
    font-size: 13px;
    line-height: 1.7;
}

.favorite-feature-yellow p {
    color: rgba(0, 0, 0, 0.65);
}

.favorite-prices {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.favorite-feature-yellow .favorite-prices {
    border-color: rgba(0, 0, 0, 0.15);
}

.favorite-prices div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.favorite-prices span {
    color: #777;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.favorite-feature-yellow .favorite-prices span {
    color: rgba(0, 0, 0, 0.55);
}

.favorite-prices strong {
    color: var(--yellow);
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 400;
}

.favorite-feature-yellow .favorite-prices strong {
    color: var(--black);
}

.favorite-symbol {
    position: absolute;
    right: 8%;
    top: 40%;
    font-size: 180px;
    color: rgba(255, 196, 0, 0.04);
    transform: rotate(15deg);
}

.favorite-feature-yellow .favorite-symbol {
    color: rgba(0, 0, 0, 0.06);
}

.favorites-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.favorites-cta span {
    color: #666;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.favorites-cta a {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    transition: gap 0.3s ease;
}

.favorites-cta a:hover {
    gap: 28px;
}

.favorites-cta b {
    font-size: 22px;
    font-weight: 400;
}

/* =========================================
   MENÚ
========================================= */

.menu-section {
    position: relative;
    padding: 160px 8% 140px;
    background:
        linear-gradient(
            180deg,
            var(--black),
            #0d0d0d
        );
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
}

.menu-heading {
    max-width: 800px;
    margin-bottom: 70px;
}

.menu-heading h2 {
    font-family: var(--heading-font);
    font-size: clamp(80px, 10vw, 150px);
    line-height: 0.78;
}

.menu-heading h2 span {
    display: block;
    color: var(--yellow);
    text-shadow: 5px 5px 0 var(--red);
}

.menu-heading p {
    max-width: 480px;
    margin-top: 30px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================
   CATEGORÍAS
========================================= */

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-category {
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #777;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.menu-category:hover {
    color: var(--white);
    border-color: rgba(255, 196, 0, 0.5);
    transform: translateY(-2px);
}

.menu-category.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

/* =========================================
   CONTENIDO MENÚ
========================================= */

.menu-content {
    padding-top: 55px;
}

.menu-category-content {
    display: none;
}

.menu-category-content.active {
    display: block;
}

.menu-category-title {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 35px;
}

.menu-category-title span {
    color: var(--red);
    font-family: var(--heading-font);
    font-size: 25px;
}

.menu-category-title h3 {
    font-family: var(--heading-font);
    font-size: 58px;
    line-height: 1;
}

/* =========================================
   PRODUCTOS
========================================= */

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
}

.menu-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    min-height: 115px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        padding 0.35s ease,
        border-color 0.35s ease;
}

.menu-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.4s ease;
}

.menu-item:hover {
    padding-left: 10px;
    border-color: rgba(255, 196, 0, 0.2);
}

.menu-item:hover::before {
    width: 100%;
}

.menu-item-info {
    max-width: 500px;
}

.menu-item h4 {
    font-family: var(--heading-font);
    font-size: 31px;
    line-height: 1;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.menu-item:hover h4 {
    color: var(--yellow);
}

.menu-item p {
    margin-top: 10px;
    color: #777;
    font-size: 12px;
    line-height: 1.6;
}

.menu-item strong {
    flex-shrink: 0;
    color: var(--yellow);
    font-family: var(--heading-font);
    font-size: 29px;
    font-weight: 400;
}

/* =========================================
   ADEREZOS
========================================= */

.sauces-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.sauces-group {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(
            135deg,
            #151515,
            #0b0b0b
        );
}

.sauces-label {
    margin-bottom: 22px;
    color: var(--yellow);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
}

.sauces-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sauces-list span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.sauce-extra {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sauce-extra span {
    color: #777;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.sauce-extra strong {
    color: var(--yellow);
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 400;
}

/* =========================================
   MENU NOTE
========================================= */

.menu-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    color: #555;
    font-size: 10px;
}

.menu-note span {
    color: var(--red);
}

/* =========================================
   EXPERIENCE
========================================= */

.experience-section {
    padding: 150px 8%;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.experience-copy h2 {
    font-family: var(--heading-font);
    font-size: clamp(80px, 9vw, 135px);
    line-height: 0.78;
}

.experience-copy h2 span {
    display: block;
    color: var(--yellow);
    text-shadow: 5px 5px 0 var(--red);
}

.experience-copy p {
    max-width: 450px;
    margin-top: 30px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.text-link b {
    font-size: 22px;
    font-weight: 400;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.experience-card {
    min-height: 300px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(
            145deg,
            #151515,
            #0b0b0b
        );
    transition:
        transform 0.4s ease,
        border-color 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 196, 0, 0.3);
}

.experience-card span {
    color: var(--red);
    font-family: var(--heading-font);
    font-size: 25px;
}

.experience-card h3 {
    margin-top: auto;
    font-family: var(--heading-font);
    font-size: 52px;
}

.experience-card p {
    margin-top: 12px;
    color: #777;
    font-size: 11px;
    line-height: 1.6;
}

/* =========================================
   PROMOCIONES
========================================= */

.promotions-section {
    padding: 130px 8%;
    background: var(--yellow);
    color: var(--black);
}

.promotions-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.35fr;
}

.promotion-main {
    padding: 20px 0;
}

.promotion-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 4px;
}

.promotion-main h2 {
    margin-top: 15px;
    font-family: var(--heading-font);
    font-size: clamp(80px, 9vw, 140px);
    line-height: 0.78;
}

.promotion-main h2 span {
    display: block;
    color: var(--red);
    text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.12);
}

.promotion-main p {
    max-width: 480px;
    margin-top: 30px;
    color: rgba(0, 0, 0, 0.65);
    font-size: 15px;
    line-height: 1.7;
}

.promotion-main .button {
    margin-top: 35px;
    background: var(--black);
    color: var(--yellow);
}

.promotion-side {
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promotion-side span {
    font-family: var(--heading-font);
    font-size: 55px;
}

.promotion-side strong {
    margin-top: 20px;
    color: var(--red);
    font-size: 80px;
}

.promotion-side p {
    margin-top: 20px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
}

/* =========================================
   LOCATION
========================================= */

.location-section {
    padding: 150px 8%;
    background: var(--black);
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.location-copy h2 {
    font-family: var(--heading-font);
    font-size: clamp(80px, 9vw, 140px);
    line-height: 0.78;
}

.location-copy h2 span {
    display: block;
    color: var(--yellow);
    text-shadow: 5px 5px 0 var(--red);
}

.location-copy > p {
    max-width: 420px;
    margin-top: 30px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

.location-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-details div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.location-details span {
    color: #666;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.location-details strong {
    font-size: 13px;
}

.location-copy .button {
    margin-top: 35px;
}

.location-map {
    min-height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #101010;
}

.map-placeholder {
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle,
            rgba(255, 196, 0, 0.06),
            transparent 50%
        );
}

.map-placeholder span {
    font-family: var(--heading-font);
    font-size: 65px;
    color: rgba(255, 255, 255, 0.08);
}

.map-placeholder strong {
    color: var(--yellow);
    font-size: 45px;
}

.map-placeholder p {
    margin-top: 15px;
    color: #555;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 3px;
}

/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 70px 8% 30px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

.footer-brand img {
    width: 120px;
}

.footer-brand p {
    margin-top: 18px;
    color: #666;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a,
.footer-social a {
    color: #777;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--yellow);
}

.footer-social span {
    color: var(--yellow);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 3px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* =========================================
   RESPONSIVE — MÓVILES
========================================= */

@media (max-width: 768px) {

    /* HEADER */

    .header {
        height: 70px;
        padding: 0 5%;
    }

    .logo img {
        width: 90px;
    }

    .navigation {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 25px 5%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        background: rgba(8, 8, 8, 0.97);
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .navigation.active {
        display: flex;
    }

    .header-button {
        display: none;
    }

    .menu-button {
        display: flex;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid rgba(255,255,255,0.15);
        background: transparent;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

    .menu-button span {
        display: block;
        width: 19px;
        height: 2px;
        background: var(--white);
    }

    /* HERO */

    .hero {
        min-height: 850px;
        padding: 120px 7% 70px;
        display: flex;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        max-width: none;
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .hero h1 {
        margin-top: 18px;
        font-size: clamp(70px, 19vw, 110px);
        line-height: 0.8;
    }

    .hero-description {
        max-width: 310px;
        margin-top: 28px;
        font-size: 14px;
    }

    .hero-buttons {
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .button {
        min-width: 140px;
        padding: 14px 18px;
    }

    .hero-logo {
        width: 85vw;
        max-width: 420px;
        right: 50%;
        top: auto;
        bottom: 45px;
        transform: translateX(50%);
    }

    .hero-scroll {
        display: none;
    }

    .hero-glow-yellow {
        width: 500px;
        height: 500px;
        right: -220px;
        top: 65%;
    }

    .hero-glow-red {
        width: 350px;
        height: 350px;
        left: -180px;
        bottom: -150px;
    }

    /* MARQUEE */

    .marquee-section {
        width: 110%;
        margin-left: -5%;
    }

    .marquee-track {
        padding: 14px 0;
    }

    .marquee-content span {
        font-size: 28px;
    }

    .marquee-content b {
        font-size: 19px;
    }

    .marquee-group {
        gap: 20px;
        padding-right: 20px;
    }

    /* FAVORITOS */

    .favorites-section {
        padding: 100px 6% 90px;
    }

    .favorites-heading {
        margin-bottom: 45px;
    }

    .favorites-heading h2 {
        font-size: clamp(70px, 18vw, 110px);
    }

    .favorites-heading p {
        margin-top: 25px;
        font-size: 14px;
    }

    .favorites-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .favorite-feature {
        min-height: 430px;
        padding: 35px 28px;
    }

    .favorite-feature h3 {
        font-size: 70px;
    }

    .favorite-feature p {
        margin-top: 20px;
        font-size: 12px;
    }

    .favorite-prices {
        gap: 8px;
        margin-top: 25px;
    }

    .favorite-prices strong {
        font-size: 28px;
    }

    .favorite-feature-number {
        font-size: 100px;
        right: 20px;
    }

    .favorite-symbol {
        font-size: 130px;
        top: 35%;
        right: 5%;
    }

    .favorites-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    /* MENÚ */

    .menu-section {
        padding: 100px 6% 90px;
    }

    .menu-heading {
        margin-bottom: 45px;
    }

    .menu-heading h2 {
        font-size: clamp(70px, 18vw, 110px);
    }

    .menu-heading p {
        margin-top: 25px;
        font-size: 14px;
    }

    .menu-categories {
        gap: 6px;
        padding-bottom: 18px;
    }

    .menu-category {
        padding: 11px 13px;
        font-size: 8px;
    }

    .menu-content {
        padding-top: 40px;
    }

    .menu-category-title {
        gap: 12px;
        margin-bottom: 25px;
    }

    .menu-category-title span {
        font-size: 20px;
    }

    .menu-category-title h3 {
        font-size: 43px;
    }

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

    .menu-item {
        min-height: auto;
        gap: 18px;
        padding: 20px 0;
    }

    .menu-item-info {
        max-width: none;
    }

    .menu-item h4 {
        font-size: 27px;
    }

    .menu-item p {
        font-size: 11px;
        line-height: 1.55;
    }

    .menu-item strong {
        font-size: 26px;
    }

    .sauces-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sauces-group {
        padding: 22px;
    }

    .sauce-extra {
        grid-column: auto;
        padding: 22px;
    }

    /* EXPERIENCE */

    .experience-section {
        padding: 100px 6%;
    }

    .experience-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .experience-copy h2 {
        font-size: clamp(70px, 18vw, 110px);
    }

    .experience-copy p {
        font-size: 14px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .experience-card {
        min-height: 220px;
        padding: 25px;
    }

    .experience-card h3 {
        font-size: 45px;
    }

    /* PROMOCIONES */

    .promotions-section {
        padding: 90px 6%;
    }

    .promotions-container {
        grid-template-columns: 1fr;
    }

    .promotion-main h2 {
        font-size: clamp(70px, 18vw, 110px);
    }

    .promotion-main p {
        font-size: 14px;
    }

    .promotion-side {
        margin-top: 45px;
        padding: 30px 0 0;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.15);
    }

    .promotion-side span {
        font-size: 45px;
    }

    /* UBICACIÓN */

    .location-section {
        padding: 100px 6%;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .location-copy h2 {
        font-size: clamp(70px, 18vw, 110px);
    }

    .location-copy > p {
        font-size: 14px;
    }

    .location-details {
        margin-top: 30px;
        gap: 20px;
    }

    .location-map {
        width: 100%;
        min-height: 350px;
    }

    .location-map iframe {
        width: 100%;
        height: 350px;
        display: block;
    }

    /* FOOTER */

    .footer {
        padding: 60px 6% 25px;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand img {
        width: 105px;
    }

    .footer-links,
    .footer-social {
        align-items: center;
    }

    .footer-bottom {
        margin-top: 45px;
        padding-top: 20px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
}

/* =========================================
   WHATSAPP
========================================= */

.whatsapp-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.whatsapp-button img {
    width: 58px;
    height: 58px;
    display: block;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(
        0 10px 20px rgba(37, 211, 102, 0.35)
    );
}

/* =========================================
   WHATSAPP — MÓVIL
========================================= */

@media (max-width: 768px) {

    .whatsapp-button {
        right: 20px;
        bottom: 85px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-button img {
        width: 54px;
        height: 54px;
    }

}
