/* ============================================================
   ROSA AZUL — Estética Integral & Bienestar  v10
   Arquitectura de menú:
   • Menú escritorio (.nav-links-desktop) — dentro del <header>
   • Menú móvil (.mob-menu) — hijo directo del <body>,
     fuera del header → z-index:99999 sin conflictos
   ============================================================ */

:root {
  --cream:       #f8f4ef;
  --cream-dark:  #f0e9e0;
  --blush:       #e8c4b8;
  --blush-light: #f5e0d8;
  --rose:        #c97b6a;
  --rose-dark:   #a85c4c;
  --gold:        #b89b70;
  --gold-light:  #d4b98a;
  --navy:        #1a2030;
  --navy-light:  #2c3547;
  --slate:       #5a6275;
  --slate-light: #8a91a3;
  --white:       #ffffff;
  --text:        #2c2c2c;
  --text-light:  #6a6a6a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-brand:   'Great Vibes', cursive;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --radius:    4px;
  --radius-lg: 12px;
  --shadow:    0 4px 24px rgba(26,32,48,0.08);
  --shadow-lg: 0 12px 48px rgba(26,32,48,0.14);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* ── Typography ── */
.section-label { display: inline-block; font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; }
.section-label.light { color: var(--blush-light); }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.2; color: var(--navy); margin-bottom: 1rem; }
.section-title.light { color: var(--cream); }
.section-title em { font-style: italic; color: var(--rose); }
.section-desc { color: var(--text-light); max-width: 540px; margin: 0 auto; }
.section-desc.light { color: var(--blush-light); }
.section-header { text-align: center; margin-bottom: 4rem; }

/* ── Fade in ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Buttons ── */
.btn-primary { display: inline-block; background: var(--rose); color: var(--white); font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.9rem 2.2rem; border: none; border-radius: var(--radius); cursor: pointer; transition: background var(--transition), transform var(--transition); }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); }
.btn-secondary { display: inline-block; background: transparent; color: var(--white); font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.85rem 2.2rem; border: 1px solid rgba(255,255,255,0.5); border-radius: var(--radius); cursor: pointer; transition: all var(--transition); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-2px); }
.cobertura .btn-secondary { color: var(--navy); border-color: var(--navy); }
.cobertura .btn-secondary:hover { background: var(--navy); color: white; }

/* ============================================================
   BOTONES FLOTANTES
   ============================================================ */
.btn-scroll-top { position: fixed; bottom: 1.5rem; right: 5.5rem; z-index: 500; width: 46px; height: 46px; background: var(--white); border: 1px solid var(--blush); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose); box-shadow: var(--shadow); opacity: 0; pointer-events: none; cursor: pointer; transition: opacity var(--transition), transform var(--transition); }
.btn-scroll-top.visible { opacity: 1; pointer-events: all; }
.btn-scroll-top:hover { transform: translateY(-3px); background: var(--rose); color: white; }
.btn-scroll-top svg { width: 20px; height: 20px; }

.btn-whatsapp { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500; width: 50px; height: 50px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform var(--transition), box-shadow var(--transition); }
.btn-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.btn-whatsapp svg { width: 28px; height: 28px; }

/* ============================================================
   NAVBAR (ESCRITORIO)
   header z-index:9999 → siempre sobre las secciones de la página
   ============================================================ */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; }

.navbar { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 2.5rem; background: transparent; transition: background var(--transition), padding var(--transition), box-shadow var(--transition); position: relative; z-index: 200; }
.navbar.scrolled { background: rgba(248,244,239,0.97); backdrop-filter: blur(12px); padding: 0.8rem 2.5rem; box-shadow: 0 1px 20px rgba(26,32,48,0.08); }

.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 10px rgba(0,0,0,0.2); flex-shrink: 0; transition: transform var(--transition); }
.brand-logo:hover { transform: scale(1.05); }
.brand-name { font-family: var(--font-brand); font-size: 2.2rem; font-weight: 400; color: #7ab8d6; text-shadow: 0 1px 6px rgba(0,0,0,0.35); line-height: 1; letter-spacing: 0.02em; transform: translateY(5px); transition: color var(--transition), text-shadow var(--transition); }
.navbar.scrolled .brand-name { color: #4a8db5; text-shadow: none; }

/* Menú escritorio */
.nav-links-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.88); transition: color var(--transition); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: white; }
.navbar.scrolled .nav-link { color: var(--slate); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--navy); }
.nav-cta { background: var(--rose); color: white !important; padding: 0.6rem 1.4rem; border-radius: var(--radius); font-size: 0.7rem; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--rose-dark); }

/* Botón hamburguesa — oculto en escritorio */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; border-radius: 6px; transition: background var(--transition); }
.nav-toggle span { display: block; width: 26px; height: 2px; background: white; border-radius: 2px; transition: background var(--transition); }
.navbar.scrolled .nav-toggle span { background: var(--navy); }

/* ============================================================
   MENÚ MÓVIL/TABLET — .mob-menu
   ─────────────────────────────────────────────────────────────
   Es un hijo directo del <body> → no está dentro del contexto
   de apilamiento del <header>. Con z-index:99999 queda por
   encima de absolutamente todo sin conflictos posibles.
   ============================================================ */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 99999;      /* contexto raíz, por encima de TODO */
  visibility: hidden;  /* oculto hasta que .open se añada */
  pointer-events: none;
}
.mob-menu.open {
  visibility: visible;
  pointer-events: all;
}

/* Fondo oscuro */
.mob-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mob-menu.open .mob-overlay { opacity: 1; }

/* Panel lateral deslizante desde la derecha */
.mob-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 82%;
  max-width: 320px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(26, 32, 48, 0.3);
  overflow-y: auto;
  overflow-x: hidden;
}
.mob-menu.open .mob-panel { transform: translateX(0); }

/* Cabecera del panel: logo + botón X */
.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: var(--navy);
  border-bottom: 2px solid var(--rose);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 1;
}
.mob-brand { display: flex; align-items: center; gap: 0.6rem; }
.mob-logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,0.3); flex-shrink: 0; }
.mob-brand-name { font-family: var(--font-brand); font-size: 1.7rem; color: #7ab8d6; line-height: 1; transform: translateY(4px); display: inline-block; }

/* Botón X — único cierre */
.mob-close { background: var(--rose); border: none; cursor: pointer; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; transition: background var(--transition), transform var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.mob-close:hover { background: var(--rose-dark); transform: rotate(90deg); }
.mob-close svg { width: 18px; height: 18px; }

/* Lista de enlaces */
.mob-nav { display: flex; flex-direction: column; flex: 1; padding: 0.5rem 0; }
.mob-link { display: block; padding: 0.95rem 1.5rem; font-size: 0.88rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); border-bottom: 1px solid var(--cream-dark); transition: color var(--transition), background var(--transition); }
.mob-link:hover, .mob-link.active { color: var(--rose); background: var(--blush-light); }

.mob-cta { background: var(--rose) !important; color: white !important; margin: 1rem 1.2rem; border-radius: var(--radius); border-bottom: none !important; text-align: center; }
.mob-cta:hover { background: var(--rose-dark) !important; color: white !important; }

/* Pie del panel */
.mob-footer { padding: 1.2rem 1.5rem; border-top: 1px solid var(--cream-dark); display: flex; flex-direction: column; gap: 0.6rem; margin-top: auto; }
.mob-tel { font-size: 0.9rem; color: var(--slate); }
.mob-wa { font-size: 0.8rem; color: #25D366; font-weight: 500; }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100svh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('../img/3c26caa0-630b-436f-acef-4c59e0a459a6.jpg'); background-size: cover; background-position: center 30%; transform: scale(1.05); animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(26,32,48,0.72) 0%, rgba(26,32,48,0.45) 50%, rgba(180,90,70,0.3) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 8rem 1.5rem 4rem; max-width: 780px; }
.hero-tagline { font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--blush); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.9s 0.3s ease forwards; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.9s 0.55s ease forwards; }
.hero-title em { font-style: italic; color: var(--blush); }
.hero-title span { display: block; font-weight: 400; }
.hero-subtitle { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.9s 0.8s ease forwards; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s 1.05s ease forwards; }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.55); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0; animation: fadeUp 0.9s 1.4s ease forwards; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity:0.4; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(0.7); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }

/* ============================================================
   RIBBON
   ============================================================ */
.ribbon { background: var(--navy); padding: 0.9rem 0; overflow: hidden; white-space: nowrap; }
.ribbon-track { display: inline-flex; gap: 3.5rem; animation: ribbonScroll 24s linear infinite; }
.ribbon-track span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; }
@keyframes ribbonScroll { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* ============================================================
   FILOSOFIA
   ============================================================ */
.filosofia { padding: 7rem 0; background: var(--cream); }
.filosofia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.filosofia-text h2 { margin-bottom: 1.5rem; }
.filosofia-text p { color: var(--text-light); margin-bottom: 1.2rem; }
.filosofia-data { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--blush); }
.dato { display: flex; flex-direction: column; }
.dato-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--rose); line-height: 1; }
.dato-label { font-size: 0.72rem; color: var(--slate-light); letter-spacing: 0.05em; margin-top: 0.3rem; }
.filosofia-image { position: relative; }
.image-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.image-frame img { width: 100%; height: 460px; object-fit: cover; }
.filosofia-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--navy); color: var(--white); padding: 1.2rem 1.6rem; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.filosofia-badge p { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.badge-tel { font-family: var(--font-display); font-size: 1.25rem; font-weight: 300; color: white; margin-top: 0.3rem; }

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios { padding: 7rem 0; background: var(--cream-dark); }
.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.servicio-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.2rem; border: 1px solid var(--cream-dark); transition: transform var(--transition), box-shadow var(--transition); }
.servicio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.servicio-card--highlight { background: linear-gradient(145deg, #8b4a38, #6b3020); border-color: transparent; }
.servicio-card--highlight h3 { color: #fde8df; }
.servicio-card--highlight p  { color: #f0c4b4; }
.servicio-card--highlight li { color: #f0c4b4; }
.servicio-card--highlight li::before { color: var(--gold-light); }
.servicio-card--highlight .btn-card { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.servicio-icon { font-size: 1.5rem; color: var(--rose); margin-bottom: 1.2rem; }
.servicio-card--highlight .servicio-icon { color: var(--gold-light); }
.servicio-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: #e3c23f; margin-bottom: 0.8rem; line-height: 1.3; }
.servicio-card p { font-size: 0.88rem; color: #7d96d1; margin-bottom: 1.2rem; line-height: 1.65; }
.servicio-card ul { display: flex; flex-direction: column; gap: 0.4rem; }
.servicio-card li { font-size: 0.8rem; color: #7d96d1; padding-left: 1.1rem; position: relative; }
.servicio-card li::before { content: '✦'; position: absolute; left: 0; font-size: 0.55rem; color: var(--rose); top: 0.25rem; }
.btn-card { display: inline-block; margin-top: 1.5rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: opacity var(--transition); }
.btn-card:hover { opacity: 0.7; }

/* ============================================================
   DESTAQUE
   ============================================================ */
.destaque { position: relative; background-image: url('../img/3468c2fb-954f-4112-a2c8-65c901902820.jpg'); background-size: cover; background-position: center; background-attachment: fixed; padding: 8rem 0; text-align: center; }
.destaque-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,32,48,0.85), rgba(160,70,55,0)); }
.destaque-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.destaque-content h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--white); margin-bottom: 1.5rem; }
.destaque-content p { color: rgba(255,255,255,0.82); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.8; }

/* ============================================================
   GALERÍA
   ============================================================ */
.galeria { padding: 7rem 0; background: var(--cream); }
.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 0.75rem; }
.galeria-item--tall { grid-row: span 2; }
.galeria-item--wide { grid-column: span 2; }
.galeria-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.galeria-item:hover img { transform: scale(1.07); }
.galeria-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,32,48,0.7) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: opacity var(--transition); }
.galeria-item:hover .galeria-overlay { opacity: 1; }
.galeria-overlay span { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blush-light); }

/* ============================================================
   NOSOTROS
   ============================================================ */
.nosotros { padding: 7rem 0; background: var(--cream-dark); }
.nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.nosotros-text h2 { margin-bottom: 1.5rem; }
.nosotros-text p { color: var(--text-light); margin-bottom: 1.2rem; }
.nosotros-cita { margin-top: 2rem; padding: 1.5rem 2rem; border-left: 3px solid var(--rose); background: var(--cream); border-radius: 0 var(--radius) var(--radius) 0; }
blockquote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; font-weight: 400; color: var(--navy); line-height: 1.5; }
cite { display: block; margin-top: 0.7rem; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--rose); font-style: normal; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios { padding: 7rem 0; background: var(--cream); }
.testimonios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonio-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 2rem 1.6rem; border: 1px solid var(--cream-dark); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.testimonio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonio-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.testimonio-quote { font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--blush); margin-bottom: -0.5rem; }
.testimonio-texto { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 1.5rem; }
.testimonio-footer { display: flex; align-items: center; gap: 0.9rem; padding-top: 1.2rem; border-top: 1px solid var(--cream-dark); }
.testimonio-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--blush), var(--rose)); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; flex-shrink: 0; }
.testimonio-nombre { display: block; font-size: 0.85rem; font-weight: 500; color: var(--navy); margin-bottom: 0.1rem; }
.testimonio-servicio { display: block; font-size: 0.72rem; color: var(--rose); letter-spacing: 0.05em; }

/* ============================================================
   COBERTURA
   ============================================================ */
.cobertura { padding: 5rem 0; background: var(--blush-light); }
.cobertura-inner { text-align: center; }
.cobertura h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--navy); margin-bottom: 1.5rem; }
.cobertura-pueblos { font-size: 0.82rem; color: var(--slate); line-height: 2; max-width: 720px; margin: 0 auto 2.5rem; }
.cobertura-contact { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BLOG
   ============================================================ */
.blog { padding: 7rem 0; background: var(--cream-dark); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--cream-dark); transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-cat { display: inline-block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); background: var(--blush-light); padding: 0.3rem 0.8rem; border-radius: 20px; margin-bottom: 1rem; }
.blog-card h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--navy); margin-bottom: 0.8rem; line-height: 1.3; }
.blog-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1.5rem; }
.blog-link { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; color: var(--rose); transition: opacity var(--transition); }
.blog-link:hover { opacity: 0.65; }

/* ============================================================
   UBICACIÓN
   ============================================================ */
.ubicacion { padding: 7rem 0; background: var(--cream); }
.ubicacion-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.ubicacion-info { display: flex; flex-direction: column; gap: 0; }
.ubicacion-dato { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.3rem 0; border-bottom: 1px solid var(--blush); }
.ubicacion-dato:first-child { padding-top: 0; }
.ub-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.ubicacion-dato strong { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose-dark); margin-bottom: 0.3rem; }
.ubicacion-dato p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.ubicacion-dato a { color: var(--rose); transition: color var(--transition); }
.ubicacion-dato a:hover { color: var(--rose-dark); }
.ubicacion-mapa { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ubicacion-mapa iframe { display: block; width: 100%; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto { padding: 7rem 0; background: var(--navy); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; margin-top: 1rem; }
.info-item { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.info-icon { font-size: 1.2rem; margin-top: 0.1rem; flex-shrink: 0; }
.info-item strong { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.info-item p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.info-item a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.info-item a:hover { color: var(--blush); }
.contacto-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2.5rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 0.85rem 1.1rem; font-family: var(--font-body); font-size: 0.9rem; color: white; outline: none; transition: border-color var(--transition), background var(--transition); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--navy-light); color: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rose); background: rgba(255,255,255,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.7rem; background: var(--rose); color: white; font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; padding: 1.1rem; border: none; border-radius: var(--radius); cursor: pointer; transition: background var(--transition), transform var(--transition); }
.btn-submit:hover { background: var(--rose-dark); transform: translateY(-2px); }
.btn-submit.loading { opacity: 0.7; pointer-events: none; }
.form-message { margin-top: 1rem; padding: 0.9rem 1.2rem; border-radius: var(--radius); font-size: 0.85rem; display: none; }
.form-message.success { background: rgba(76,175,80,0.15); color: #81c784; border: 1px solid rgba(76,175,80,0.3); display: block; }
.form-message.error   { background: rgba(244,67,54,0.15); color: #e57373; border: 1px solid rgba(244,67,54,0.3); display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0f1520; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-row { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.footer-brand .brand-name { font-family: var(--font-brand); font-size: 2rem; color: #7ab8d6; display: block; line-height: 1; transform: translateY(4px); }
.footer-brand p { font-size: 0.85rem; color: var(--slate-light); line-height: 1.7; margin-bottom: 0.5rem; }
.footer-ig a { font-size: 0.78rem; color: var(--gold); }
.footer h5 { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-links li, .footer-servicios li { margin-bottom: 0.6rem; }
.footer-links a, .footer-servicios li, .footer-contact p, .footer-contact a { font-size: 0.84rem; color: var(--slate-light); transition: color var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--blush); }
.footer-wa { display: inline-block; margin-top: 1.2rem; font-size: 0.72rem; letter-spacing: 0.1em; color: #25D366; border-bottom: 1px solid rgba(37,211,102,0.4); padding-bottom: 2px; transition: opacity var(--transition); }
.footer-wa:hover { opacity: 0.7; }
.footer-bottom { padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ============================================================
   RESPONSIVE ≤ 1024px  (tablet / móvil)
   Ocultamos el menú desktop, mostramos la hamburguesa.
   El .mob-menu se encarga de TODO lo demás.
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links-desktop { display: none; }
  .nav-toggle        { display: flex; }

  .servicios-grid    { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid      { grid-template-columns: repeat(2, 1fr); }
  .galeria-item--tall { grid-row: span 1; }
  .galeria-item--wide { grid-column: span 1; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ubicacion-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonios-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  .filosofia-grid, .nosotros-grid, .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .filosofia-image { order: -1; }
  .filosofia-badge { right: 0; }
  .image-frame img { height: 320px; }
  .servicios-grid    { grid-template-columns: 1fr; }
  .testimonios-grid  { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: 1fr; }
  .galeria-grid      { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .footer-grid       { grid-template-columns: 1fr; }
  .filosofia-data    { gap: 1.2rem; }
  .btn-scroll-top    { bottom: 1rem; right: 5rem; }
  .btn-whatsapp      { bottom: 1rem; right: 1rem; }
}

/* ============================================================
   RESPONSIVE ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-actions      { flex-direction: column; align-items: center; }
  .galeria-grid      { grid-template-columns: 1fr; }
  .cobertura-contact { flex-direction: column; align-items: center; }
  .contacto-form     { padding: 1.5rem; }
  .brand-name        { font-size: 1.8rem; }
  .navbar            { padding: 1rem 1.2rem; }
  .btn-scroll-top    { right: 4.5rem; bottom: 1rem; width: 40px; height: 40px; }
  .btn-whatsapp      { right: 1rem; bottom: 1rem; width: 44px; height: 44px; }
  .btn-whatsapp svg  { width: 24px; height: 24px; }
}

/* ════════════════════════════════════════════════════════════
   MODAL WHATSAPP — Rosa Azul
   ════════════════════════════════════════════════════════════ */
.wa-modal-overlay {
  position: fixed; inset: 0; z-index: 99998;
  background: rgba(26,32,48,.72);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.wa-modal-overlay.open {
  opacity: 1; pointer-events: all;
}

.wa-modal {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px 40px;
  max-width: 480px; width: 100%;
  box-shadow: 0 24px 64px rgba(26,32,48,.24);
  text-align: center;
  transform: translateY(20px) scale(.97);
  transition: transform .3s ease;
}
.wa-modal-overlay.open .wa-modal {
  transform: translateY(0) scale(1);
}

.wa-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: #8a91a3; padding: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s;
}
.wa-modal-close:hover { color: #1a2030; }
.wa-modal-close svg { width: 20px; height: 20px; }

.wa-modal-icon {
  width: 64px; height: 64px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.wa-modal-icon svg { width: 34px; height: 34px; fill: #fff; }

.wa-modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 500; color: #1a2030;
  line-height: 1.4; margin: 0 0 24px;
}

.wa-modal-summary {
  background: #f8f4ef;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 28px;
  text-align: left;
}
.wa-modal-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; padding: 6px 0;
  border-bottom: 1px solid #f0e9e0;
  font-family: 'Jost', sans-serif; font-size: 13px;
}
.wa-modal-row:last-child { border-bottom: none; }
.wa-modal-row span { color: #8a91a3; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.wa-modal-row strong { color: #1a2030; font-weight: 500; text-align: right; word-break: break-word; }

.wa-modal-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: #25D366; color: #fff;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  padding: 16px 24px; border-radius: 6px;
  transition: background .2s, transform .2s;
  margin-bottom: 12px;
}
.wa-modal-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.wa-modal-btn svg { flex-shrink: 0; }

.wa-modal-skip {
  background: none; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 12px;
  color: #8a91a3; letter-spacing: 1px;
  text-decoration: underline; padding: 4px 8px;
  transition: color .2s;
}
.wa-modal-skip:hover { color: #1a2030; }

@media (max-width: 480px) {
  .wa-modal { padding: 40px 24px 32px; }
  .wa-modal-title { font-size: 1.15rem; }
}

/* ── Footer developer credit ── */
.footer-dev { margin-top: 6px !important; }
.footer-dev a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color .2s; }
.footer-dev a:hover { color: #b89b70; text-decoration: underline; }

/* ── REDES SOCIALES – footer ─────────────────────────────────── */
.footer-social-title {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin: 1.1rem 0 0.7rem;
}
.footer-social { display: flex; flex-direction: row; flex-wrap: wrap; gap: 0.5rem; align-items: flex-start; }
.sc-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.82);
  padding: 0.48rem 1.1rem; border-radius: 50px; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.03em;
  border: 1.5px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease; text-decoration: none;
}
.sc-link:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(0,0,0,0.3); }
.sc-link.fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.sc-link.ig:hover { background: #e1306c; color: #fff; border-color: #e1306c; }
.sc-link.yt:hover { background: #ff0000; color: #fff; border-color: #ff0000; }

/* ── Iconos circulares redes – sección contacto ──────────────── */
.info-social-icons { display: flex; gap: 0.65rem; align-items: center; margin-top: 0.6rem; }
.iso-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75); font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.iso-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
.iso-fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.iso-ig:hover { background: #e1306c; border-color: #e1306c; color: #fff; }
.iso-yt:hover { background: #ff0000; border-color: #ff0000; color: #fff; }
