/* ============================================
   RESET Y CONFIGURACIÓN BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background-color: #fcf8f2;
    color: #2c1a12;
    line-height: 1.7;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TIPOGRAFÍA PREMIUM
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 3rem;
    color: #2c1a12;
    margin-bottom: 10px;
    text-align: center;
}

.section-tag {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: #c9a96e;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

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

/* ============================================
   DIVISORES DECORATIVOS
   ============================================ */
.divider-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px auto 40px auto;
    width: 100%;
    max-width: 300px;
}

.divider-center .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}

.divider-center .diamond {
    color: #c9a96e;
    font-size: 0.7rem;
}

.divider-left {
    width: 60px;
    height: 3px;
    background: #c9a96e;
    margin: 20px 0 25px 0;
}

/* ============================================
   HERO - ALTA DEFINICIÓN
   ============================================ */
header.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url('../img/portada1.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

header.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,26,18,0.85) 0%, rgba(44,26,18,0.3) 100%);
    z-index: 1;
}

header.hero .hero-bg-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #fcf8f2 0%, transparent 100%);
    z-index: 1;
}

header.hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.hero-etiqueta {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 24px;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    background: rgba(0,0,0,0.2);
}

header.hero h1 {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px auto 20px auto;
    max-width: 200px;
}

.hero-divider .line {
    flex: 1;
    height: 2px;
    background: #c9a96e;
}

.hero-divider .diamond {
    color: #c9a96e;
    font-size: 0.8rem;
}

header.hero .subtitulo {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    margin-bottom: 16px;
}

header.hero .frase {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-block;
    padding: 16px 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #c9a96e, #b8954a);
    color: #2c1a12;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, #dbb97e, #c9a96e);
}

.btn-whatsapp {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

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

/* ============================================
   NAVEGACIÓN STICKY + MENÚ HAMBURGUESA
   ============================================ */
nav {
    background: #2c1a12;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid #c9a96e;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #c9a96e;
    letter-spacing: 3px;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #f5e3d3;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    color: #f5e3d3;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a96e;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #c9a96e;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 12px;
}

.nav-social a {
    color: #f5e3d3;
    transition: color 0.3s;
}

.nav-social a:hover {
    color: #c9a96e;
}

/* Redes sociales dentro del menú móvil (oculto en desktop) */
.nav-social-mobile {
    display: none;
}

/* ============================================
   SECCIONES - GENERAL
   ============================================ */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #f8f2ea;
}

/* ============================================
   NOSOTROS
   ============================================ */
.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nosotros-texto p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: #3d2b20;
}

.nosotros-texto .cita {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: #c9a96e;
    margin: 25px 0;
    padding: 10px 0;
    border-top: 1px solid #e0cdb8;
    border-bottom: 1px solid #e0cdb8;
}

.btn-outline {
    display: inline-block;
    padding: 12px 36px;
    border: 2px solid #c9a96e;
    color: #2c1a12;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-outline:hover {
    background: #c9a96e;
    color: #fff;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.nosotros-imagen {
    position: relative;
}

.nosotros-imagen img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #2c1a12;
    padding: 24px 30px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    text-align: center;
    border-left: 4px solid #c9a96e;
}

.floating-card i {
    font-size: 2rem;
    color: #c9a96e;
    display: block;
    margin-bottom: 6px;
}

.floating-card span {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: block;
}

.floating-card p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

/* ============================================
   MENÚ
   ============================================ */
.section-menu {
    background:
        linear-gradient(180deg, rgba(58, 33, 24, 0.05), rgba(201, 169, 110, 0.08)),
        #fffaf3;
}

.menu-oficial .container {
    max-width: 1180px;
}

.menu-page-body {
    background: #fffaf3;
}

.menu-standalone {
    padding-top: 46px;
}

.menu-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #3a2118;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.menu-back-link:hover {
    color: #b88735;
    transform: translateX(-4px);
}

.menu-teaser-section {
    padding: 70px 0;
}

.menu-teaser {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #3a2118 0%, #5a3424 100%);
    color: #fffaf3;
    border-radius: 8px;
    padding: 42px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    box-shadow: 0 22px 46px rgba(58, 33, 24, 0.18);
}

.menu-teaser .section-tag {
    text-align: left;
    color: #d7b879;
}

.menu-teaser h2 {
    color: #fffaf3;
    text-align: left;
    font-size: 2.35rem;
}

.menu-teaser p {
    color: #eadbc4;
    max-width: 680px;
    margin: 0;
}

.menu-teaser-btn {
    min-width: 180px;
    white-space: nowrap;
}

.menu-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a4033;
    margin: 0 auto 34px auto;
    max-width: 720px;
}

.menu-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 360px;
    gap: 28px;
    align-items: stretch;
    background: linear-gradient(135deg, #3a2118 0%, #5a3424 100%);
    color: #fffaf3;
    border-radius: 8px;
    padding: 34px;
    box-shadow: 0 24px 55px rgba(58, 33, 24, 0.22);
    border: 1px solid rgba(201, 169, 110, 0.35);
    margin-bottom: 26px;
}

.menu-eyebrow {
    display: inline-block;
    color: #d7b879;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.menu-feature h3 {
    font-size: 2.2rem;
    color: #fffaf3;
    margin-bottom: 12px;
    line-height: 1.15;
}

.menu-feature p {
    color: #eadbc4;
    max-width: 640px;
}

.menu-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.btn-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-menu-primary {
    background: #25D366;
    color: #082516;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.24);
}

.btn-menu-primary:hover {
    background: #35e978;
    transform: translateY(-3px);
}

.btn-menu-secondary {
    color: #fffaf3;
    border: 1px solid rgba(255, 250, 243, 0.34);
    background: rgba(255, 250, 243, 0.08);
}

.btn-menu-secondary:hover {
    background: rgba(255, 250, 243, 0.16);
    transform: translateY(-3px);
}

.menu-contact-panel {
    display: grid;
    align-content: center;
    gap: 16px;
    background: rgba(255, 250, 243, 0.08);
    border: 1px solid rgba(255, 250, 243, 0.18);
    border-radius: 8px;
    padding: 24px;
}

.menu-contact-item {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 250, 243, 0.18);
}

.menu-contact-item span {
    display: block;
    color: #d7b879;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.menu-contact-item a {
    color: #fffaf3;
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    text-decoration: none;
}

.menu-contact-panel p {
    font-size: 0.86rem;
    line-height: 1.5;
    margin: 0;
}

.menu-quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0 auto 34px auto;
}

.menu-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    color: #3a2118;
    background: #fff;
    border: 1px solid #e2d2bd;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(58, 33, 24, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.menu-chip i {
    color: #b88735;
    font-size: 1.05rem;
}

.menu-chip:hover {
    color: #8f6423;
    border-color: #c9a96e;
    transform: translateY(-3px);
}

.menu-pages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.menu-page-card {
    background: #fff;
    border: 1px solid #e2d2bd;
    border-radius: 8px;
    padding: 14px;
    box-shadow: 0 18px 36px rgba(58, 33, 24, 0.08);
}

.menu-page-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 46px;
    padding: 0 2px 12px 2px;
}

.menu-page-meta span {
    color: #b88735;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.menu-page-meta h3 {
    color: #3a2118;
    font-size: 1.35rem;
    margin: 0;
}

.menu-page-button {
    display: block;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: inset 0 0 0 1px rgba(58, 33, 24, 0.08);
}

.menu-page-button img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1199 / 1696;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.menu-page-button:hover img {
    transform: scale(1.025);
    filter: saturate(1.05) contrast(1.02);
}

.menu-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    align-items: center;
    gap: 14px;
    padding: 28px;
    background: rgba(32, 18, 13, 0.92);
}

.menu-lightbox.open {
    display: grid;
}

.lightbox-figure {
    max-width: min(92vw, 780px);
    max-height: 92vh;
    margin-left: auto;
    margin-right: auto;
}

.lightbox-figure img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 86vh;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.lightbox-figure figcaption {
    color: #fffaf3;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
}

.lightbox-button {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 250, 243, 0.24);
    border-radius: 50%;
    background: rgba(255, 250, 243, 0.1);
    color: #fffaf3;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-button:hover,
.lightbox-button:focus-visible {
    background: #c9a96e;
    color: #3a2118;
    transform: scale(1.05);
    outline: none;
}

.lightbox-button:disabled,
.lightbox-button[aria-disabled="true"] {
    opacity: 0.28;
    cursor: not-allowed;
    pointer-events: none;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
}

/* ============================================
   GALERÍA
   ============================================ */
.section-galeria {
    background: #f8f2ea;
}

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

.galeria-resumen {
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-auto-rows: 170px;
}

.galeria-item {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #2c1a12;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    cursor: zoom-in;
}

.galeria-destacada {
    grid-row: span 2;
}

.galeria-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    cursor: zoom-in;
}

.galeria-resumen .galeria-item img {
    height: 100%;
}

.galeria-item:hover img {
    transform: scale(1.08);
}

.galeria-actions {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.btn-gallery-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 24px;
    border: 1px solid #c9a96e;
    border-radius: 8px;
    background: #2c1a12;
    color: #fffaf3;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-gallery-more:hover,
.btn-gallery-more:focus-visible {
    background: #5a3424;
    box-shadow: 0 12px 26px rgba(58, 33, 24, 0.18);
    transform: translateY(-3px);
    outline: none;
}

.gallery-lightbox .lightbox-figure {
    max-width: min(94vw, 1180px);
}

.gallery-lightbox .lightbox-figure img {
    object-fit: contain;
}

.gallery-lightbox .lightbox-figure figcaption {
    display: none;
}

.gallery-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    min-width: 70px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 250, 243, 0.22);
    border-radius: 999px;
    background: rgba(255, 250, 243, 0.1);
    color: #fffaf3;
    font-weight: 700;
    font-size: 0.82rem;
    text-align: center;
    letter-spacing: 1px;
}

/* ============================================
   UBICACIÓN
   ============================================ */
.ubicacion-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 26px;
    align-items: start;
}

.ubicacion-card,
.horario-card {
    background: #fffaf3;
    border: 1px solid #eadbc4;
    border-radius: 8px;
    box-shadow: 0 15px 34px rgba(58, 33, 24, 0.08);
    overflow: hidden;
}

.ubicacion-card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
}

.dir-item {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.dir-item i {
    font-size: 1.5rem;
    color: #c9a96e;
    width: 40px;
    text-align: center;
    margin-top: 4px;
}

.dir-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2c1a12;
    margin-bottom: 4px;
}

.dir-item p {
    color: #5a4033;
    margin: 0;
}

.dir-item span {
    display: block;
    color: #8a6a57;
    font-size: 0.9rem;
    margin-top: 4px;
}

.ubicacion-ruta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 8px;
    background: #2c1a12;
    color: #fffaf3;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ubicacion-ruta:hover {
    background: #5a3424;
    box-shadow: 0 12px 24px rgba(58, 33, 24, 0.16);
    transform: translateY(-3px);
}

.horario-card {
    padding: 22px;
}

.horario-heading {
    padding-bottom: 18px;
    border-bottom: 1px solid #eadbc4;
}

.horario-lista {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    width: 100%;
}

.horario-row {
    display: grid;
    gap: 2px;
    padding: 11px 12px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid #eadbc4;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(58, 33, 24, 0.05);
}

.horario-row span {
    color: #3d2b20;
    font-weight: 600;
}

.horario-row strong {
    color: #2c1a12;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.horario-extendido {
    border-color: rgba(201, 169, 110, 0.72);
    background: linear-gradient(135deg, #fffaf3, #f1dfc7);
}

.mapa-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border-top: 1px solid #eadbc4;
}

.mapa-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   CONTACTO
   ============================================ */
.contacto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contacto-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s;
}

.contacto-card:hover {
    transform: translateY(-5px);
}

.contacto-card.highlight {
    background: #2c1a12;
    color: #fff;
    border: 1px solid #c9a96e;
}

.contacto-card.highlight h4 {
    color: #fff;
}
.contacto-card.highlight a:not(.whatsapp-btn) {
    color: #c9a96e;
}
.contacto-card.highlight p {
    color: #d4c3b0;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #f8f2ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
    color: #2c1a12;
}

.whatsapp-bg {
    background: #25D366;
    color: #fff;
}

.contacto-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contacto-card a {
    display: block;
    color: #2c1a12;
    text-decoration: none;
    font-weight: 400;
    padding: 4px 0;
}

.contacto-card a:hover {
    color: #c9a96e;
}

.whatsapp-btn {
    display: inline-block !important;
    background: #25D366;
    color: #fff !important;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin: 10px auto;
    transition: background 0.3s;
    min-width: 180px;
    text-align: center;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: #1ebe5c !important;
    color: #fff !important;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #f8f2ea;
    border-radius: 50%;
    line-height: 45px;
    color: #2c1a12;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #c9a96e;
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #2c1a12;
    color: #d4c3b0;
    padding: 40px 0;
    border-top: 3px solid #c9a96e;
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #c9a96e;
    margin: 0;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

.footer-links a {
    color: #d4c3b0;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c9a96e;
}

.footer-copy p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ============================================
   ANIMACIONES FADE-IN (SCROLL)
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE - ADAPTACIÓN A CUALQUIER DISPOSITIVO
   ============================================ */

/* Tablets y laptops pequeñas */
@media (max-width: 992px) {
    .nosotros-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nosotros-imagen img {
        height: 400px;
    }
    .ubicacion-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ubicacion-card-info {
        align-items: flex-start;
    }
    .contacto-grid {
        grid-template-columns: 1fr 1fr;
    }
    .menu-teaser {
        grid-template-columns: 1fr;
    }
    .menu-teaser-btn {
        width: 100%;
    }
    .menu-feature {
        grid-template-columns: 1fr;
    }
    .menu-pages {
        gap: 18px;
    }
    .floating-card {
        right: 10px;
        bottom: -10px;
        padding: 16px 24px;
    }
    .floating-card span {
        font-size: 1.4rem;
    }
}

/* Móviles y tablets pequeñas */
@media (max-width: 768px) {
    /* HERO */
    header.hero {
        background-attachment: scroll;
        min-height: 80vh;
    }
    header.hero h1 {
        font-size: 3.8rem;
        letter-spacing: 2px;
    }
    header.hero .subtitulo {
        font-size: 1.5rem;
    }
    header.hero .frase {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .btn-hero {
        padding: 12px 30px;
        font-size: 0.75rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-hero {
        width: 80%;
        text-align: center;
    }

    /* NAVEGACIÓN */
    .nav-hamburger {
        display: flex;
    }
    .nav-social {
        display: none;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #2c1a12;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        border-top: 2px solid #c9a96e;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        pointer-events: none;
    }
    .nav-links.open {
        transform: scaleY(1);
        pointer-events: auto;
    }
    .nav-links a {
        margin: 0;
        font-size: 1.1rem;
        padding: 8px 0;
        width: 100%;
        text-align: center;
    }
    .nav-links a::after {
        display: none;
    }
    .nav-social-mobile {
        display: flex;
        gap: 20px;
        margin-top: 10px;
    }
    .nav-social-mobile a {
        color: #f5e3d3;
        font-size: 1.4rem;
        transition: color 0.3s;
    }
    .nav-social-mobile a:hover {
        color: #c9a96e;
    }

    /* SECCIONES */
    section {
        padding: 50px 0;
    }
    h2 {
        font-size: 2.2rem;
    }
    .section-tag {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    /* NOSOTROS */
    .nosotros-texto p {
        font-size: 0.95rem;
    }
    .nosotros-texto .cita {
        font-size: 1.1rem;
    }
    .nosotros-imagen img {
        height: 300px;
    }
    .floating-card {
        display: none; /* oculto en móvil */
    }

    /* MENÚ */
    .menu-feature {
        padding: 26px;
    }
    .menu-teaser {
        padding: 28px;
    }
    .menu-teaser h2 {
        font-size: 1.9rem;
    }
    .menu-feature h3 {
        font-size: 1.75rem;
    }
    .menu-actions {
        flex-direction: column;
    }
    .btn-menu {
        width: 100%;
    }
    .menu-contact-item a {
        font-size: 1.35rem;
    }
    .menu-quick-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .menu-pages {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .menu-lightbox {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        gap: 6px;
        padding: 18px 10px;
    }
    .lightbox-button {
        width: 42px;
        height: 42px;
    }
    .lightbox-figure img {
        max-height: 82vh;
    }
    .gallery-lightbox-counter {
        bottom: 14px;
    }

    /* GALERÍA */
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .galeria-resumen {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 150px;
    }
    .galeria-destacada {
        grid-column: span 2;
        grid-row: span 1;
    }
    .galeria-item img {
        height: 180px;
    }
    .galeria-resumen .galeria-item img {
        height: 100%;
    }

    /* UBICACIÓN */
    .ubicacion-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ubicacion-card-info {
        flex-direction: column;
        padding: 20px;
    }
    .ubicacion-ruta {
        width: 100%;
    }
    .horario-card {
        padding: 20px;
    }
    .dir-item {
        gap: 15px;
        margin-bottom: 20px;
    }
    .ubicacion-card .dir-item,
    .horario-card .dir-item {
        margin-bottom: 0;
    }
    .dir-item i {
        font-size: 1.2rem;
        width: 30px;
    }
    .mapa-container {
        aspect-ratio: 4 / 3;
    }

    /* CONTACTO */
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contacto-card {
        padding: 30px 20px;
    }
    .whatsapp-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 150px;
        white-space: normal;
    }

    /* FOOTER */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand h3 {
        font-size: 1.8rem;
    }
    .footer-links a {
        margin: 0 10px;
    }
}

/* Móviles muy pequeños */
@media (max-width: 480px) {
    header.hero h1 {
        font-size: 2.8rem;
    }
    header.hero .subtitulo {
        font-size: 1.2rem;
    }
    header.hero .frase {
        font-size: 0.9rem;
    }
    .btn-hero {
        padding: 10px 20px;
        font-size: 0.7rem;
        width: 90%;
    }
    .hero-etiqueta {
        font-size: 0.6rem;
        padding: 4px 16px;
    }
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    .galeria-resumen {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 132px;
    }
    .galeria-destacada {
        grid-column: span 2;
    }
    .galeria-item img {
        height: 200px;
    }
    .galeria-resumen .galeria-item img {
        height: 100%;
    }
    .mapa-container {
        aspect-ratio: 1 / 1;
    }
    .ubicacion-card .mapa-container {
        aspect-ratio: 4 / 3;
    }
    .nosotros-imagen img {
        height: 220px;
    }
    .container {
        padding: 0 16px;
    }
    .menu-feature {
        padding: 22px;
    }
    .menu-teaser {
        padding: 24px;
    }
    .menu-teaser h2 {
        font-size: 1.55rem;
    }
    .menu-feature h3 {
        font-size: 1.45rem;
    }
    .menu-page-card {
        padding: 10px;
    }
    .menu-page-meta h3 {
        font-size: 1.15rem;
    }
    .menu-lightbox {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
    }
    .lightbox-button {
        width: 36px;
        height: 36px;
    }
    h2 {
        font-size: 1.8rem;
    }
    .divider-center {
        max-width: 200px;
        gap: 10px;
    }
    .divider-left {
        width: 40px;
    }
}

/* =========================================================
   REDISEÑO CAFETERÍA DEL PARQUE - ESTILO CAFETERÍA CÁLIDA
   Solo cambia diseño visual. No altera estructura ni contenido.
   ========================================================= */
:root {
    --coffee-950: #21110b;
    --coffee-900: #2c170f;
    --coffee-800: #3b2116;
    --coffee-700: #563322;
    --coffee-600: #7a4b2c;
    --coffee-500: #9b6639;
    --caramel-500: #c58a4a;
    --caramel-400: #d8a766;
    --cream-50: #fffaf3;
    --cream-100: #f9efdf;
    --cream-200: #efdcc1;
    --foam: #fff4e6;
    --ink: #2a1710;
    --soft-shadow: 0 18px 40px rgba(44, 23, 15, 0.12);
    --deep-shadow: 0 26px 65px rgba(44, 23, 15, 0.28);
}

html {
    background: var(--cream-50);
}

body {
    background:
        radial-gradient(circle at 10% 8%, rgba(216, 167, 102, 0.18) 0 130px, transparent 132px),
        radial-gradient(circle at 92% 18%, rgba(122, 75, 44, 0.12) 0 180px, transparent 182px),
        linear-gradient(180deg, #fff7ec 0%, #f9ead5 48%, #fffaf3 100%);
    color: var(--ink);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.28;
    background-image:
        radial-gradient(ellipse at center, rgba(86, 51, 34, 0.08) 0 22%, transparent 24%),
        radial-gradient(ellipse at center, rgba(197, 138, 74, 0.08) 0 18%, transparent 20%);
    background-size: 150px 92px, 210px 130px;
    background-position: 0 0, 75px 45px;
}

.container {
    position: relative;
}

h1, h2, h3, h4 {
    color: var(--coffee-900);
}

h2 {
    position: relative;
    line-height: 1.12;
}

.section-tag,
.menu-eyebrow {
    color: var(--caramel-500);
    letter-spacing: 4.5px;
}

.divider-center .line,
.hero-divider .line {
    background: linear-gradient(90deg, transparent, var(--caramel-400), transparent);
}

.divider-left {
    width: 76px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--caramel-500), var(--cream-200));
}

.divider-center .diamond,
.hero-divider .diamond {
    color: var(--caramel-400);
    filter: drop-shadow(0 4px 8px rgba(44, 23, 15, 0.16));
}

/* HERO con ambiente de cafetería */
header.hero {
    isolation: isolate;
    background-position: center;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
    overflow: hidden;
}

header.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(216, 167, 102, 0.28), transparent 25%),
        radial-gradient(circle at 82% 72%, rgba(255, 244, 230, 0.14), transparent 26%),
        linear-gradient(90deg, rgba(33, 17, 11, 0.62), rgba(33, 17, 11, 0.18));
}

header.hero .hero-overlay {
    background:
        linear-gradient(135deg, rgba(33, 17, 11, 0.88) 0%, rgba(86, 51, 34, 0.52) 48%, rgba(33, 17, 11, 0.35) 100%);
}

header.hero .hero-bg-decoration {
    height: 190px;
    background:
        radial-gradient(120% 100% at 50% 100%, #fff7ec 0%, rgba(255, 247, 236, 0.86) 34%, transparent 72%);
}

.hero-content {
    animation: cafeHeroEnter 0.9s ease both;
}

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

.hero-etiqueta {
    border-color: rgba(255, 244, 230, 0.42);
    background: rgba(44, 23, 15, 0.42);
    color: #fff4e6;
    box-shadow: inset 0 0 0 1px rgba(216, 167, 102, 0.18), 0 14px 34px rgba(0,0,0,0.16);
}

header.hero h1 {
    color: #fff8ed;
    text-shadow: 0 7px 30px rgba(0, 0, 0, 0.54);
}

header.hero .subtitulo {
    color: #ffe2bb;
}

header.hero .frase {
    color: rgba(255, 250, 243, 0.94);
}

.btn-hero,
.btn-menu,
.btn-outline,
.ubicacion-ruta,
.btn-gallery-more,
.whatsapp-btn {
    border-radius: 999px;
}

.btn-primary,
.btn-menu-secondary:hover,
.lightbox-button:hover,
.lightbox-button:focus-visible {
    background: linear-gradient(135deg, #f0c27a, #c58a4a 55%, #a66f3d);
    color: var(--coffee-950);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffd99a, #d8a766 55%, #c58a4a);
    box-shadow: 0 16px 38px rgba(197, 138, 74, 0.34);
}

.btn-whatsapp,
.btn-menu-secondary {
    border-color: rgba(255, 244, 230, 0.36);
    background: rgba(255, 244, 230, 0.12);
}

/* Navegación tipo barra de cafetería */
nav {
    background: rgba(44, 23, 15, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(216, 167, 102, 0.48);
    box-shadow: 0 10px 30px rgba(44, 23, 15, 0.18);
}

.nav-logo span {
    color: #f1c985;
    text-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.nav-links a,
.nav-social a {
    color: #fff0db;
}

.nav-links a:hover,
.nav-social a:hover {
    color: #f1c985;
}

.nav-links a::after {
    background: linear-gradient(90deg, #f1c985, #c58a4a);
}

.nav-hamburger span {
    background: #fff0db;
}

/* Secciones y tarjetas más cremosas */
section {
    position: relative;
}

section:nth-child(even),
.section-galeria,
.section-menu {
    background:
        radial-gradient(circle at 6% 8%, rgba(216, 167, 102, 0.16), transparent 28%),
        radial-gradient(circle at 92% 88%, rgba(86, 51, 34, 0.08), transparent 26%),
        #fff3e3;
}

.section-nosotros,
.section-contacto,
.section-ubicacion {
    background:
        linear-gradient(180deg, rgba(255, 250, 243, 0.64), rgba(249, 239, 223, 0.68)),
        #fff8ef;
}

.nosotros-texto p,
.menu-intro,
.dir-item p,
.contacto-card p {
    color: #5b3c2b;
}

.nosotros-texto .cita {
    color: var(--coffee-700);
    background: linear-gradient(90deg, transparent, rgba(216, 167, 102, 0.14), transparent);
    border-top-color: rgba(197, 138, 74, 0.34);
    border-bottom-color: rgba(197, 138, 74, 0.34);
}

.btn-outline {
    border-color: var(--caramel-500);
    background: rgba(255, 250, 243, 0.55);
    box-shadow: 0 12px 26px rgba(86, 51, 34, 0.08);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--coffee-800), var(--coffee-600));
    border-color: var(--coffee-700);
    color: #fff8ef;
}

.nosotros-imagen img,
.galeria-item,
.contacto-card,
.ubicacion-card,
.horario-card,
.menu-page-card,
.menu-teaser,
.menu-feature,
.menu-contact-panel {
    border-radius: 26px;
}

.nosotros-imagen::before {
    content: '';
    position: absolute;
    inset: 18px -12px -18px 18px;
    z-index: -1;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(197, 138, 74, 0.45), rgba(86, 51, 34, 0.18));
}

.nosotros-imagen img {
    border: 8px solid #fff8ef;
    box-shadow: var(--deep-shadow);
}

.floating-card {
    background: linear-gradient(145deg, var(--coffee-900), var(--coffee-700));
    border-left: 0;
    border: 1px solid rgba(216, 167, 102, 0.45);
    box-shadow: var(--deep-shadow);
}

.floating-card i,
.floating-card span {
    color: #f1c985;
}

/* Teaser del menú en index */
.menu-teaser,
.menu-feature {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 16%, rgba(255, 244, 230, 0.18), transparent 26%),
        radial-gradient(circle at 18% 82%, rgba(216, 167, 102, 0.20), transparent 28%),
        linear-gradient(135deg, #2c170f 0%, #563322 55%, #7a4b2c 100%);
    border: 1px solid rgba(216, 167, 102, 0.46);
    box-shadow: var(--deep-shadow);
}

.menu-teaser::after,
.menu-feature::after {
    content: '☕';
    position: absolute;
    right: 28px;
    bottom: -22px;
    color: rgba(255, 244, 230, 0.13);
    font-size: 8.8rem;
    line-height: 1;
    transform: rotate(-12deg);
    pointer-events: none;
}

.menu-teaser h2,
.menu-feature h3,
.menu-teaser .section-tag,
.menu-eyebrow {
    text-shadow: 0 4px 18px rgba(0,0,0,0.22);
}

.menu-teaser h2,
.menu-feature h3 {
    color: #fff8ef;
}

.menu-teaser p,
.menu-feature p,
.menu-contact-panel p {
    color: #f4dcc0;
}

.btn-menu-primary {
    background: linear-gradient(135deg, #25D366, #1fa955);
    color: #082516;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.btn-menu-primary:hover {
    background: linear-gradient(135deg, #37ef7e, #24c765);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.3);
}

.menu-contact-panel {
    background: rgba(255, 250, 243, 0.12);
    border-color: rgba(255, 244, 230, 0.23);
    backdrop-filter: blur(8px);
}

.menu-contact-item {
    border-bottom-color: rgba(255, 244, 230, 0.22);
}

.menu-contact-item span {
    color: #ffdba2;
}

.menu-contact-item a {
    color: #fff8ef;
}

/* Página menu.html: mantener contenido, cambiar presentación */
.menu-page-body {
    background:
        radial-gradient(circle at 12% 8%, rgba(197, 138, 74, 0.18), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(86, 51, 34, 0.12), transparent 28%),
        linear-gradient(180deg, #fff6e8 0%, #f7e4ca 46%, #fffaf3 100%);
}

.menu-standalone {
    padding-top: 62px;
}

.menu-standalone .container::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 138, 74, 0.5), transparent);
}

.menu-back-link {
    background: rgba(255, 250, 243, 0.74);
    border: 1px solid rgba(197, 138, 74, 0.28);
    border-radius: 999px;
    padding: 10px 18px;
    box-shadow: 0 10px 24px rgba(86, 51, 34, 0.08);
}

.menu-back-link:hover {
    color: var(--coffee-700);
    background: #fff8ef;
}

.menu-quick-links {
    max-width: 920px;
}

.menu-chip {
    min-height: 60px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255, 244, 230, 0.9));
    border-color: rgba(197, 138, 74, 0.28);
    border-radius: 999px;
    color: var(--coffee-800);
    box-shadow: 0 12px 26px rgba(86, 51, 34, 0.08);
}

.menu-chip i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--coffee-900);
    background: linear-gradient(135deg, #f0c27a, #d8a766);
}

.menu-chip:hover {
    color: var(--coffee-900);
    border-color: var(--caramel-500);
    background: #fff8ef;
    box-shadow: 0 16px 32px rgba(86, 51, 34, 0.12);
}

.menu-pages {
    align-items: start;
}

.menu-page-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255, 244, 230, 0.94));
    border: 1px solid rgba(197, 138, 74, 0.32);
    padding: 18px;
    box-shadow: 0 22px 46px rgba(86, 51, 34, 0.13);
}

.menu-page-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.42), transparent 36%),
        radial-gradient(circle at 95% 5%, rgba(197, 138, 74, 0.14), transparent 24%);
}

.menu-page-meta {
    position: relative;
    z-index: 1;
    padding: 4px 4px 15px 4px;
}

.menu-page-meta span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coffee-800), var(--coffee-600));
    color: #fff8ef;
    letter-spacing: 0;
    box-shadow: 0 10px 20px rgba(86, 51, 34, 0.16);
}

.menu-page-meta h3 {
    color: var(--coffee-900);
    font-size: 1.48rem;
}

.menu-page-button {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    background: #fff8ef;
    box-shadow: inset 0 0 0 1px rgba(86, 51, 34, 0.08), 0 16px 34px rgba(44, 23, 15, 0.12);
}

.menu-page-button img {
    border-radius: 22px;
    filter: saturate(1.04) contrast(1.02);
}

.menu-page-button:hover img {
    transform: scale(1.018);
    filter: saturate(1.08) contrast(1.04);
}

.menu-lightbox {
    background:
        radial-gradient(circle at 18% 12%, rgba(216, 167, 102, 0.20), transparent 28%),
        rgba(33, 17, 11, 0.94);
}

.lightbox-figure img {
    border: 8px solid #fff8ef;
    border-radius: 22px;
}

.lightbox-figure figcaption {
    color: #ffe2bb;
}

.lightbox-button {
    background: rgba(255, 244, 230, 0.13);
    border-color: rgba(255, 244, 230, 0.28);
}

/* Galería y contacto */
.galeria-item {
    border: 6px solid #fff8ef;
    box-shadow: 0 16px 34px rgba(86, 51, 34, 0.12);
}

.btn-gallery-more,
.ubicacion-ruta {
    background: linear-gradient(135deg, var(--coffee-800), var(--coffee-600));
    color: #fff8ef;
    border: 1px solid rgba(216, 167, 102, 0.34);
}

.btn-gallery-more:hover,
.ubicacion-ruta:hover {
    background: linear-gradient(135deg, var(--coffee-700), var(--caramel-500));
    box-shadow: 0 16px 32px rgba(86, 51, 34, 0.18);
}

.ubicacion-card,
.horario-card {
    background: rgba(255, 250, 243, 0.92);
    border-color: rgba(197, 138, 74, 0.28);
}

.dir-item i,
.icon-circle {
    color: var(--coffee-900);
    background: linear-gradient(135deg, #f4d5a8, #d8a766);
    border-radius: 50%;
}

.dir-item i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    margin-top: 0;
    box-shadow: 0 10px 22px rgba(197, 138, 74, 0.22);
}

.horario-row {
    background: #fff8ef;
    border-color: rgba(197, 138, 74, 0.24);
}

.mapa-container {
    border-top-color: rgba(197, 138, 74, 0.28);
}

.contacto-card {
    background: rgba(255, 250, 243, 0.93);
    border: 1px solid rgba(197, 138, 74, 0.22);
    box-shadow: 0 18px 38px rgba(86, 51, 34, 0.1);
}

.contacto-card:hover {
    box-shadow: 0 24px 48px rgba(86, 51, 34, 0.15);
}

.contacto-card.highlight {
    background:
        radial-gradient(circle at 80% 8%, rgba(216, 167, 102, 0.18), transparent 28%),
        linear-gradient(145deg, var(--coffee-900), var(--coffee-700));
    border-color: rgba(216, 167, 102, 0.45);
}

.contacto-card a:not(.whatsapp-btn) {
    color: var(--coffee-700);
    font-weight: 600;
}

.social-icons a {
    background: #fff1df;
    border: 1px solid rgba(197, 138, 74, 0.24);
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--coffee-700), var(--caramel-500));
}

footer {
    background:
        radial-gradient(circle at 18% 0%, rgba(216, 167, 102, 0.16), transparent 24%),
        linear-gradient(135deg, var(--coffee-950), var(--coffee-800));
    border-top-color: var(--caramel-500);
}

.footer-brand h3 {
    color: #f1c985;
}

.footer-links a:hover {
    color: #f1c985;
}

/* Ajustes responsive del rediseño */
@media (max-width: 992px) {
    .menu-teaser::after,
    .menu-feature::after {
        font-size: 7rem;
        right: 18px;
    }
    .dir-item i {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
}

@media (max-width: 768px) {
    header.hero {
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
    }
    .menu-quick-links {
        grid-template-columns: 1fr;
    }
    .menu-chip {
        justify-content: flex-start;
        padding: 0 18px;
    }
    .ubicacion-card-info {
        flex-direction: column;
    }
    .ubicacion-ruta {
        width: 100%;
    }
    .menu-teaser::after,
    .menu-feature::after {
        display: none;
    }
    .menu-page-card {
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    body::before {
        opacity: 0.18;
    }
    .menu-page-card {
        padding: 12px;
    }
    .menu-page-button,
    .menu-page-button img,
    .lightbox-figure img {
        border-radius: 16px;
    }
    .lightbox-figure img {
        border-width: 4px;
    }
}


/* ============================================
   FIX MOBILE: mantener "Desliza" visible sin chocar
   ============================================ */
@media (max-width: 768px) {
    header.hero {
        min-height: 92svh;
        min-height: 92vh;
    }

    header.hero .hero-content {
        padding-bottom: 96px;
    }

    .hero-buttons {
        margin-bottom: 28px;
    }

    .hero-scroll-indicator {
        display: flex;
        bottom: 16px;
        gap: 4px;
        font-size: 0.64rem;
        letter-spacing: 1.6px;
        opacity: 0.9;
        pointer-events: none;
    }

    .hero-scroll-indicator i {
        font-size: 0.74rem;
    }
}

@media (max-width: 480px) {
    header.hero .hero-content {
        padding-bottom: 104px;
    }

    .hero-buttons {
        margin-bottom: 34px;
    }

    .hero-scroll-indicator {
        bottom: 12px;
    }
}


/* ============================================
   REDISEÑO INDEX V2 - CAFETERÍA LIMPIA
   - Aplicado solo al index con body.home-page
   - El menú conserva su estructura y contenido
   ============================================ */
.home-page {
    --cafe-950: #21110b;
    --cafe-900: #32190f;
    --cafe-800: #4a2617;
    --cafe-700: #61341f;
    --cafe-600: #7b4529;
    --cafe-500: #9d6239;
    --caramelo: #d79a55;
    --miel: #efbf78;
    --crema: #fff3e1;
    --crema-2: #f8e7cf;
    --papel: #fffaf2;
    --texto: #2c160d;
    background:
        radial-gradient(circle at 10% 8%, rgba(215, 154, 85, 0.16), transparent 24%),
        radial-gradient(circle at 95% 18%, rgba(74, 38, 23, 0.10), transparent 24%),
        linear-gradient(180deg, #fff7ec 0%, #f7ead8 42%, #fff7ec 100%);
    color: var(--texto);
}

.home-page::before {
    background:
        radial-gradient(circle, rgba(74, 38, 23, 0.08) 1.2px, transparent 1.3px);
    background-size: 22px 22px;
    opacity: 0.22;
}

/* Hero más cálido y cafetero */
.home-page header.hero {
    min-height: 96vh;
    background-position: center;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
    overflow: hidden;
    isolation: isolate;
}

.home-page header.hero .hero-overlay {
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 227, 188, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(32, 17, 11, 0.38), rgba(32, 17, 11, 0.76)),
        linear-gradient(135deg, rgba(46, 22, 12, 0.86), rgba(99, 54, 31, 0.42));
}

.home-page header.hero::before {
    content: '';
    position: absolute;
    inset: 22px;
    z-index: 2;
    border: 1px solid rgba(255, 232, 197, 0.24);
    border-radius: 32px;
    pointer-events: none;
}

.home-page header.hero::after {
    content: '☕';
    position: absolute;
    right: clamp(12px, 6vw, 72px);
    bottom: clamp(82px, 14vh, 150px);
    z-index: 1;
    font-size: clamp(6rem, 18vw, 17rem);
    line-height: 1;
    color: rgba(255, 239, 218, 0.10);
    transform: rotate(-12deg);
    pointer-events: none;
}

.home-page .hero-bg-decoration {
    height: 190px;
    background: linear-gradient(to top, #fff7ec 0%, rgba(255,247,236,0.78) 26%, transparent 100%);
}

.home-page .hero-etiqueta {
    background: rgba(255, 243, 225, 0.14);
    border-color: rgba(255, 232, 197, 0.38);
    color: #ffe0b4;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.home-page header.hero h1 {
    max-width: 960px;
    margin-inline: auto;
    color: #fff4df;
    text-shadow: 0 14px 42px rgba(0,0,0,0.46);
}

.home-page header.hero .subtitulo {
    color: #ffd7a0;
}

.home-page header.hero .frase {
    color: rgba(255, 248, 238, 0.92);
}

.home-page .btn-primary {
    background: linear-gradient(135deg, #f3c070, #c8833c);
    color: #271209;
    border: 1px solid rgba(255, 242, 220, 0.36);
}

.home-page .btn-whatsapp {
    background: rgba(255, 245, 232, 0.10);
    border: 1px solid rgba(255, 245, 232, 0.42);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 10px 24px rgba(0,0,0,0.18);
}

.home-page .hero-scroll-indicator {
    color: rgba(255, 241, 220, 0.84);
    text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

/* Navegación más limpia */
.home-page nav {
    background: rgba(42, 20, 12, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(239, 191, 120, 0.34);
    box-shadow: 0 10px 30px rgba(33, 17, 11, 0.18);
}

.home-page .nav-logo span {
    color: #ffd28e;
}

.home-page .nav-links a,
.home-page .nav-social a {
    color: #fff0dc;
}

/* Secciones con estilo de carta de cafetería */
.home-page section {
    position: relative;
}

.home-page section:nth-child(even) {
    background:
        radial-gradient(circle at 15% 10%, rgba(215, 154, 85, 0.12), transparent 28%),
        #fff3e1;
}

.home-page h2 {
    color: var(--cafe-900);
}

.home-page .section-tag {
    color: var(--cafe-500);
}

.home-page .divider-center .line {
    background: linear-gradient(90deg, transparent, rgba(157, 98, 57, 0.55), transparent);
}

.home-page .divider-center .diamond,
.home-page .hero-divider .diamond {
    color: var(--miel);
}

/* Nosotros */
.home-page .section-nosotros {
    background:
        radial-gradient(circle at 92% 10%, rgba(215, 154, 85, 0.16), transparent 24%),
        linear-gradient(180deg, #fff7ec, #fff1de);
}

.home-page .nosotros-texto {
    background: rgba(255, 250, 242, 0.70);
    border: 1px solid rgba(157, 98, 57, 0.14);
    border-radius: 30px;
    padding: clamp(24px, 4vw, 44px);
    box-shadow: 0 24px 60px rgba(74, 38, 23, 0.08);
}

.home-page .nosotros-texto .section-tag,
.home-page .nosotros-texto h2 {
    text-align: left;
}

.home-page .nosotros-texto .cita {
    color: var(--cafe-600);
    border-top: 1px solid rgba(157, 98, 57, 0.18);
    border-bottom: 1px solid rgba(157, 98, 57, 0.18);
}

.home-page .nosotros-imagen img {
    border-radius: 34px;
    box-shadow: 0 34px 80px rgba(49, 24, 14, 0.20);
}

.home-page .floating-card {
    border: 0;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 240, 220, 0.13), rgba(255, 240, 220, 0.04)),
        linear-gradient(145deg, var(--cafe-900), var(--cafe-700));
    box-shadow: 0 22px 48px rgba(33, 17, 11, 0.28);
}

.home-page .floating-card i {
    color: #f3c070;
}

/* Teaser menú */
.home-page .menu-teaser {
    border: 0;
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 224, 179, 0.24), transparent 30%),
        linear-gradient(135deg, var(--cafe-900), var(--cafe-700));
    box-shadow: 0 32px 80px rgba(74, 38, 23, 0.18);
}

.home-page .menu-teaser::after {
    content: 'CAFÉ';
    position: absolute;
    right: 28px;
    bottom: -18px;
    color: rgba(255, 247, 236, 0.055);
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 700;
    letter-spacing: 10px;
    pointer-events: none;
}

.home-page .menu-teaser h2 {
    color: #fff7ec;
}

.home-page .menu-teaser p {
    color: rgba(255, 241, 220, 0.82);
}

/* GALERÍA V2 - sin bordes en cada imagen */
.home-page .section-galeria {
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 0%, rgba(215, 154, 85, 0.18), transparent 28%),
        linear-gradient(180deg, #fff5e8 0%, #f6e3ca 100%);
}

.home-page .section-galeria::before {
    content: 'momentos';
    position: absolute;
    left: -16px;
    top: 38px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 14vw, 12rem);
    font-weight: 700;
    color: rgba(74, 38, 23, 0.045);
    line-height: 1;
    pointer-events: none;
}

.home-page .galeria-resumen {
    position: relative;
    z-index: 1;
    grid-template-columns: 1.18fr 0.82fr 0.82fr;
    grid-auto-rows: 185px;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.home-page .galeria-item {
    position: relative;
    border: 0 !important;
    outline: 0;
    padding: 0;
    background: transparent;
    border-radius: 24px;
    box-shadow: 0 20px 44px rgba(61, 31, 18, 0.12);
    overflow: hidden;
    isolation: isolate;
}

.home-page .galeria-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, transparent 45%, rgba(35, 17, 10, 0.30) 100%);
    opacity: 0.56;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.home-page .galeria-item::after {
    content: '';
    position: absolute;
    inset: 10px;
    z-index: 2;
    border-radius: 17px;
    border: 1px solid rgba(255, 241, 220, 0.16);
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.home-page .galeria-destacada {
    grid-row: span 2;
    border-radius: 30px;
}

.home-page .galeria-destacada::after {
    border-radius: 22px;
}

.home-page .galeria-item img,
.home-page .galeria-resumen .galeria-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0 !important;
    border-radius: 0 !important;
    filter: saturate(1.03) contrast(1.02);
    transform: scale(1.001);
    transition: transform 0.75s cubic-bezier(.2,.8,.2,1), filter 0.75s cubic-bezier(.2,.8,.2,1);
}

.home-page .galeria-item:hover {
    box-shadow: 0 28px 64px rgba(61, 31, 18, 0.20);
}

.home-page .galeria-item:hover::before {
    opacity: 0.22;
}

.home-page .galeria-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.home-page .galeria-item:hover img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.04);
}

.home-page .btn-gallery-more {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cafe-900), var(--cafe-600));
    color: #fff7ec;
    box-shadow: 0 18px 42px rgba(74, 38, 23, 0.18);
}

/* Ubicación y contacto más suaves */
.home-page .ubicacion-card,
.home-page .horario-card,
.home-page .contacto-card {
    border: 0;
    border-radius: 28px;
    background: rgba(255, 250, 242, 0.86);
    box-shadow: 0 24px 58px rgba(74, 38, 23, 0.10);
}

.home-page .mapa-container {
    border-top: 0;
    border-radius: 0 0 28px 28px;
}

.home-page .ubicacion-ruta,
.home-page .btn-gallery-more {
    border: 0;
}

.home-page .contacto-card.highlight {
    background:
        radial-gradient(circle at 76% 0%, rgba(255, 220, 171, 0.18), transparent 30%),
        linear-gradient(145deg, var(--cafe-900), var(--cafe-700));
}

.home-page .icon-circle,
.home-page .dir-item i {
    background: linear-gradient(135deg, #f2c27c, #c77d3c);
    color: #2b1309;
    box-shadow: 0 14px 30px rgba(157, 98, 57, 0.18);
}

.home-page footer {
    background:
        radial-gradient(circle at 18% 0%, rgba(239, 191, 120, 0.14), transparent 28%),
        linear-gradient(135deg, var(--cafe-950), var(--cafe-800));
    border-top: 0;
}

/* Responsive index V2 */
@media (max-width: 992px) {
    .home-page .galeria-resumen {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 190px;
    }

    .home-page .galeria-destacada {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .home-page header.hero {
        min-height: 92svh;
        min-height: 92vh;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .home-page header.hero::before {
        inset: 12px;
        border-radius: 22px;
    }

    .home-page header.hero h1 {
        font-size: clamp(3rem, 14vw, 4.2rem);
        line-height: 1.05;
    }

    .home-page .nosotros-texto {
        padding: 24px;
        border-radius: 24px;
    }

    .home-page .galeria-resumen {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 158px;
        gap: 9px;
    }

    .home-page .galeria-item {
        border-radius: 18px;
    }

    .home-page .galeria-destacada {
        border-radius: 22px;
    }

    .home-page .galeria-item::after {
        inset: 7px;
        border-radius: 13px;
    }

    .home-page .galeria-destacada::after {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .home-page .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-page .galeria-resumen {
        grid-auto-rows: 134px;
        gap: 8px;
    }

    .home-page .galeria-item {
        box-shadow: 0 12px 28px rgba(61, 31, 18, 0.13);
    }

    .home-page .galeria-destacada {
        grid-column: span 2;
        grid-row: span 2;
    }
}
