/* ============================================
   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;
    }
}
