﻿/* style.css - Fajardo's Pizza Bar Restaurant
   Minimalista, Glamuroso, Tonalidad Verde
   Inspirado en alta gastronomía con esencia tropical
-------------------------------------------------- */

:root {
    --green-deep: #1A4D2E;      /* Elegancia, base */
    --green-soft: #E8F3E8;      /* Fondos sutiles */
    --green-moss: #2C6E49;      /* Acentos, botones */
    --gold: #C9A84B;           /* Glamour, detalles */
    --gold-light: #F5F0E1;     /* Fondos cálidos */
    --white: #FFFFFF;
    --black: #1E1E1E;
    --gray-light: #F9FBF9;
    --gray-border: #DDE9DD;
    --shadow: 0 20px 40px -12px rgba(26, 77, 46, 0.08);
    --shadow-hover: 0 30px 50px -12px rgba(26, 77, 46, 0.15);
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-spinner {
    text-align: center;
}
.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--green-soft);
    border-top: 3px solid var(--green-moss);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.preloader p {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--green-deep);
    letter-spacing: 2px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-border);
}

.header-top {
    background-color: var(--green-deep);
    color: var(--gold-light);
    padding: 0.5rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}
.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-contact span {
    margin-right: 1.8rem;
}
.header-contact i {
    margin-right: 0.4rem;
    color: var(--gold);
}
.header-social a {
    color: var(--gold-light);
    margin-left: 1.2rem;
    transition: var(--transition);
}
.header-social a:hover {
    color: var(--gold);
}

.navbar {
    padding: 0.8rem 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}
.logo-img img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.logo-text h1 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--green-deep);
    line-height: 1.1;
}
.logo-text p {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-moss);
}

.nav-right {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--green-moss);
    transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.nav-link.active {
    color: var(--green-deep);
    font-weight: 600;
}

.cart-btn {
    position: relative;
    color: var(--green-deep);
    font-size: 1.3rem;
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--gold);
    color: var(--green-deep);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1.5rem;
}
.menu-toggle span {
    width: 26px;
    height: 2px;
    background-color: var(--green-deep);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO - CON TUS 3 FOTOS ENAMORADAS ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Tus 3 fotos rotando con amor */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    animation: heroZoom 20s infinite alternate ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 77, 46, 0.8) 0%, 
        rgba(44, 110, 73, 0.7) 50%,
        rgba(26, 77, 46, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 75, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 168, 75, 0.3);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
    font-weight: 500;
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-main {
    display: block;
    font-family: var(--font-display);
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 25px rgba(0,0,0,0.4);
    letter-spacing: 2px;
}

.hero-title-sub {
    display: block;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold-light);
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.hero-buttons .btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
}

.hero-buttons .btn-primary {
    background: var(--gold);
    color: var(--green-deep);
    box-shadow: 0 8px 25px rgba(201, 168, 75, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: white;
    color: var(--green-deep);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 168, 75, 0.6);
}

.hero-buttons .btn-outline {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    backdrop-filter: blur(4px);
}

.hero-buttons .btn-outline:hover {
    background: white;
    border-color: white;
    color: var(--green-deep);
    transform: translateY(-3px);
}

/* Indicadores sutiles - como puntos suspensivos elegantes */
.hero-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(201, 168, 75, 0.6);
}

.indicator:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    transform: scale(1.2);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2.5s infinite;
}

.hero-scroll a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero-scroll a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-deep);
    transform: translateY(-4px);
}



/* ===== BOTONES - ESTILOS ORIGINALES COMPLETOS ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--green-moss);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(44,110,73,0.25);
}

.btn-primary:hover {
    background-color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(26,77,46,0.35);
}

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

.btn-outline:hover {
    background: var(--green-moss);
    color: white;
}


/* ===== SECCIONES ===== */
section {
    padding: 6rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--green-moss);
    margin-bottom: 0.8rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--green-deep);
    margin-bottom: 1rem;
}
.section-description {
    font-size: 1.2rem;
    color: #5A5A5A;
    max-width: 700px;
    margin: 0 auto;
}

/* Experiencia */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.experience-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-border);
}
.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.card-icon {
    width: 80px;
    height: 80px;
    background: var(--green-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--green-moss);
}
.experience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--green-deep);
}

.experience-highlight {
    background: linear-gradient(105deg, var(--gold-light) 0%, #FFF 100%);
    border-radius: 32px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--gold);
}
.highlight-content h3 {
    font-size: 1.9rem;
    color: var(--green-deep);
    margin-bottom: 0.7rem;
}
.highlight-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--green-deep);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
}

/* ===== MENÚ ===== */
.menu-section {
    background-color: var(--gray-light);
}
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
}
.tab-btn {
    padding: 0.7rem 1.8rem;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 40px;
    font-weight: 500;
    color: var(--black);
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tab-btn i {
    color: var(--green-moss);
}
.tab-btn:hover, .tab-btn.active {
    background: var(--green-moss);
    color: white;
    border-color: var(--green-moss);
}
.tab-btn:hover i, .tab-btn.active i {
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.menu-item {
    background: white;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
    transition: var(--transition);
}
.menu-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
}
.item-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--green-deep);
}
.item-price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 4px;
}
.price-tag {
    font-weight: 700;
    color: var(--green-moss);
    font-size: 1.1rem;
}
.cheese-tag {
    background: var(--gold-light);
    color: var(--green-deep);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 0.5px solid var(--gold);
}
.item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}
.add-btn {
    background: var(--green-soft);
    border: none;
    color: var(--green-moss);
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}
.add-btn:hover {
    background: var(--green-moss);
    color: white;
    border-color: var(--green-moss);
}
.add-btn i {
    font-size: 0.9rem;
}
.agregado-price {
    font-weight: 600;
    color: var(--green-deep);
}

/* ===== GALERÍA ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26,77,46,0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}
.gallery-overlay h4 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}


/* ===== CONTACTO - VERSIÓN CORREGIDA Y BENDECIDA ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 100%;
    overflow: hidden;        /* ← por si acaso */
}

.info-icon {
    width: 54px;
    height: 54px;
    background: var(--green-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--green-moss);
    flex-shrink: 0;         /* ← no se achica */
}

.info-content {
    flex: 1;
    min-width: 0;           /* ← permite que el texto se corte si es necesario */
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--green-deep);
}

.info-content p {
    color: #555;
    line-height: 1.5;
    word-break: break-word;
}

.map-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--green-moss);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    word-break: break-word;
}

.map-link:hover {
    color: var(--gold);
}

.map-link i {
    margin-right: 0.3rem;
}

.payment-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
    font-size: 1.3rem;
    color: var(--green-moss);
}

/* MAPA - VERSIÓN ESTABLE */
.map-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;     /* ← altura controlada */
    box-shadow: var(--shadow);
}

.map-image {
    width: 100%;
    height: 100%;           /* ← ahora sí, porque el padre tiene aspect-ratio */
    display: block;
}

.location-img {
    width: 100%;
    height: 100%;           /* ← llena el contenedor */
    object-fit: cover;      /* ← cubre sin deformar */
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.btn-map {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--green-deep);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--gold);
}

.btn-map:hover {
    background: var(--gold);
    color: var(--green-deep);
    transform: translateY(-2px);
}



/* ===== MODAL ===== */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.order-modal.active {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: white;
    width: 500px;
    max-width: 94%;
    border-radius: 32px;
    box-shadow: 0 50px 80px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.order-modal.active .modal-content {
    transform: scale(1);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-border);
}
.modal-header h3 {
    color: var(--green-deep);
}
.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
}
.modal-body {
    padding: 1.5rem 2rem;
    max-height: 60vh;
    overflow-y: auto;
}
.order-empty {
    text-align: center;
    padding: 2rem;
    color: #888;
}
.order-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ccc;
}
.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--gray-border);
}
.order-item-info {
    flex: 1;
}
.order-item-title {
    font-weight: 600;
    color: var(--green-deep);
}
.order-item-cheese {
    font-size: 0.7rem;
    background: var(--gold-light);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}
.order-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gray-border);
    background: white;
    cursor: pointer;
}
.order-summary {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--green-soft);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--green-deep);
}
.modal-footer {
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--gray-border);
}
.btn-whatsapp {
    background: #25D366;
    color: white;
    flex: 1;
}
.btn-whatsapp:hover {
    background: #128C7E;
}
.btn-clear {
    background: #f1f1f1;
    color: #666;
}
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.float-whatsapp span {
    position: absolute;
    background: var(--green-deep);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    right: 80px;
    opacity: 0;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.float-whatsapp:hover span {
    opacity: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--green-deep);
    color: white;
    padding: 4rem 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}
.footer-logo-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
}
.social-link {
    color: var(--gold-light);
    margin-right: 1rem;
    font-size: 1.2rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== RESPONSIVE ===== */
/* Responsive */
@media (max-width: 768px) {
    .hero-title-main {
        font-size: 3.5rem;
    }
    
    .hero-title-sub {
        font-size: 1rem;
        letter-spacing: 6px;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 1024px) {
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 120px);
        background: white;
        flex-direction: column;
        padding: 3rem 2rem;
        transition: 0.3s;
        box-shadow: 2px 0 20px rgba(0,0,0,0.05);
    }
    .nav-menu.active { left: 0; }
    .header-contact span:not(:first-child) { display: none; }
    .slide-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .experience-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .menu-tabs .tab-btn { width: 100%; }
}



/* ===== AJUSTES RESPONSIVE FINALES ===== */
/* Solo correcciones necesarias sin duplicar reglas */

/* 1. CORRECCIÓN IMAGEN DE MAY */
.experience-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.highlight-image {
    flex: 0 0 180px;
    max-width: 180px;
}

.highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media screen and (max-width: 992px) {
    .experience-highlight {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.8rem;
    }
    .highlight-image {
        flex: 0 0 auto;
        max-width: 160px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 576px) {
    .highlight-image {
        max-width: 140px;
    }
}

@media screen and (max-width: 380px) {
    .highlight-image {
        max-width: 120px;
    }
}

/* ===== 🚀 RESPONSIVE COMPLETO PARA EL MENÚ ===== */

/* Tablets pequeñas y móviles grandes */
@media screen and (max-width: 900px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .menu-tabs {
        gap: 0.6rem !important;
    }
    
    .tab-btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
}

/* Móviles grandes */
@media screen and (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }
    
    .menu-item {
        padding: 1.2rem !important;
    }
    
    .item-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .item-price-group {
        align-items: flex-start !important;
        margin-top: 0.6rem !important;
    }
    
    .price-row {
        flex-wrap: wrap !important;
    }
    
    .item-actions {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    
    .add-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Móviles pequeños */
@media screen and (max-width: 400px) {
    .menu-tabs {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .tab-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .menu-item {
        padding: 1rem !important;
    }
    
    .item-name {
        font-size: 1.1rem !important;
    }
    
    .price-tag {
        font-size: 1rem !important;
    }
}



/* ===== RESPONSIVE CONTACTO ===== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;  /* ← se apilan */
        gap: 2rem;
    }
    
    .map-container {
        aspect-ratio: 16/9;         /* ← mantiene proporción */
    }
}

@media (max-width: 768px) {
    .info-card {
        padding: 1.2rem;
    }
    
    .btn-map {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .info-card {
        flex-direction: column;     /* ← ícono arriba, texto abajo */
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        margin-bottom: 0.5rem;
    }
    
    .map-overlay {
        bottom: 10px;
        right: 10px;
    }
    
    .btn-map {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* 2. ✅ BOTÓN WHATSAPP - Solo responsive (sin duplicar reglas base) */
@media screen and (max-width: 768px) {
    .float-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
    }
    .float-whatsapp span {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .float-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 380px) {
    .float-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        bottom: 12px;
        right: 12px;
    }
}
/* FIN - Solo estos ajustes */