@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Montserrat:wght@500;600;700&display=swap');

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

:root {
    --rojo: #e63946;
    --rojo-oscuro: #c1121f;
    --amarillo: #f4a261;
    --amarillo-dorado: #ffb703;
    --negro: #1a1a2e;
    --negro-suave: #16213e;
    --blanco: #ffffff;
    --gris-claro: #f8f9fa;
    --gris: #e9ecef;
    --gris-oscuro: #6c757d;
    --naranja: #fb8500;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    background: var(--gris-claro);
    color: var(--negro);
    padding-top: 80px;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--negro);
    color: var(--blanco);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blanco);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.navbar .logo span {
    color: var(--amarillo-dorado);
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--negro);
    padding: 10px 20px 20px;
    gap: 4px;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.nav-links a {
    color: var(--blanco);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 10px;
    transition: 0.3s;
    font-size: 0.9rem;
    display: block;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--rojo);
}

.nav-links .btn-nav-pedir {
    background: var(--rojo);
    color: white;
    text-align: center;
    border-radius: 30px;
    margin-top: 6px;
    padding: 12px;
    font-weight: 700;
}

.nav-links .btn-nav-pedir:hover {
    background: var(--rojo-oscuro);
    transform: scale(1.02);
}

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

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--blanco);
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.cart-icon-nav {
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--blanco);
    font-size: 1.3rem;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--rojo);
    color: white;
    border-radius: 50%;
    padding: 1px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-5deg);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    font-family: inherit;
}

.btn-primary {
    background: var(--rojo);
    color: white;
    box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}

.btn-primary:hover {
    background: var(--rojo-oscuro);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(230,57,70,0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
}

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

.btn-outline:hover {
    background: var(--blanco);
    color: var(--negro);
    transform: translateY(-3px);
}

.btn-gold {
    background: var(--amarillo-dorado);
    color: var(--negro);
}

.btn-gold:hover {
    background: #e9a800;
    transform: translateY(-3px);
}

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

.btn-dark:hover {
    background: var(--negro-suave);
    transform: translateY(-3px);
}

/* ========== SECTION COMMON ========== */
.section {
    padding: 60px 16px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: var(--negro);
}

.section-subtitle {
    text-align: center;
    color: var(--gris-oscuro);
    font-size: 0.95rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--negro) 0%, var(--rojo-oscuro) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1550547660-d9450f859349?w=1600&h=900&fit=crop') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blanco);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--amarillo-dorado);
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ========== PRODUCT GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--blanco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-card .info {
    padding: 12px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--negro);
}

.product-card .info .desc {
    font-size: 0.72rem;
    color: var(--gris-oscuro);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .stars-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.product-card .stars-row .stars {
    color: var(--amarillo-dorado);
}

.product-card .stars-row .rating {
    color: var(--gris-oscuro);
    font-size: 0.7rem;
    font-weight: 600;
}

.product-card .price {
    font-weight: 800;
    font-size: 1rem;
    color: var(--rojo);
    margin-bottom: 8px;
    margin-top: auto;
}

.product-card .btn-add {
    width: 100%;
    padding: 9px;
    border: none;
    border-radius: 12px;
    background: var(--rojo);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.8rem;
    font-family: inherit;
}

.product-card .btn-add:hover {
    background: var(--rojo-oscuro);
}

.product-card .btn-add.added {
    background: #2ecc71;
}

/* ========== SERVICES ========== */
.services {
    background: var(--blanco);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--gris-claro);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-card .icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.service-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-card p {
    font-size: 0.82rem;
    color: var(--gris-oscuro);
    line-height: 1.4;
}

/* ========== PROMO BANNER ========== */
.promo-banner {
    background: linear-gradient(135deg, var(--rojo), var(--naranja));
    color: var(--blanco);
    text-align: center;
    padding: 50px 20px;
}

.promo-banner h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.promo-banner p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rojo);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--rojo);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--blanco);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--negro);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gris);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
    background: var(--gris-claro);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--rojo);
    background: var(--blanco);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* ========== LOCATION ========== */
.location {
    background: var(--blanco);
}

.location-info {
    text-align: center;
    margin-bottom: 20px;
}

.location-info p {
    font-size: 0.95rem;
    color: var(--gris-oscuro);
    margin-bottom: 6px;
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto 16px;
}

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

/* ========== SOCIAL ========== */
.social {
    background: var(--gris-claro);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    background: var(--blanco);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    text-decoration: none;
    color: var(--negro);
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.social-card .icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.social-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.social-card p {
    font-size: 0.75rem;
    color: var(--gris-oscuro);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--negro);
    color: rgba(255,255,255,0.85);
    padding: 40px 16px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blanco);
    margin-bottom: 12px;
}

.footer-col h3 span {
    color: var(--amarillo-dorado);
}

.footer-col p {
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 6px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--rojo);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: 0.3s;
    margin: 0;
    padding: 0;
}

.footer-social a:hover {
    background: var(--rojo);
    padding-left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.footer-bottom .small {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
}

/* ========== CART PAGE ========== */
.cart-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}

.cart-item {
    background: var(--blanco);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    gap: 10px;
    animation: fadeIn 0.3s ease;
}

.cart-item .item-info {
    flex: 1;
    min-width: 0;
}

.cart-item .item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.cart-item .item-info .item-price {
    font-size: 0.8rem;
    color: var(--gris-oscuro);
}

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

.cart-item .qty-controls button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    font-weight: 700;
    cursor: pointer;
    background: var(--gris);
    color: var(--negro);
    font-size: 1.1rem;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item .qty-controls button:hover {
    background: var(--rojo);
    color: white;
}

.cart-item .qty-controls span {
    font-weight: 700;
    font-size: 1rem;
    min-width: 24px;
    text-align: center;
}

.cart-item .item-total {
    font-weight: 800;
    color: var(--rojo);
    min-width: 80px;
    text-align: right;
    font-size: 0.9rem;
}

.cart-item .btn-remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    transition: 0.2s;
}

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

.cart-empty {
    text-align: center;
    padding: 50px 20px;
    color: var(--gris-oscuro);
}

.cart-empty .icon {
    font-size: 3.5rem;
    margin-bottom: 12px;
}

.domicilio-section {
    background: var(--blanco);
    border-radius: 14px;
    padding: 18px;
    margin: 16px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.domicilio-section .domicilio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
}

.domicilio-section input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--rojo);
    cursor: pointer;
}

.switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 24px;
    transition: 0.3s;
}

.switch .slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.switch input:checked + .slider {
    background: var(--rojo);
}

.switch input:checked + .slider::before {
    transform: translateX(20px);
}

.domicilio-fields {
    margin-top: 14px;
    display: none;
}

.domicilio-fields.show {
    display: block;
}

.domicilio-fields input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gris);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
    margin-bottom: 10px;
}

.domicilio-fields input:focus {
    border-color: var(--rojo);
}

.totals {
    background: var(--blanco);
    border-radius: 14px;
    padding: 18px;
    margin: 16px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.totals .total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
}

.totals .total-row.final {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--rojo);
    border-top: 2px solid var(--gris);
    padding-top: 12px;
    margin-top: 6px;
}

.btn-whatsapp-order {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: #25d366;
    color: white;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp-order:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* ========== QR PAGE ========== */
.qr-page {
    text-align: center;
    padding: 40px 16px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-page h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.qr-page p {
    color: var(--gris-oscuro);
    margin-bottom: 24px;
    max-width: 450px;
}

.qr-box {
    display: inline-block;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.qr-box img {
    max-width: 260px;
    height: auto;
    display: block;
}

.qr-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* ========== TOAST ========== */
.toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--negro);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    z-index: 9999;
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    bottom: 100px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.fade-in {
    animation: fadeIn 0.5s ease both;
}

.slide-up {
    animation: slideUp 0.6s ease both;
}

/* ========== DESKTOP NAV ========== */
@media (min-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        padding: 12px 40px;
    }

    .navbar .logo {
        font-size: 1.6rem;
    }

    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        padding: 0;
        box-shadow: none;
        align-items: center;
        gap: 4px;
    }

    .nav-links a {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .nav-links .btn-nav-pedir {
        margin-top: 0;
        margin-left: 8px;
        padding: 10px 22px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 18px;
    }

    .product-card img {
        height: 170px;
    }

    .section {
        padding: 80px 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .social-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== CART BUTTON MENU PAGE ========== */
.cart-bar-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blanco);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cart-bar-bottom .cart-info {
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-bar-bottom .cart-info span {
    color: var(--rojo);
    font-weight: 800;
}

.cart-bar-bottom .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.page-header {
    padding: 20px 16px 10px;
    text-align: center;
}

.page-header h1 {
    font-size: 1.6rem;
    font-weight: 800;
}

.page-header p {
    color: var(--gris-oscuro);
    font-size: 0.9rem;
}

.menu-wrapper {
    padding-bottom: 80px;
}


