/* ═══ SMOOTH SCROLL ═══ */
html { scroll-behavior: smooth; scroll-padding-top: 70px; }

/* ═══ VARIABLES & RESET ═══ */
:root {
    /* ── Paleta del logo ── */
    --brand-blue:   #2ac6e8;   /* azul cielo del círculo */
    --brand-yellow: #f6c72c;   /* amarillo dorado del borde */
    --brand-corn:   #f0ae4a;   /* crema/maíz de los tamales */
    --brand-dark:   #0b3340;   /* oscuro complementario */
    --brand-light:  #e2f8fd;   /* azul muy claro */

    /* ── Compatibilidad (usado internamente) ── */
    --brand-teal:   #2ac6e8;

    /* ── Superficies ── */
    --surface:   #ffffff;
    --surface2:  #f7f9fa;

    /* ── Textos ── */
    --text:  #1a2e35;
    --text2: #5a7480;
    --text3: #adc0c8;

    /* ── Bordes / sombras ── */
    --border:    #dde8eb;
    --green:     #4caf50;
    --red:       #f44336;
    --orange:    #ff9800;
    --shadow:    0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 28px rgba(0,0,0,0.14);
}

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

body {
    font-family: 'Reem Kufi', sans-serif;
    background: var(--surface2);
    color: var(--text);
    line-height: 1.6;
}

/* ═══ NAVBAR ═══ */
.navbar {
    background: white;
    border-bottom: 3px solid var(--brand-yellow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.35s ease;
}
.navbar.visible {
    transform: translateY(0);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    gap: 16px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Reem Kufi', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--brand-dark);
    flex-shrink: 0;
    text-decoration: none;
}
.navbar-logo:hover { opacity: 0.85; }

.logo-img {
    height: 46px;
    width:  46px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-emoji { font-size: 28px; }

.navbar-menu {
    display: flex;
    gap: 24px;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: var(--text2);
    font-weight: 700;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-blue);
    border-bottom-color: var(--brand-yellow);
}

.navbar-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-search,
.btn-carrito,
.btn-user {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.2s;
    border-radius: 8px;
}

.btn-search:hover,
.btn-carrito:hover,
.btn-user:hover {
    background: var(--surface2);
}

.btn-carrito {
    position: relative;
}

.carrito-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.busqueda-expandida {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
}

.busqueda-expandida.hidden {
    display: none;
}

.input-busqueda {
    width: 100%;
    max-width: 500px;
    padding: 10px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'Reem Kufi', sans-serif;
    font-size: 14px;
}

.input-busqueda:focus {
    outline: none;
    border-color: var(--brand-teal);
}

/* ═══ MAIN CONTENT ═══ */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px;
}

.filtros-container {
    margin-bottom: 32px;
}

.filtros-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.filtros-header h2 {
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    font-family: 'Reem Kufi', sans-serif;
}

.select-categoria {
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-family: 'Reem Kufi', sans-serif;
    font-weight: 700;
    cursor: pointer;
    min-width: 200px;
}

.select-categoria:focus {
    outline: none;
    border-color: var(--brand-teal);
}

/* ═══ PRODUCTOS GRID ═══ */
.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.producto-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.producto-card:hover {
    border-color: var(--brand-teal);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.producto-img {
    width: 100%;
    height: 160px;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

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

.producto-body {
    padding: 12px;
}

.producto-categoria {
    font-size: 11px;
    color: var(--text3);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 4px;
}

.producto-nombre {
    font-size: 14px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.producto-descripcion {
    font-size: 12px;
    color: var(--text2);
    margin-bottom: 12px;
    line-height: 1.4;
}

.producto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.producto-precio {
    font-size: 18px;
    font-weight: 900;
    color: var(--brand-teal);
}

.btn-agregar {
    background: var(--brand-teal);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 900;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    flex: 1;
}

.btn-agregar:hover {
    background: var(--brand-dark);
}

/* Contador de cantidad en tarjeta */
.card-qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--brand-teal);
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    height: 36px;
}

.card-qty-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 12px;
    height: 100%;
    transition: background 0.15s;
    line-height: 1;
}

.card-qty-btn:hover {
    background: rgba(0,0,0,0.15);
}

.card-qty-value {
    flex: 1;
    text-align: center;
    color: white;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-main);
}

.producto-variantes-hint {
    font-size: 11px;
    color: var(--brand-teal);
    font-weight: 700;
    margin-bottom: 6px;
}

/* Selector de variantes */
/* ── Grupo label ── */
.variante-grupo-label {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text3);
    padding: 12px 0 5px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}
.variante-grupo-label:first-child { border-top: none; margin-top: 0; padding-top: 0; }

/* ── Fila de variante ── */
.variante-opcion {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 10px;
    border-radius: 10px;
    transition: background 0.12s;
    margin-bottom: 4px;
    border: 1.5px solid transparent;
}
.variante-opcion:active { background: var(--surface2); }
.variante-opcion.variante-seleccionada {
    background: #e6f7f9;
    border-color: var(--brand-teal);
}

/* ── Foto ── */
.variante-foto {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    border: 2px solid transparent;
}
.variante-opcion.variante-seleccionada .variante-foto { border-color: var(--brand-teal); }
.variante-foto-placeholder {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; flex-shrink: 0;
    background: var(--surface2); border-radius: 10px;
}

/* ── Info (nombre + precio apilados) ── */
.variante-info { flex: 1; min-width: 0; }
.variante-nombre {
    font-size: 14px; font-weight: 700;
    color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.variante-precio { font-size: 13px; font-weight: 900; color: var(--brand-teal); margin-top: 2px; }

/* ── Contador ── */
.variante-qty-ctrl {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: var(--surface2);
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid var(--border);
}
.variante-opcion.variante-seleccionada .variante-qty-ctrl {
    background: var(--brand-teal);
    border-color: var(--brand-teal);
}
.variante-qty-btn {
    background: transparent;
    border: none;
    color: var(--text2);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.1s;
    flex-shrink: 0;
}
.variante-qty-btn:disabled { opacity: 0.28; cursor: default; }
.variante-qty-btn:not(:disabled):active { background: rgba(0,0,0,0.1); }
.variante-opcion.variante-seleccionada .variante-qty-btn { color: #fff; }

/* Input numérico editable */
.variante-qty-val {
    width: 38px;
    text-align: center;
    font-size: 15px;
    font-weight: 900;
    color: var(--text);
    font-family: var(--font-main);
    background: transparent;
    border: none;
    outline: none;
    -moz-appearance: textfield;
    padding: 0;
}
.variante-qty-val::-webkit-inner-spin-button,
.variante-qty-val::-webkit-outer-spin-button { -webkit-appearance: none; }
.variante-opcion.variante-seleccionada .variante-qty-val { color: #fff; }

/* Fila de total */
.variante-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 2px;
    margin-top: 6px;
    border-top: 2px solid var(--border);
    font-size: 14px;
    font-weight: 700;
    color: var(--text2);
}
.variante-total-row strong { font-size: 16px; color: var(--brand-teal); font-weight: 900; }
.producto-emoji { font-size: 48px; line-height: 1; }

.loading {
    grid-column: 1/-1;
    text-align: center;
    padding: 48px 24px;
    color: var(--text3);
    font-size: 18px;
}

.sin-resultados {
    grid-column: 1/-1;
}

.sin-resultados.hidden {
    display: none;
}

.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--text2);
}

.empty-state h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

/* ═══ MODAL CARRITO ═══ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 16px;
    backdrop-filter: blur(4px);
}

.modal-overlay.hidden {
    display: none;
}

.modal-carrito {
    background: var(--surface);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 2px solid var(--border);
}

.modal-header h3 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 18px;
    color: var(--text);
}

.btn-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text3);
    transition: all 0.2s;
}

.btn-close:hover {
    color: var(--text);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.carrito-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.empty-carrito {
    text-align: center;
    padding: 48px 24px;
    color: var(--text3);
}

.empty-carrito div {
    font-size: 48px;
    margin-bottom: 12px;
}

.carrito-item {
    background: var(--surface2);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.item-info {
    flex: 1;
}

.item-nombre {
    font-weight: 900;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 2px;
}

.item-detalles {
    font-size: 12px;
    color: var(--text2);
}

.item-precio {
    font-weight: 900;
    color: var(--brand-teal);
    min-width: 60px;
    text-align: right;
}

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

.qty-btn {
    background: white;
    border: 1px solid var(--border);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 900;
    font-size: 12px;
}

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

.qty-value {
    width: 28px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
}

.btn-eliminar {
    background: none;
    border: none;
    color: var(--red);
    cursor: pointer;
    font-size: 16px;
}

.modal-footer {
    padding: 16px;
    border-top: 2px solid var(--border);
}

.carrito-resumen {
    background: var(--surface2);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.resumen-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 8px;
}

.resumen-row:last-child {
    margin-bottom: 0;
}

.resumen-total {
    border-top: 1px solid var(--border);
    padding-top: 8px;
    color: var(--text);
    font-weight: 900;
    font-size: 14px;
}

/* ═══ BOTONES ═══ */
.btn-primary {
    background: var(--brand-teal);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 900;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    width: 100%;
}

.btn-primary:hover {
    background: var(--brand-dark);
}

.btn-secondary {
    background: var(--surface2);
    color: var(--text);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 900;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    width: 100%;
    margin-top: 8px;
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-checkout {
    background: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 900;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    width: 100%;
    margin-bottom: 8px;
}

.btn-checkout:hover {
    background: #45a049;
}

/* ═══ USER MENU ═══ */
.user-menu {
    position: absolute;
    top: 70px;
    right: 16px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    min-width: 180px;
}

.user-menu.hidden {
    display: none;
}

.menu-item {
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    color: var(--text2);
    transition: all 0.2s;
    font-size: 13px;
}

.menu-item:first-child {
    border-radius: 6px 6px 0 0;
}

.menu-item:last-child {
    border-radius: 0 0 6px 6px;
}

.menu-item:hover {
    background: var(--surface2);
    color: var(--text);
}

/* ═══ MODAL BOX (variantes y genérico) ═══ */
.modal-box {
    background: var(--surface);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
    .modal-overlay { padding: 8px; }
    .modal-box { padding: 16px; border-radius: 12px; }
}

/* ═══ AUTH MODALS ═══ */
.modal-auth {
    background: var(--surface);
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border);
}

.form-auth {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 800;
    font-size: 12px;
    color: var(--text3);
    text-transform: uppercase;
}

.form-group input {
    padding: 10px 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'Reem Kufi', sans-serif;
    font-size: 13px;
    color: var(--text);
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-teal);
}

.form-switch {
    text-align: center;
    font-size: 13px;
    color: var(--text2);
    margin-top: 8px;
}

.form-switch a {
    color: var(--brand-teal);
    text-decoration: none;
    font-weight: 900;
}

.form-switch a:hover {
    text-decoration: underline;
}

/* ═══ TOAST ═══ */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--text);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    animation: slideIn 0.3s ease-out;
}

.toast.hidden {
    display: none;
}

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

/* ═══ RESPONSIVE ═══ */
/* ── HAMBURGUESA ── */
.btn-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.btn-hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--brand-dark);
    border-radius: 3px;
    transition: all 0.25s;
    transform-origin: center;
}
.btn-hamburger.hamburger-active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.btn-hamburger.hamburger-active span:nth-child(2) { opacity: 0; }
.btn-hamburger.hamburger-active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

@media (max-width: 768px) {
    .navbar-container {
        height: 56px;
        padding: 0 12px;
    }

    .btn-hamburger { display: flex; }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 12px 0 16px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        border-bottom: 3px solid var(--brand-yellow);
        z-index: 999;
        gap: 0;
    }
    .navbar-menu.nav-mobile-open { display: flex; }
    .nav-link { padding: 12px 24px; border-bottom: none; font-size: 17px; }
    .nav-link:hover, .nav-link.active { background: var(--surface2); border-bottom: none; color: var(--brand-blue); }

    .logo-text {
        display: none;
    }

    .navbar-logo {
        font-size: 24px;
    }

    .logo-emoji {
        font-size: 28px;
    }

    .filtros-header {
        flex-direction: column;
        align-items: stretch;
    }

    .select-categoria {
        min-width: auto;
    }

    .productos-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .modal-carrito {
        max-width: calc(100% - 32px);
    }

    .user-menu {
        right: 12px;
        left: 12px;
        width: auto;
    }

    .modal-auth {
        max-width: calc(100% - 32px);
    }
}

@media (max-width: 480px) {
    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-search {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   SECCIONES DE LANDING PAGE
═══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 92vh;
    background: var(--brand-dark);
    overflow: hidden;
}

/* Logo en el hero */
.hero-logo-wrap {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}
.hero-logo-img {
    height: 220px;
    width: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

/* Accordion distribuidores */
.dist-contenido-oculto {
    display: none;
}
.dist-contenido-oculto.abierto {
    display: block;
}
.dist-cta-btn {
    display: inline-block;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.dist-cta-btn:hover {
    background: #ffd740;
    transform: translateY(-2px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 64px 80px;
    color: white;
    background: var(--brand-dark);
    position: relative;
    z-index: 1;
    border-right: 6px solid var(--brand-yellow);
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 900;
    color: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 76px;
    line-height: 1.05;
    color: white;
    margin-bottom: 20px;
}

.hero-title-accent {
    color: var(--brand-blue);
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-main {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    transition: all 0.2s;
    box-shadow: 0 6px 20px rgba(246,199,44,0.4);
}
.btn-hero-main:hover {
    background: #ffd740;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(246,199,44,0.55);
}

.btn-hero-sec {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.2s;
}
.btn-hero-sec:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--brand-yellow);
    color: var(--brand-yellow);
}

.hero-fotos {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 92vh;
    gap: 3px;
}
.hero-fotos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hf-a { grid-column: 1; grid-row: 1 / 3; }
.hf-b { grid-column: 2; grid-row: 1; }
.hf-c { grid-column: 2; grid-row: 2; object-position: center 70%; }

/* ── FEATURES ── */
.features {
    background: white;
    padding: 72px 16px;
    border-bottom: 2px solid var(--border);
}

.features-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 36px 20px;
    border-radius: 16px;
    background: var(--surface2);
    border: 2px solid transparent;
    transition: all 0.25s;
}
.feature-item:hover {
    border-color: var(--brand-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(246,199,44,0.2);
}
.feature-icon {
    font-size: 44px;
    display: block;
    margin-bottom: 14px;
    background: var(--brand-yellow);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
    margin: 0 auto 18px;
}
.feature-item h3 {
    font-size: 15px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 8px;
}
.feature-item p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}

/* ── NOSOTROS ── */
.nosotros {
    background: var(--surface2);
    padding: 100px 16px;
}

.nosotros-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.nosotros-fotos {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-lg);
}
.nf-grande {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nf-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nf-col img {
    flex: 1;
    width: 100%;
    object-fit: cover;
    display: block;
}

.nosotros-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    color: var(--brand-dark);
    background: var(--brand-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.nosotros-texto h2 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 44px;
    line-height: 1.15;
    color: var(--brand-dark);
    margin-bottom: 20px;
}
.nosotros-texto p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 16px;
}
.nosotros-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px solid var(--border);
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-num {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 40px;
    color: var(--brand-blue);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text2);
}

/* ── BANNER MENÚ ── */
.menu-banner {
    background: var(--brand-blue);
    padding: 56px 16px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.menu-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,51,64,0.25) 0%, transparent 60%);
}
.menu-banner h2 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 42px;
    margin-bottom: 8px;
    position: relative;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.menu-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    position: relative;
}
.btn-ordena-banner {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    font-family: 'Reem Kufi', sans-serif;
    font-weight: 700;
    font-size: 17px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    transition: transform 0.15s, background 0.15s;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.btn-ordena-banner:hover {
    background: #ffd740;
    transform: translateY(-2px);
}

/* ── UBICACIÓN ── */
.ubicacion {
    background: var(--brand-dark);
    padding: 100px 16px;
    color: white;
}
.ubicacion-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.ubi-info h2 {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 44px;
    margin-bottom: 36px;
}
.ubi-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.ubi-icon {
    font-size: 22px;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
}
.ubi-item strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-yellow);
    margin-bottom: 5px;
}
.ubi-item p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.65;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 14px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
    margin-top: 8px;
    transition: all 0.2s;
}
.btn-whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.ubi-mapa {
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
}
.ubi-mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.mapa-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.06);
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 32px;
}
.mapa-placeholder span    { font-size: 52px; }
.mapa-placeholder strong  { font-size: 18px; color: white; }
.mapa-placeholder p       { font-size: 13px; max-width: 220px; line-height: 1.6; }
.btn-maps {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    margin-top: 4px;
    transition: all 0.2s;
}
.btn-maps:hover { background: #ffd740; }

/* ── FOOTER ── */
.footer {
    background: #071c23;
    color: rgba(255,255,255,0.7);
    padding: 72px 16px 0;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-emoji {
    font-size: 52px;
    margin-bottom: 10px;
}
.footer-brand-name {
    font-family: 'Reem Kufi', sans-serif;
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
}
.footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 240px;
}
.footer-col h4 {
    color: var(--brand-yellow);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand-blue); }
.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
    line-height: 1.6;
}
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════
   APARTADO DISTRIBUIDORES — EMPRENDE CHIDO
══════════════════════════════════════ */

/* Enlace especial en navbar */
.nav-link-dist {
    color: var(--brand-teal) !important;
    font-weight: 900 !important;
    border-bottom-color: var(--brand-teal) !important;
}

/* Wrapper general */
.dist-section {
    border-top: 4px solid var(--tc-carbon, #1C1C1C);
}

/* Header del apartado */
.dist-header {
    background: var(--tc-carbon, #1C1C1C);
    position: relative;
    overflow: hidden;
}
.dist-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(245,200,48,0.04) 40px,
        rgba(245,200,48,0.04) 80px
    );
}
.dist-header-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 6vw;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
}
.dist-header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}
.dist-header-foto {
    position: relative;
}
.dist-header-foto img {
    width: 100%;
    border-radius: 20px;
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
}
.dist-foto-tag {
    position: absolute;
    bottom: -14px;
    right: -14px;
    background: var(--tc-amarillo, #F5C830);
    border: 2.5px solid var(--tc-carbon, #1C1C1C);
    border-radius: 12px;
    padding: 9px 16px;
    box-shadow: 4px 4px 0 var(--tc-carbon, #1C1C1C);
    font-family: 'Reem Kufi', 'Reem Kufi', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: var(--tc-carbon, #1C1C1C);
    white-space: nowrap;
}
.dist-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tc-amarillo, #F5C830);
    color: var(--tc-carbon, #1C1C1C);
    font-family: 'Reem Kufi', 'Reem Kufi', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    border: 2px solid var(--tc-carbon, #1C1C1C);
}
.dist-title {
    font-family: 'Reem Kufi', 'Reem Kufi', sans-serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.02em;
    max-width: 700px;
}
.dist-title span {
    color: var(--tc-amarillo, #F5C830);
}
.dist-subtitle {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    max-width: 560px;
    font-weight: 400;
}
.dist-cta-btn {
    display: inline-block;
    background: var(--tc-amarillo, #F5C830);
    color: var(--tc-carbon, #1C1C1C);
    font-family: 'Reem Kufi', 'Reem Kufi', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 12px;
    border: 2.5px solid var(--tc-carbon, #1C1C1C);
    text-decoration: none;
    box-shadow: 4px 4px 0 var(--tc-amarillo, #F5C830);
    transition: transform 0.15s, box-shadow 0.15s;
    margin-top: 0.5rem;
}
.dist-cta-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--tc-turquesa, #29C4D0);
}

@media (max-width: 900px) {
    .dist-header-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 5vw; }
    .dist-header-foto { max-width: 380px; margin: 0 auto; }
    .dist-title { font-size: clamp(30px, 8vw, 48px); }
}

/* ══════════════════════════════════════
   SECCIONES DISTRIBUIDOR (v3)
══════════════════════════════════════ */
:root {
    --tc-amarillo: #F5C830;
    --tc-turquesa: #29C4D0;
    --tc-crema:    #FFF9EE;
    --tc-carbon:   #1C1C1C;
    --tc-smoke:    #6B6560;
    --tc-verde:    #5BAC42;
    --tc-amber:    #E8A800;
}

.tc-container { max-width: 1200px; margin: 0 auto; padding: 7rem 6vw; }

/* MARQUEE */
.tc-marquee {
    background: var(--tc-amarillo);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2.5px solid var(--tc-carbon);
    border-bottom: 2.5px solid var(--tc-carbon);
}
.tc-marquee-track {
    display: inline-block;
    animation: tcMarquee 16s linear infinite;
}
.tc-m-item {
    display: inline-block;
    font-family: 'Reem Kufi', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--tc-carbon);
    padding: 0 1.5rem;
}
.tc-m-sep {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--tc-turquesa);
    border-radius: 50%;
    border: 1.5px solid var(--tc-carbon);
    vertical-align: middle;
}
@keyframes tcMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* PROPUESTA */
.tc-propuesta { background: var(--tc-crema); }
.tc-section-eyebrow {
    display: inline-block;
    font-family: 'Reem Kufi', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--tc-turquesa);
    background: rgba(41,196,208,0.1);
    border: 1.5px solid rgba(41,196,208,0.4);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}
.tc-eyebrow-dark {
    color: var(--tc-amarillo);
    background: rgba(245,200,48,0.1);
    border-color: rgba(245,200,48,0.3);
}
.tc-section-title {
    font-family: 'Reem Kufi', sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.05;
    color: var(--tc-carbon);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.tc-title-light { color: #fff; margin-bottom: 3.5rem; }
.tc-t { color: var(--tc-turquesa); }
.tc-y { color: var(--tc-amber); }

.tc-propuesta-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5vw;
    align-items: start;
    margin-top: 4rem;
}
.tc-benefit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.tc-benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 2px solid var(--tc-carbon);
    border-radius: 16px;
    padding: 1.1rem 1.25rem;
    box-shadow: 3px 3px 0 var(--tc-carbon);
    transition: transform 0.2s, box-shadow 0.2s;
}
.tc-benefit-item:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--tc-carbon); }
.tc-bi-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 2px solid var(--tc-carbon);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.tc-bi-icon.a { background: var(--tc-amarillo); }
.tc-bi-icon.b { background: rgba(41,196,208,0.2); }
.tc-bi-icon.c { background: rgba(91,172,66,0.2); }
.tc-bi-text h3 { font-family: 'Reem Kufi', sans-serif; font-weight: 800; font-size: 16px; color: var(--tc-carbon); margin-bottom: 3px; }
.tc-bi-text p  { font-size: 13px; font-weight: 300; color: var(--tc-smoke); line-height: 1.6; }

.tc-prop-photo { position: relative; }
.tc-prop-photo-wrap {
    border-radius: 20px;
    border: 3px solid var(--tc-carbon);
    overflow: hidden;
    box-shadow: 8px 8px 0 var(--tc-carbon);
    aspect-ratio: 1;
    background: var(--tc-amarillo);
}
.tc-prop-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tc-prop-photo-tag {
    position: absolute;
    bottom: -16px; left: -16px;
    background: var(--tc-turquesa);
    border: 2.5px solid var(--tc-carbon);
    border-radius: 14px;
    padding: 10px 18px;
    box-shadow: 4px 4px 0 var(--tc-carbon);
    font-family: 'Reem Kufi', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--tc-carbon);
    white-space: nowrap;
}

/* PROCESO */
.tc-proceso { background: var(--tc-carbon); }
.tc-steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
}
.tc-step {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem 1.75rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
}
.tc-step:last-child { border-right: none; }
.tc-step:hover { background: rgba(245,200,48,0.06); }
.tc-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--tc-amarillo);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.tc-step:hover::before { transform: scaleX(1); }
.tc-step-n { font-family: 'Reem Kufi', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.1em; color: var(--tc-amarillo); text-transform: uppercase; margin-bottom: 1rem; opacity: 0.7; }
.tc-step-emoji { font-size: 32px; display: block; margin-bottom: 1rem; }
.tc-step h3 { font-family: 'Reem Kufi', sans-serif; font-weight: 800; font-size: 18px; color: #fff; margin-bottom: 8px; }
.tc-step p  { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* CTA FORM */
.tc-cta-wrap {
    background: var(--tc-amarillo);
    border-top: 3px solid var(--tc-carbon);
    border-bottom: 3px solid var(--tc-carbon);
}
.tc-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
}
.tc-cta-left {
    background: var(--tc-carbon);
    padding: 5rem 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.tc-cta-left::after {
    content: '🫔';
    position: absolute;
    font-size: 200px;
    bottom: -40px; right: -20px;
    opacity: 0.04;
    pointer-events: none;
}
.tc-cta-title {
    font-family: 'Reem Kufi', sans-serif;
    font-weight: 800;
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 1.0;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
.tc-cta-desc { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 380px; }
.tc-cta-right { padding: 4rem 4vw; display: flex; align-items: center; }
.tc-form-box {
    width: 100%;
    background: #fff;
    border: 3px solid var(--tc-carbon);
    border-radius: 24px;
    padding: 2.25rem 2rem;
    box-shadow: 8px 8px 0 var(--tc-carbon);
}
.tc-form-title { font-family: 'Reem Kufi', sans-serif; font-weight: 800; font-size: 21px; color: var(--tc-carbon); margin-bottom: 1.5rem; }
.tc-f-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tc-smoke); margin-bottom: 6px; margin-top: 14px; }
.tc-f-label:first-of-type { margin-top: 0; }
.tc-f-input {
    width: 100%;
    padding: 11px 15px;
    border: 2px solid #E0D8CC;
    border-radius: 10px;
    font-family: 'Reem Kufi', sans-serif;
    font-size: 15px;
    color: var(--tc-carbon);
    background: var(--tc-crema);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.tc-f-input:focus { border-color: var(--tc-turquesa); background: #fff; }
.tc-f-input::placeholder { color: #B8AEA4; }
.tc-f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tc-btn-submit {
    width: 100%;
    margin-top: 18px;
    padding: 15px;
    background: var(--tc-amarillo);
    color: var(--tc-carbon);
    font-family: 'Reem Kufi', sans-serif;
    font-weight: 800;
    font-size: 16px;
    border: 2.5px solid var(--tc-carbon);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--tc-carbon);
    transition: transform 0.15s, box-shadow 0.15s;
}
.tc-btn-submit:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--tc-carbon); }
.tc-btn-submit:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--tc-carbon); }
.tc-f-note { font-size: 11px; color: #B8AEA4; text-align: center; margin-top: 10px; }
.tc-f-success {
    display: none;
    background: var(--tc-verde);
    color: #fff;
    font-family: 'Reem Kufi', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    margin-top: 12px;
}

@media (max-width: 960px) {
    .tc-propuesta-grid { grid-template-columns: 1fr; }
    .tc-prop-photo { margin-top: 3rem; }
    .tc-steps-row { grid-template-columns: 1fr 1fr; }
    .tc-cta-inner { grid-template-columns: 1fr; }
    .tc-cta-left { padding: 4rem 5vw 3rem; }
}
@media (max-width: 540px) {
    .tc-steps-row { grid-template-columns: 1fr; }
    .tc-f-row { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE LANDING ── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-content {
        padding: 80px 32px 52px;
        text-align: center;
        order: 1;
    }
    .hero-title  { font-size: 56px; }
    .hero-btns   { justify-content: center; }
    .hero-fotos  { height: 280px; order: 0; }

    .features-inner          { grid-template-columns: repeat(2, 1fr); }
    .nosotros-inner          { grid-template-columns: 1fr; gap: 40px; }
    .nosotros-fotos          { height: 260px; }
    .nosotros-texto h2       { font-size: 32px; }
    .ubicacion-inner         { grid-template-columns: 1fr; gap: 40px; }
    .ubi-mapa                { height: 260px; }
    .footer-inner            { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand            { grid-column: 1 / 3; }
}

@media (max-width: 600px) {
    .hero-title        { font-size: 44px; }
    .hero-fotos        {
        height: 260px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    .hf-a { grid-column: 1; grid-row: 1; object-position: center 40%; }
    .hf-b, .hf-c { display: none; }
    .features-inner    { grid-template-columns: 1fr; gap: 12px; }
    .feature-item      { padding: 24px 16px; }
    .nosotros-stats    { gap: 24px; }
    .stat-num          { font-size: 32px; }
    .menu-banner h2    { font-size: 30px; }
    .ubi-info h2       { font-size: 32px; }
    .footer-inner      { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand      { grid-column: 1; }
}
