/* ===== VARIABLES & RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --rojo: #7c3aed;
    --rojo2: #9333ea;
    --verde: #2563eb;
    --verde2: #3b82f6;
    --amarillo: #f5c800;
    --crema: #fdf6ec;
    --oscuro: #140600;
    --carbon: #1c0a02;
    --mid: #2d1005;
    --blanco: #fff;
    --texto: #2a1000;
    --gris: #f0ebe1;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--crema);
    color: var(--texto);
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    background: rgba(20, 6, 0, 0.97);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 5%;
    border-bottom: 3px solid var(--rojo);
}

.nav-logo {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--amarillo);
}

.nav-logo span {
    color: var(--verde2);
}

.nav-links {
    display: flex;
    gap: 22px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--amarillo);
}

.nav-cta {
    background: var(--rojo) !important;
    color: #fff !important;
    padding: 7px 18px;
    border-radius: 999px;
}

.nav-cta:hover {
    background: var(--rojo2) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    background: linear-gradient(150deg, #140600 0%, #2d1005 40%, #1c0a02 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 6% 60px;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(37, 99, 235, .14) 0%, transparent 45%),
        radial-gradient(circle at 85% 20%, rgba(124, 58, 237, .18) 0%, transparent 45%),
        radial-gradient(circle, rgba(245, 200, 0, .04) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 38px 38px;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--verde), var(--verde2));
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    animation: slideUp .7s ease both;
}

.hero-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    color: #fff;
    animation: slideUp .75s .08s ease both;
}

.hero-title .r {
    color: var(--rojo2);
}

.hero-title .g {
    color: var(--verde2);
}

.hero-title .y {
    color: var(--amarillo);
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, .8);
    margin: 16px 0 32px;
    max-width: 480px;
    font-weight: 600;
    line-height: 1.6;
    animation: slideUp .75s .16s ease both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: slideUp .75s .24s ease both;
}

.hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 32px;
    animation: slideUp .75s .32s ease both;
}

.pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .9);
    font-size: .82rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
}

.hero-stats-pills {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 24px;
    width: 100%;
    animation: slideUp .75s .38s ease both;
}

.stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 8px;
    border-radius: 16px;
    font-weight: 900;
    font-size: .95rem;
    color: #fff;
    flex: 1;
    text-align: center;
    line-height: 1.1;
}

.stat-pill small {
    font-weight: 800;
    font-size: .72rem;
    opacity: 1;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

.stat-pill-azul {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.stat-pill-verde {
    background: linear-gradient(135deg, #059669, #10b981);
}

.stat-pill-amarillo {
    background: linear-gradient(135deg, #d97706, #f5c800);
}

.stat-pill-morado {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

@media (max-width: 768px) {
    .hero-stats-pills {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-pill {
        width: calc(50% - 4px);
        flex: none;
    }
}

.hero-img-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    animation: slideUp .8s .1s ease both;
}

.hero-img-wrap img {
    width: min(490px, 90vw);
    height: auto;
}

.hero-img-frame {
    position: relative;
    width: min(380px, 90vw);
}

.hero-img-frame::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--rojo), var(--amarillo), var(--verde));
    z-index: -1;
    opacity: .7;
    filter: blur(2px);
}

.hero-img-frame img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
    border: 3px solid rgba(255, 255, 255, .15);
}

.hero-img-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rojo);
    color: #fff;
    font-weight: 900;
    font-size: .82rem;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(200, 24, 26, .5);
}

/* ===== FLAG ===== */
.flag {
    height: 5px;
    background: linear-gradient(90deg, var(--rojo) 33%, #fff 33% 66%, var(--verde) 66%);
}

/* ===== BOTONES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .95rem;
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.btn-red {
    background: var(--rojo);
    color: #fff;
}

.btn-red:hover {
    background: var(--rojo2);
}

.btn-outline {
    background: transparent;
    color: var(--amarillo);
    border: 2px solid var(--amarillo);
}

.btn-outline:hover {
    background: var(--amarillo);
    color: var(--oscuro);
}

.btn-green {
    background: var(--verde);
    color: #fff;
}

.btn-wa {
    background: #25d366;
    color: #fff;
}

/* ===== STATS ===== */
#stats {
    background: var(--rojo);
    padding: 32px 6%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}



.stat-num {
    font-family: 'Pacifico', cursive;
    font-size: 1.15rem;
    color: #fff;
}

.stat-label {
    color: rgba(255, 255, 255, .85);
    font-size: .78rem;
    font-weight: 700;
}

/* ===== SECCIONES GENÉRICAS ===== */
section {
    padding: 80px 6%;
}

.sec-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .72rem;
    font-weight: 900;
    color: var(--verde);
    margin-bottom: 6px;
}

.sec-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    line-height: 1.1;
    color: var(--oscuro);
}

.sec-title span {
    color: var(--rojo);
}

.divider {
    width: 52px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--rojo), var(--amarillo));
    margin: 14px 0 36px;
}

.text-center {
    text-align: center;
}

.text-center .divider {
    margin-left: auto;
    margin-right: auto;
}

/* ===== BENEFICIOS ===== */
#beneficios {
    background: linear-gradient(135deg, #0d1b3d 0%, #4a1a6b 50%, #0d1b3d 100%);
}

.ben-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.ben-card {
    background: rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: .25s;
}

.ben-card:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-5px);
}

.ben-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.ben-title {
    font-weight: 900;
    font-size: .95rem;
    color: #fff;
    margin-bottom: 6px;
}

.ben-text {
    color: rgba(255, 255, 255, .78);
    font-size: .85rem;
    line-height: 1.5;
}

/* ===== MENÚ ===== */
#menu {
    background: var(--carbon);
}

#menu .sec-label {
    color: var(--amarillo);
}

#menu .sec-title {
    color: #fff;
}

#menu .sec-title span {
    color: var(--amarillo);
}

#menu .divider {
    background: linear-gradient(90deg, var(--amarillo), var(--verde2));
}

.menu-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.tab-btn {
    padding: 8px 20px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: rgba(255, 255, 255, .7);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: .25s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--rojo);
    border-color: var(--rojo);
    color: #fff;
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.menu-item {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: .2s;
}

.menu-item:hover {
    background: rgba(255, 255, 255, .13);
    transform: translateY(-2px);
}

.menu-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-item-emoji {
    font-size: 1.6rem;
    width: 40px;
    text-align: center;
}

.menu-item-name {
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
}

.menu-item-desc {
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
    margin-top: 2px;
}

.menu-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.menu-price {
    background: var(--rojo);
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.add-btn {
    background: var(--verde);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 800;
    padding: 5px 12px;
    cursor: pointer;
    transition: .2s;
    font-family: 'Nunito', sans-serif;
    white-space: nowrap;
}

.add-btn:hover {
    background: var(--verde2);
}

.menu-note-var {
    color: rgba(255, 255, 255, .55);
    font-size: .88rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}

.menu-aviso {
    margin-top: 32px;
    background: rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(245, 200, 0, .2);
    color: rgba(255, 255, 255, .75);
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.6;
}

.menu-aviso strong {
    color: var(--amarillo);
}

/* ===== CARRITO FLOTANTE ===== */
#cart-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rojo);
    color: #fff;
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 32px rgba(200, 24, 26, .5);
    z-index: 300;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    white-space: nowrap;
    animation: popIn .3s ease;
    max-width: 90vw;
}

#cart-bar.visible {
    display: flex;
}

#cart-count {
    background: #fff;
    color: var(--rojo);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: .85rem;
}

#view-cart-btn {
    background: #fff;
    color: var(--rojo);
    border: none;
    border-radius: 999px;
    padding: 7px 18px;
    font-weight: 900;
    font-size: .88rem;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: .2s;
}

#view-cart-btn:hover {
    background: var(--amarillo);
    color: var(--oscuro);
}

/* ===== MODAL CARRITO ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 400;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--carbon);
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px 16px 32px;
    animation: slideUp .3s ease;
    box-sizing: border-box;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-title {
    font-family: 'Pacifico', cursive;
    color: #fff;
    font-size: 1.5rem;
}

.modal-close {
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

.cart-empty {
    color: rgba(255, 255, 255, .5);
    text-align: center;
    padding: 40px 0;
    font-size: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    gap: 12px;
}

.cart-item-name {
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 1rem;
    cursor: pointer;
    transition: .2s;
}

.qty-btn:hover {
    background: var(--rojo);
}

.qty-num {
    color: #fff;
    font-weight: 800;
    min-width: 20px;
    text-align: center;
}

.cart-item-price {
    color: var(--amarillo);
    font-weight: 800;
    font-size: .95rem;
    white-space: nowrap;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 16px;
}

.cart-delivery-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart-delivery-amount {
    color: var(--verde2);
    font-weight: 800;
    font-size: .95rem;
}

.cart-total-label {
    color: rgba(255, 255, 255, .7);
    font-weight: 700;
}

.cart-total-amount {
    color: var(--amarillo);
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
}

.opt-label {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.delivery-section,
.payment-section {
    margin-bottom: 16px;
}

.delivery-opts,
.payment-opts {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.delivery-opt,
.payment-opt {
    flex: 1;
    min-width: 110px;
    border: 2px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: rgba(255, 255, 255, .8);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    transition: .2s;
}

.retiro-info {
    margin-top: 10px;
    background: rgba(46, 168, 46, .1);
    border: 1px solid rgba(46, 168, 46, .3);
    border-radius: 12px;
    padding: 12px 14px;
    color: rgba(255, 255, 255, .85);
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.retiro-info a {
    color: var(--verde2);
    text-decoration: none;
    font-weight: 800;
}

.retiro-info a:hover {
    text-decoration: underline;
}

.delivery-opt.selected,
.delivery-opt:hover {
    border-color: var(--verde);
    color: #fff;
    background: rgba(46, 168, 46, .2);
}

.payment-opt.selected,
.payment-opt:hover {
    border-color: var(--amarillo);
    color: #fff;
    background: rgba(245, 200, 0, .15);
}

.notes-input {
    width: 100%;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: .9rem;
    resize: none;
    margin-bottom: 16px;
}

.notes-input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.notes-input:focus {
    outline: none;
    border-color: var(--verde);
}

.send-order-btn {
    width: 100%;
    background: var(--verde);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 15px;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    transition: .2s;
}

.send-order-btn:hover {
    background: var(--verde2);
}



/* ===== HISTORIA ===== */
#historia {
    background: linear-gradient(135deg, var(--verde) 0%, #1e3a8a 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

#historia .sec-label {
    color: var(--amarillo);
}

#historia .sec-title {
    color: #fff;
}

#historia .sec-title span {
    color: var(--amarillo);
}

#historia .divider {
    background: linear-gradient(90deg, var(--amarillo), #fff);
}

.historia-text {
    color: rgba(255, 255, 255, .85);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 20px;
}

.historia-img {
    background: transparent;
}

.historia-img img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.info-pills .stat-pill {
    flex: none;
    width: calc(50% - 5px);
}

@media (max-width: 768px) {
    .info-pills {
        justify-content: center;
    }
}

/* ===== CÓMO PEDIR ===== */
#como {
    background: var(--mid);
}

#como .sec-label {
    color: var(--verde2);
}

#como .sec-title {
    color: #fff;
}

#como .sec-title span {
    color: var(--amarillo);
}

#como .divider {
    background: linear-gradient(90deg, var(--amarillo), var(--verde2));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.step-card {
    background: rgba(255, 255, 255, .05);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rojo);
    color: #fff;
    font-family: 'Pacifico', cursive;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.step-title {
    color: var(--amarillo);
    font-weight: 800;
    font-size: .95rem;
    margin-bottom: 6px;
}

.step-text {
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    line-height: 1.5;
}

/* ===== CONTACTO ===== */
#contacto {
    background: var(--carbon);
    text-align: center;
}

#contacto .sec-label {
    color: var(--verde2);
}

#contacto .sec-title {
    color: #fff;
}

#contacto .sec-title span {
    color: var(--amarillo);
}

#contacto .divider {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, var(--amarillo), var(--verde2));
}

.contacto-sub {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 36px;
    font-weight: 600;
    line-height: 1.6;
}

.contacto-mapa {
    max-width: 600px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
}

.contacto-mapa iframe {
    display: block;
}

.contacto-direccion {
    color: rgba(255, 255, 255, .8);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contacto-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.contacto-info {
    color: rgba(255, 255, 255, .5);
    font-size: .88rem;
    font-weight: 600;
    line-height: 2;
}

.contacto-info a {
    color: var(--amarillo);
    text-decoration: none;
}

/* ===== FOOTER ===== */
footer {
    background: #0a0200;
    padding: 36px 6%;
    text-align: center;
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 2px solid rgba(255, 255, 255, .15);
}

.footer-nombre {
    font-family: 'Pacifico', cursive;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 8px;
}

.footer-nombre span {
    color: var(--amarillo);
}

.footer-copy {
    color: rgba(255, 255, 255, .35);
    font-size: .8rem;
}

/* ===== WA FLOTANTE ===== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 250;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    transition: .2s;
    animation: pulse 2.5s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
}

/* ===== ANIMACIONES ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(.85);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    }

    50% {
        box-shadow: 0 4px 36px rgba(37, 211, 102, .9);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #hero {
        grid-template-columns: 1fr;
        padding-top: 90px;
        text-align: center;
    }

    .hero-btns,
    .hero-pills {
        justify-content: center;
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-img-wrap {
        order: -1;
        margin-bottom: 10px;
    }

    .hero-img-frame {
        width: min(280px, 80vw);
    }

    #historia {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--carbon);
        padding: 20px;
        gap: 16px;
    }

    .nav-links.open {
        display: flex;
    }
}

/* ===== CARRITO MEJORAS ===== */
.cart-clear-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cart-clear-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .5);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: .2s;
}

.cart-clear-btn:hover {
    border-color: var(--rojo);
    color: var(--rojo);
}

.remove-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .3);
    font-size: 1rem;
    cursor: pointer;
    padding: 0 4px;
    transition: .2s;
    font-family: 'Nunito', sans-serif;
}

.remove-btn:hover {
    color: var(--rojo);
}

/* ===== INCLUIDO TAG ===== */
.incl-tag {
    font-size: .78rem;
    font-weight: 700;
    color: var(--verde2);
    background: rgba(46, 168, 46, .15);
    border: 1px solid rgba(46, 168, 46, .3);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ===== COMBO MODAL ===== */
.combo-subtitle {
    color: rgba(255, 255, 255, .55);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 24px;
    font-style: italic;
}

.combo-section {
    margin-bottom: 20px;
}

.combo-section-title {
    color: var(--amarillo);
    font-weight: 800;
    font-size: .9rem;
    margin-bottom: 10px;
    letter-spacing: .5px;
}

.combo-opts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.combo-opt {
    border: 2px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: rgba(255, 255, 255, .75);
    border-radius: 999px;
    padding: 8px 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    transition: .2s;
}

.combo-opt:hover {
    border-color: var(--verde);
    color: #fff;
}

.combo-opt.selected {
    background: var(--verde);
    border-color: var(--verde);
    color: #fff;
}

.combo-opt.no-opt:hover,
.combo-opt.no-opt.selected {
    background: rgba(200, 24, 26, .3);
    border-color: var(--rojo);
    color: #fff;
}

.cart-add-more-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--verde2);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: .2s;
}

.cart-add-more-btn:hover {
    border-color: var(--verde2);
    color: #fff;
    background: rgba(46, 168, 46, .2);
}

/* ===== TESTIMONIOS ===== */
#testimonios {
    background: var(--carbon);
    padding: 80px 0;
    overflow: hidden;
}

#testimonios .text-center {
    padding: 0 6%;
    margin-bottom: 48px;
}

#testimonios .sec-label {
    color: var(--amarillo);
}

#testimonios .sec-title {
    color: #fff;
}

#testimonios .sec-title span {
    color: var(--rojo);
}

#testimonios .divider {
    background: linear-gradient(90deg, var(--rojo), var(--amarillo));
}

.testimonios-track-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonios-track-wrap::before,
.testimonios-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.testimonios-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--carbon), transparent);
}

.testimonios-track-wrap::after {
    right: 0;
    background: linear-gradient(270deg, var(--carbon), transparent);
}

.testimonios-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollTestimonios 35s linear infinite;
}

.testimonios-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonios {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonio-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 32px 28px;
    width: 320px;
    flex-shrink: 0;
    transition: background .25s, border-color .25s, transform .25s;
    cursor: default;
}

.testimonio-card:hover {
    background: rgba(255, 255, 255, .11);
    border-color: var(--rojo);
    transform: translateY(-4px);
}

.testimonio-stars {
    color: var(--amarillo);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonio-texto {
    color: rgba(255, 255, 255, .9);
    font-size: .88rem;
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
    letter-spacing: .2px;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonio-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rojo), var(--amarillo));
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonio-nombre {
    color: #fff;
    font-weight: 800;
    font-size: .9rem;
}

.testimonio-lugar {
    color: rgba(255, 255, 255, .45);
    font-size: .78rem;
    font-weight: 600;
    margin-top: 2px;
}

/* ===== INGREDIENTES FLOTANTES ===== */
.ingredientes-flotantes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ingrediente {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: flotar linear infinite;
    user-select: none;
}

@keyframes flotar {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    5% {
        opacity: 0.18;
    }

    90% {
        opacity: 0.18;
    }

    100% {
        transform: translateY(-120px) rotate(360deg);
        opacity: 0;
    }
}



/* ===== FAQ ===== */
#faq {
    background: var(--mid);
    padding: 80px 6%;
}

#faq .sec-label {
    color: var(--verde2);
}

#faq .sec-title {
    color: #fff;
}

#faq .sec-title span {
    color: var(--amarillo);
}

#faq .divider {
    background: linear-gradient(90deg, var(--verde2), var(--amarillo));
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .25s;
}

.faq-item:hover {
    border-color: var(--verde2);
}

.faq-pregunta {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: none;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    padding: 18px 22px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background .2s;
}

.faq-pregunta:hover {
    background: rgba(255, 255, 255, .09);
}

.faq-pregunta.active {
    background: rgba(46, 168, 46, .15);
    color: var(--amarillo);
}

.faq-icono {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--verde2);
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-pregunta.active .faq-icono {
    transform: rotate(45deg);
    color: var(--amarillo);
}

.faq-respuesta {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}

.faq-respuesta.open {
    max-height: 200px;
    padding: 0 22px 18px;
}

.faq-respuesta p {
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
    line-height: 1.7;
    font-weight: 600;
}

/* ===== RESPONSIVE MODALES ===== */
@media (max-width: 480px) {
    .modal {
        padding: 20px 14px 28px;
        border-radius: 20px 20px 0 0;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .delivery-opts,
    .payment-opts {
        flex-direction: column;
    }

    .delivery-opt,
    .payment-opt {
        min-width: unset;
        width: 100%;
    }

    .combo-opts {
        gap: 6px;
    }

    .combo-opt {
        padding: 7px 12px;
        font-size: .8rem;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }

    #view-cart-btn {
        padding: 6px 12px;
        font-size: .8rem;
    }

    #cart-total {
        font-size: .9rem;
    }

    .send-order-btn {
        font-size: .95rem;
        padding: 13px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== GRUPO WHATSAPP ===== */
#grupo {
    background: linear-gradient(135deg, #0d1b3d 0%, #4a1a6b 50%, #0d1b3d 100%);
    padding: 80px 6%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    #grupo {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .grupo-features {
        justify-content: center;
    }
}

.grupo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 200, 0, .15);
    border: 1px solid rgba(245, 200, 0, .3);
    color: var(--amarillo);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.grupo-titulo {
    font-family: 'Pacifico', cursive;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.grupo-titulo span {
    color: var(--amarillo);
}

.grupo-texto {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 28px;
    max-width: 480px;
}

.grupo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.grupo-feature {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .85);
    font-size: .85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
}

.btn-grupo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    transition: .2s;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
}

.btn-grupo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, .6);
}

.grupo-nota {
    color: rgba(255, 255, 255, .3);
    font-size: .75rem;
    font-weight: 600;
    margin-top: 14px;
    font-style: italic;
}

/* ===== MOCKUP TELEFONO ===== */
.grupo-mockup {
    display: flex;
    justify-content: center;
}



.grupo-visual-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.grupo-visual-item span {
    font-size: 2rem;
}

.grupo-visual-item strong {
    color: #fff;
    font-size: 1rem;
    display: block;
}

.grupo-visual-item small {
    color: rgba(255, 255, 255, .65);
    display: block;
    margin-top: 3px;
}

.mockup-phone {
    width: min(300px, 85vw);
    background: #111;
    border-radius: 36px;
    padding: 16px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .5),
        0 0 0 2px rgba(255, 255, 255, .1);
    position: relative;
}

.mockup-phone::before {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: rgba(255, 255, 255, .2);
    border-radius: 999px;
    margin: 0 auto 12px;
}

.mockup-screen {
    background: #0b1530;
    border-radius: 24px;
    overflow: hidden;
}

.mockup-header {
    background: linear-gradient(90deg, #1e3a8a, #6d28d9);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rojo), var(--amarillo));
    color: #fff;
    font-weight: 900;
    font-size: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, .3);
}

.mockup-name {
    color: #fff;
    font-weight: 800;
    font-size: .88rem;
}

.mockup-members {
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
    font-weight: 600;
    margin-top: 2px;
}

.mockup-messages {
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-msg {
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
}

.mockup-msg.destacado {
    background: rgba(245, 200, 0, .18);
    border: 1px solid rgba(245, 200, 0, .4);
    color: #ffe066;
}

.mockup-msg-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.mockup-msg span:nth-child(2) {
    flex: 1;
}

.mockup-msg-price {
    font-weight: 900;
    color: var(--verde2);
    font-size: .8rem;
    white-space: nowrap;
}

.mockup-msg.destacado .mockup-msg-price {
    color: var(--amarillo);
}

.mockup-btn {
    margin: 4px 12px 14px;
    background: linear-gradient(90deg, #16a34a, #0891b2);
    color: #fff;
    font-weight: 900;
    font-size: .82rem;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
}

.menu-item-emoji-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.buffet-btn {
    background: #25d366 !important;
}

.buffet-btn:hover {
    background: #1da851 !important;
}



/* ===== DESCUENTOS ===== */
.menu-price-original {
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  font-weight: 700;
  text-decoration: line-through;
  display: block;
  text-align: right;
}

.descuento-price {
  background: var(--verde) !important;
  display: flex;
  align-items: center;
  gap: 4px;
}

.descuento-badge {
  background: var(--amarillo);
  color: var(--oscuro);
  font-size: .68rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 999px;
}