:root {
    --color-primary: #E53935;
    --color-primary-dark: #C62828;
    --color-secondary: #FFD600;
    --color-secondary-dark: #FFC107;
    --color-accent: #2E7D32;
    --color-accent-light: #4CAF50;
    --color-dark: #1a1a1a;
    --color-dark-light: #333333;
    --color-light: #ffffff;
    --color-gray: #f5f5f5;
    --color-gray-dark: #757575;
    --color-whatsapp: #25D366;
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Fredoka', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px; /* Compensa el header fijo de 100px + margen */
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

ul {
    list-style: none;
}

img {
    max-width: 80%;
    height: auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-light);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.header--scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 3rem;
}

.nav__logo_no_copyright-img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.nav__list {
    display: flex;
    gap: 1.5rem;
}

.nav__link {
    font-weight: 600;
    font-size: 1.1rem; /* Texto más grande */
    color: var(--color-dark);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--color-primary);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
}

.nav__toggle i,
.nav__close i {
    width: 28px;
    height: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.btn i {
    width: 20px;
    height: 20px;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: var(--color-secondary);
    color: var(--color-dark);
}

.btn--secondary:hover {
    background-color: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn--whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-light);
}

.btn--whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    overflow: hidden;
}

.hero--christmas {
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
        linear-gradient(135deg, #145A1F 0%, #1B5E20 25%, #2E7D32 50%, #388E3C 75%, #43A047 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero--christmas .hero__overlay {
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.6)"/><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.4)"/><circle cx="50" cy="15" r="1" fill="rgba(255,255,255,0.5)"/><circle cx="15" cy="45" r="1.2" fill="rgba(255,255,255,0.45)"/><circle cx="45" cy="50" r="1.8" fill="rgba(255,255,255,0.35)"/></svg>');
    background-size: 60px 60px;
    opacity: 1;
    animation: snowfall 20s linear infinite;
}

@keyframes snowfall {
    0% { background-position: 0 0; }
    100% { background-position: 60px 180px; }
}

.hero__container {
    position: relative;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 2rem;
    padding: 5rem 0 3rem;
    z-index: 1;
    width: 100%;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__papanoel {
    max-width:450px;
    height: 450px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4));
    border-radius: 30px;
}

.hero__content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero__brand {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--color-secondary); /* Amarillo dorado */
    margin-bottom: 0.5rem;
    text-shadow:
        2px 2px 0px rgba(0,0,0,0.3),
        4px 4px 8px rgba(0,0,0,0.2),
        0 0 40px rgba(255,214,0,0.4);
    line-height: 1;
    letter-spacing: -1px;
}

.hero__logo_no_copyright {
    width: 180px;
    height: 180px;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__title {
    font-family: var(--font-primary);
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--color-light);
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    line-height: 1.4;
    opacity: 0.95;
}

.hero__slogan {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 500;
    color: var(--color-light);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    padding-left: 1rem;
    border-left: 4px solid var(--color-secondary);
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.hero__buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.hero__buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.hero__schedule {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.15);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    color: var(--color-light);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero__schedule i {
    width: 20px;
    height: 20px;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-light);
    font-size: 0.875rem;
    opacity: 0.8;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.hero__scroll-link:hover {
    opacity: 1;
}

.hero__scroll-link i {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section__description {
    color: var(--color-gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.menu {
    padding: 6rem 0;
    background-color: var(--color-gray);
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.menu__tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background-color: var(--color-light);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.menu__tab i {
    width: 20px;
    height: 20px;
}

.menu__tab:hover {
    border-color: var(--color-primary);
}

.menu__tab--active {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.menu__content {
    position: relative;
}

.menu__grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.menu__grid--active {
    display: grid;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu__card {
    position: relative;
    background-color: var(--color-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.menu__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu__card--featured {
    border: 2px solid var(--color-primary);
}

.menu__card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--color-accent);
    color: var(--color-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.menu__card--featured .menu__card-badge {
    background-color: var(--color-primary);
}

.menu__card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu__card-icon i {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.menu__card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.menu__card-description {
    color: var(--color-gray-dark);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.menu__card-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
}

.menu__includes {
    margin-top: 3rem;
    text-align: center;
}

.menu__includes h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.menu__includes-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.menu__includes-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-dark);
}

.menu__includes-item i {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.drinks {
    padding: 6rem 0;
    background-color: var(--color-light);
}

.drinks__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.drinks__category {
    background-color: var(--color-gray);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.drinks__category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
}

.drinks__category-header i {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.drinks__category-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-dark);
}

.drinks__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.drinks__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--color-gray-dark);
}

.drinks__item:last-child {
    border-bottom: none;
}

.drinks__name {
    color: var(--color-dark);
}

.drinks__name small {
    display: block;
    color: var(--color-gray-dark);
    font-size: 0.75rem;
}

.drinks__price {
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

.delivery {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-light);
}

.delivery__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.delivery__badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.delivery__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.delivery__description {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.delivery__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.delivery__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.delivery__features i {
    width: 24px;
    height: 24px;
}

.delivery__image {
    display: flex;
    justify-content: center;
}

.delivery__image-container {
    width: 280px;
    height: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.delivery__img {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

.locations {
    padding: 6rem 0;
    background-color: var(--color-gray);
}

.locations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.location__card {
    background-color: var(--color-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location__card:hover {
    box-shadow: var(--shadow-lg);
}

.location__card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-light);
}

.location__number {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.location__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.location__card-body {
    padding: 1.5rem;
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location__info-item {
    display: flex;
    gap: 1rem;
}

.location__info-item i {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.location__info-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gray-dark);
}

.location__info-item p {
    color: var(--color-dark);
}

.contact {
    padding: 6rem 0;
    background-color: var(--color-light);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__description {
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--color-gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact__method:hover {
    background-color: var(--color-secondary);
}

.contact__method i {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.contact__method strong {
    display: block;
    color: var(--color-dark);
}

.contact__method p {
    color: var(--color-gray-dark);
    font-size: 0.875rem;
}

.contact__form {
    background-color: var(--color-gray);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    background-color: var(--color-light);
    transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo_no_copyright {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.footer__slogan {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.footer__description {
    color: var(--color-gray-dark);
    font-size: 0.875rem;
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list a {
    color: var(--color-gray-dark);
    transition: var(--transition);
}

.footer__list a:hover {
    color: var(--color-secondary);
}

.footer__list--contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-dark);
}

.footer__list--contact i {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.footer__social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer__social-link {
    width: 44px;
    height: 44px;
    background-color: var(--color-dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer__social-link:hover {
    background-color: var(--color-primary);
}

.footer__social-link i {
    width: 22px;
    height: 22px;
}

.footer__payment p {
    font-size: 0.875rem;
    color: var(--color-gray-dark);
    margin-bottom: 0.5rem;
}

.footer__payment-methods {
    display: flex;
    gap: 0.5rem;
}

.footer__payment-method {
    display: inline-block;
    background-color: var(--color-dark-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-dark-light);
    color: var(--color-gray-dark);
    font-size: 0.875rem;
}

/* ========== FACEBOOK FLOAT BUTTON ========== */
.facebook-float {
    position: fixed;
    top: 6.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background-color: #1877F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    transition: var(--transition);
    animation: fadeInRight 0.6s ease-out 1s both;
}

.facebook-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.facebook-float i {
    width: 26px;
    height: 26px;
    color: var(--color-light);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    width: 32px;
    height: 32px;
    color: var(--color-light);
}

/* ========== TABLET (992px) ========== */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero__container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .hero__papanoel {
        max-height: 450px;
        margin-left: 0;
    }

    .hero__brand {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

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

    .delivery__features {
        align-items: center;
    }

    .delivery__image {
        order: -1;
    }

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

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

/* ========== MOBILE (768px) ========== */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Header mobile */
    .nav {
        height: 70px;
    }

    .nav__logo_no_copyright-img {
        height: 50px;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-light);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        transition: var(--transition);
        z-index: 1001;
    }

    .nav__menu.show {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav__link {
        font-size: 1.125rem;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .nav__toggle {
        display: block;
    }

    /* Hero mobile */
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 6rem 1rem 3rem;
        gap: 2rem;
    }

    .hero__image {
        order: -1;
        justify-content: center;
    }

    .hero__papanoel {
        max-height: 280px;
        max-width: 85%;
        margin-left: 0;
        border-radius: 20px;
    }

    .hero__content {
        text-align: center;
    }

    .hero__brand {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .hero__title {
        font-size: 1rem;
    }

    .hero__slogan {
        font-size: 1.25rem;
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid var(--color-secondary);
        padding-bottom: 0.5rem;
        display: inline-block;
    }

    .hero__buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 260px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero__schedule {
        font-size: 0.85rem;
        padding: 0.65rem 1rem;
    }

    .hero__scroll {
        bottom: 1rem;
    }

    .hero__scroll-link {
        font-size: 0.75rem;
    }

    /* Sections mobile */
    .section__header {
        margin-bottom: 2rem;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .section__description {
        font-size: 0.9rem;
    }

    .menu__tabs {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .menu__tab {
        width: 100%;
        max-width: 250px;
    }

    .menu__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .menu__card {
        padding: 1rem;
    }

    .menu__price {
        font-size: 1.25rem;
    }

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

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

    /* Footer mobile */
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer__contact li {
        justify-content: center;
    }

    .footer__social-links {
        justify-content: center;
    }

    .footer__payment-methods {
        justify-content: center;
    }
}

/* ========== MOBILE SMALL (480px) ========== */
@media (max-width: 480px) {
    .hero__container {
        padding: 5.5rem 0.75rem 2.5rem;
    }

    .hero__papanoel {
        max-height: 220px;
    }

    .hero__brand {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .hero__title {
        font-size: 0.9rem;
    }

    .hero__slogan {
        font-size: 1.1rem;
    }

    .hero__buttons .btn {
        max-width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

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

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

    .delivery__image-container {
        width: 180px;
        height: 180px;
    }

    .delivery__img {
        width: 140px;
        height: 140px;
    }

    .contact__form {
        padding: 1.5rem;
    }

    .facebook-float {
        top: 5rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .facebook-float i {
        width: 20px;
        height: 20px;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        width: 24px;
        height: 24px;
    }
}

/* ========================================
   DÍAS SIN SERVICIO (24 y 31 de Diciembre)
   ======================================== */

/* Ocultar botón flotante de WhatsApp */
.sin-delivery-24 .whatsapp-float,
.sin-delivery-31 .whatsapp-float {
    display: none !important;
}

/* Estilo para enlaces deshabilitados */
.sin-delivery-24 .enlace-deshabilitado,
.sin-delivery-31 .enlace-deshabilitado {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mostrar badge de "No disponible" en sección delivery */
.sin-delivery-24 .delivery__badge,
.sin-delivery-31 .delivery__badge {
    background: #9e9e9e !important;
    color: white;
}

.sin-delivery-24 .delivery__badge::after,
.sin-delivery-31 .delivery__badge::after {
    content: " - Hoy No Disponible";
}

/* Cambiar estilo del botón WhatsApp en delivery */
.sin-delivery-24 .btn--whatsapp,
.sin-delivery-31 .btn--whatsapp {
    background: #9e9e9e !important;
    cursor: not-allowed;
    pointer-events: none;
}

.sin-delivery-24 .btn--whatsapp::after,
.sin-delivery-31 .btn--whatsapp::after {
    content: " (Hoy no disponible)";
    font-size: 0.8em;
    display: block;
    margin-top: 0.25rem;
}

/* Cambiar botón de hero */
.sin-delivery-24 .hero__buttons .btn--secondary,
.sin-delivery-31 .hero__buttons .btn--secondary {
    background: #9e9e9e !important;
    border-color: #9e9e9e !important;
    color: white !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Aviso en sección de contacto */
.sin-delivery-24 .contact__form button[type="submit"],
.sin-delivery-31 .contact__form button[type="submit"] {
    background: #9e9e9e !important;
    cursor: not-allowed;
}

/* Enlace WhatsApp en contacto */
.sin-delivery-24 .contact__method[href*="wa.me"],
.sin-delivery-31 .contact__method[href*="wa.me"] {
    opacity: 0.5;
    pointer-events: none;
}

/* Banner de aviso - 24 de Diciembre */
.sin-delivery-24::before {
    content: "Importante: Hoy miércoles 24 de Diciembre atendemos solo en mesa y para llevar. No contamos con servicio de delivery. ¡Te esperamos en nuestros locales!";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #E53935, #C62828);
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Banner de aviso - 31 de Diciembre */
.sin-delivery-31::before {
    content: "Importante: Hoy miércoles 31 de Diciembre atendemos solo en mesa y para llevar. No contamos con servicio de delivery. ¡Te esperamos en nuestros locales!";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #E53935, #C62828);
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Ajustar header cuando hay banner */
.sin-delivery-24 .header,
.sin-delivery-31 .header {
    top: 45px;
}

/* Ajustar scroll padding */
.sin-delivery-24,
.sin-delivery-31 {
    scroll-padding-top: 120px;
}
