/* ============================================================
   SELECTO — DESIGN SYSTEM (ordenado y anotado)
   Mobile-first, refined for elegance and performance
   Nota: No se ha eliminado nada, solo reordenado y comentado
   ============================================================ */

/* ---------------------------
   IMPORTS
   Origen: fuentes externas
   --------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---------------------------
   TOKENS / VARIABLES CSS
   Origen: Design tokens globales
   --------------------------- */
:root {
  /* Palette */
  --c-bg:         #111018;
  --c-surface:    #1a1825;
  --c-surface-2:  #22202f;
  --c-border:     rgba(212, 175, 55, 0.12);
  --c-border-h:   rgba(212, 175, 55, 0.35);
  --c-gold:       #D4AF37;
  --c-gold-light: #e8c94a;
  --c-text:       #f0eefc;
  --c-text-muted: #9090a8;
  --c-text-dim:   #5c5c72;

  /* Type */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;

  /* Scale */
  --text-xs:   0.72rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.35rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-hero: clamp(2.8rem, 9vw, 5.8rem);

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.75rem;
  --sp-lg:  3rem;
  --sp-xl:  5rem;
  --sp-2xl: 8rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  14px;
  --r-lg:  24px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-base: 0.3s cubic-bezier(0.4,0,0.2,1);
  --t-slow: 0.6s cubic-bezier(0.4,0,0.2,1);

  /* Layout */
  --max-w: 1120px;
  --nav-h: 72px;
}

/* ---------------------------
   RESET / BASE
   Origen: reset y normalización base del proyecto
   --------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-size: var(--text-base);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  font-family: var(--f-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* Selecciona todas las <section> pares que estén dentro de <main> */
/* Nota: este selector afecta al layout por alternancia de fondo */
main > section:nth-of-type(even) {
  background: var(--c-surface);
}

/* ---------------------------
   TIPOGRAFÍA
   Origen: reglas tipográficas globales
   --------------------------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); color: var(--c-text); }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); color: var(--c-text); }
h3 { font-size: var(--text-xl); }

p {
  color: var(--c-text-muted);
  line-height: 1.78;
}

.eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  opacity: 0.85;
  margin-bottom: 0.7rem;
}

.gold { color: var(--c-gold); }

/* ---------------------------
   LAYOUT HELPERS
   Origen: utilidades de layout y contenedores
   --------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.divider-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--c-gold);
  margin-block: 1.2rem;
}

/* ---------------------------
   COMPONENT: BUTTONS
   Origen: componentes (botones)
   --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 2px solid var(--c-gold);
  background: var(--c-gold);
  color: var(--c-bg);
  transition: background var(--t-base), color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn:hover,
.btn:focus-visible {
  background: transparent;
  color: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,175,55,0.25);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--c-gold);
}

.btn--ghost:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}

/* ---------------------------
   COMPONENT: NAVBAR
   Origen: header / navegación
   --------------------------- */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  background: rgba(17, 16, 24, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  transition: transform var(--t-base), background var(--t-base);
  will-change: transform;
}

.navbar.is-hidden   { transform: translateY(-100%); }
.navbar.is-scrolled { background: rgba(17,16,24,0.97); }

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

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

/* Desktop nav */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.8);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.navbar__links a:hover,
.navbar__links a.is-active {
  color: var(--c-gold-light);
  border-bottom-color: var(--c-gold);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 200;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.navbar__toggle .bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* Animate to X */
.navbar__toggle.is-open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.is-open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------
   COMPONENT: HERO
   Origen: sección principal / hero
   --------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url('fondoselecto.jpg');
  background-size: cover;
  background-position: center;
}

/* Parallax on desktop only */
@media (hover: hover) {
  .hero { background-attachment: fixed; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(10,9,16,0.5) 0%,
    rgba(17,16,24,0.72) 55%,
    rgba(10,9,16,0.95) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: var(--sp-lg) var(--sp-sm);
  max-width: 680px;
  animation: heroIn 1.1s ease both;
}

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

.hero__title {
  font-size: var(--text-hero);
  color: var(--c-text);
  font-weight: 700;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}

.hero__title .gold { color: var(--c-gold); }

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  margin-bottom: var(--sp-md);
  letter-spacing: 0.03em;
}

.hero__cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-md);
}

/* ---------------------------
   SECTION HEADER / CONTENT SECTIONS
   Origen: bloques seccionales y encabezado de sección
   --------------------------- */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.section-header h2 { margin-top: 0.4rem; }

.section-header p {
  font-size: var(--text-lg);
  max-width: 540px;
  margin: 0.8rem auto 0;
}

/* ---------------------------
   COMPONENT: COMING SOON
   Origen: página/landing "coming soon"
   --------------------------- */
.coming-soon {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('fondoselecto.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (hover: hover) {
  .coming-soon { background-attachment: fixed; }
}

.coming-soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,9,16,0.9) 0%, rgba(17,16,24,0.85) 100%);
}

.coming-soon__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-lg) var(--sp-sm);
  max-width: 560px;
  animation: heroIn 1.2s ease both;
}

.coming-soon__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--sp-md);
}

.coming-soon__deco span {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.5;
}

.coming-soon__deco i { color: var(--c-gold); font-size: 1.1rem; opacity: 0.75; }

.coming-soon__title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 10vw, 6rem);
  color: var(--c-gold);
  letter-spacing: 0.14em;
  text-shadow: 0 0 50px rgba(212,175,55,0.3);
  margin-bottom: 1rem;
}

.coming-soon__sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-md);
}

/* ---------------------------
   COMPONENT: FOOTER
   Origen: pie de página / footer
   --------------------------- */
.footer {
  background: #0a0912;
  border-top: 1px solid var(--c-border);
  padding: var(--sp-xl) 0 var(--sp-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

.footer h3 {
  font-family: var(--f-display);
  font-size: var(--text-xl);
  color: var(--c-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer__info p {
  font-size: var(--text-sm);
  color: var(--c-text-dim);
  line-height: 1.7;
}

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin-bottom: 0.55rem;
}

.footer__contact i {
  color: var(--c-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__contact a {
  color: var(--c-text-muted);
  transition: color var(--t-fast);
}

.footer__contact a:hover { color: var(--c-gold); }

.footer__social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.22);
  color: var(--c-text-muted);
  font-size: 1rem;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
  -webkit-tap-highlight-color: transparent;
}

.footer__social-links a:hover {
  background: rgba(212,175,55,0.14);
  color: var(--c-gold);
  border-color: var(--c-gold);
}

.footer__bottom {
  text-align: center;
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: var(--text-xs);
  color: var(--c-text-dim);
  letter-spacing: 0.04em;
}

/* ---------------------------
   UTILIDADES: Scroll reveal, focus, scrollbar, reduced motion
   Origen: accesibilidad y microinteracciones
   --------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Foco visible accesible */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Scrollbar (WebKit) */
::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--c-bg); }
::-webkit-scrollbar-thumb  { background: rgba(212,175,55,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,0.55); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------------------------
   RESPONSIVE: reglas para tablet y móvil
   Origen: adaptaciones por breakpoint
   --------------------------- */

/* Tablet */
@media (max-width: 900px) {
  .info-section__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }

  .info-section--reversed .info-section__inner {
    direction: ltr;
  }

  .info-section__img-wrap img {
    height: 300px;
  }

  .event-card {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
    padding: var(--sp-md);
  }

  .event-card__img-wrap img { height: 220px; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .amenity-card { min-height: 340px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .navbar__links {
    position: fixed;
    inset-block-start: var(--nav-h);
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(17,16,24,0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--c-border);
    padding-block: 0.5rem 1.5rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--t-base), visibility var(--t-base), transform var(--t-base);
  }

  .navbar__links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .navbar__links a {
    display: block;
    padding: 0.9rem 1.5rem;
    font-size: var(--text-base);
    border-bottom: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-align: left;
  }

  .navbar__links li:last-child a { border-bottom: none; }

  .navbar__toggle { display: flex; }

  .features__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .footer__grid { grid-template-columns: 1fr; text-align: center; }

  .footer__contact p { justify-content: center; }

  .footer__social-links { justify-content: center; }

  .amenities__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .features__grid { grid-template-columns: 1fr; }

  .hero__cta-group { flex-direction: column; align-items: center; }

  .btn { width: 100%; justify-content: center; max-width: 280px; }
}

/* ---------------------------
   BOTONES FLOTANTES
   Origen: UI fija (WhatsApp y Teléfono)
   Nota: teléfono a la izquierda / whatsapp a la derecha
   --------------------------- */

/* Estilos base compartidos */
.whatsapp-float,
.phone-float {
  position: fixed;
  bottom: 1.25rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-surface-2);
  border: 2px solid var(--c-gold);
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform var(--t-base), border-color var(--t-base), background var(--t-base), color var(--t-base);
}

/* WhatsApp (A la Derecha) */
.whatsapp-float {
  right: 1.25rem;
  color: #25D366;
}

/* Teléfono (A la Izquierda) */
.phone-float {
  left: 1.25rem;
  color: var(--c-gold);
}

/* Anillo de pulso para WhatsApp */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}

/* Estado Hover / Focus */
.whatsapp-float:hover,
.whatsapp-float:focus-visible,
.phone-float:hover,
.phone-float:focus-visible {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--c-gold-light);
}

.phone-float:hover,
.phone-float:focus-visible {
  color: #fff;
  background: var(--c-gold);
}

/* Adaptación para móviles */
@media (max-width: 480px) {
  .whatsapp-float,
  .phone-float {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
    bottom: 1rem;
  }

  .whatsapp-float {
    right: 1rem;
  }

  .phone-float {
    left: 1rem;
  }
}


/*======================================================
                  CTA FINAL
======================================================*/

.cta-final {
  padding: 100px 0;
  text-align: center;
}

.cta-final h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.cta-final p {
  max-width: 750px;
  margin: auto;
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ===========================================================
   MOBILE.CSS MERGED (overrides provenientes de mobile.css)
   Hecho: Añadido al final de styles.css tal como pediste.
   No se eliminaron reglas previas; estas son overrides que
   se aplicarán por cascada al estar al final del archivo.
   =========================================================== */

/* ================================
   AJUSTES MÓVIL ESPECÍFICOS
   Mejoras para <=768px y <=480px
   No borra nada, solo overrides y refinamientos
   ================================ */

/* ------------------------
   Breakpoint: tablets / móviles grandes
   max-width: 768px
   ------------------------ */
@media (max-width: 768px) {
  /* Navbar: menú más táctil y overlay más claro */
  .navbar__toggle { width: 44px; height: 44px; }
  .navbar__toggle .bar { height: 3px; }
  .navbar__links a { padding: 1rem 1.25rem; font-size: var(--text-base); }

  /* Hero: reducir altura y paddings para evitar scroll excesivo */
  .hero { min-height: 70svh; background-attachment: initial; }
  .hero__inner { padding: var(--sp-md); max-width: 100%; }
  .hero__title { font-size: clamp(1.8rem, 8vw, 2.8rem); line-height: 1.15; }

  /* CTA: botones en columna y full width cuando convenga */
  .hero__cta-group { flex-direction: column; gap: 0.8rem; align-items: stretch; }
  .hero__cta-group .btn { width: 100%; max-width: none; justify-content: center; }

  /* Event card: pasar a una columna, imagen encima del contenido */
  .event-card { grid-template-columns: 1fr; padding: 1rem; gap: 1rem; }
  .event-card__img-wrap { height: 220px; border-radius: var(--r-md); overflow: hidden; }
  .event-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

  /* Amenities: adaptar cards a una columna y reducir min-height */
  .amenities__grid { grid-template-columns: 1fr; gap: 1rem; }
  .amenity-card { min-height: auto; }
  .amenity-card__media { aspect-ratio: 16 / 9; }
  .amenity-card__body { padding: 1rem; }

  /* Info sections: stacked layout */
  .info-section__inner { grid-template-columns: 1fr; gap: var(--sp-md); }

  /* Stats: tarjetas en columna, tipografía más compacta */
  .stats-grid { grid-template-columns: 1fr; gap: 1rem; }
  .stat-card { padding: 28px 18px; }
  .stat-card h3 { font-size: 2rem; }

  /* Footer: centrar y espaciar */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left; }
  .footer__social-links { justify-content: flex-start; }

  /* Botones flotantes: tamaño más contenido y separación desde bordes */
  .whatsapp-float, .phone-float { width: 50px; height: 50px; bottom: 1rem; }
  .whatsapp-float { right: 1rem; }
  .phone-float { left: 1rem; }

  /* Reducir grandes paddings globales que consumen viewport */
  .cta-final { padding-block: 48px; }
  .events-section, .features, .amenities, .stats, .reviews { padding-block: 48px; }
}

/* ------------------------
   Breakpoint: móviles pequeños
   max-width: 480px
   Ajustes adicionales para pantallas pequeñas
   ------------------------ */
@media (max-width: 480px) {
  /* Hero: aún más compacto */
  .hero { min-height: 60svh; background-position: center top; }
  .hero__title { font-size: clamp(1.4rem, 9vw, 2.2rem); }
  .hero__sub { font-size: 0.95rem; }

  /* Navbar: menú desplegable ocupará menos altura */
  .navbar__links { padding-block: 0.5rem 1rem; }
  .navbar__links a { font-size: 0.98rem; padding: 0.9rem 1rem; }

  /* Event card: imágenes más cortas para evitar scroll largo */
  .event-card__img-wrap { height: 180px; }

  /* Amenities: texto más pequeño y optimizado */
  .amenity-card__title { font-size: 1rem; }
  .amenity-card__desc, .amenity-card__features { font-size: 0.95rem; }

  /* Stats: ajustar números para caber y no overflow */
  .stat-card h3 { font-size: 1.8rem; }

  /* CTA final: botones prominentes y full width */
  .cta-final .btn { width: 100%; padding-block: 0.9rem; font-size: var(--text-sm); }

  /* Botones flotantes: evitar superposición con márgenes del sistema */
  .whatsapp-float, .phone-float { width: 46px; height: 46px; bottom: 0.9rem; }
  .whatsapp-float { right: 0.9rem; }
  .phone-float { left: 0.9rem; }

  /* Scroll reveal: menos translate para evitar jump visibles */
  .reveal { transform: translateY(12px); }

  /* Evitar que .btn tenga border-radius demasiado grande en móvil */
  .btn { border-radius: calc(var(--r-sm) - 2px); }

  /* Optimización general de imágenes: mantener rendimiento */
  img { height: auto; max-height: 60vh; object-fit: cover; }
}

/* ------------------------
   Pequeños fixes táctiles y accesibilidad
   ------------------------ */
/* Aumentar área táctil de iconos y enlaces importantes */
.navbar__toggle, .footer__social-links a, .whatsapp-float, .phone-float, .btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Evitar background-attachment fixed en móviles (rendimiento) */
@supports (background-attachment: fixed) {
  @media (max-width: 900px) {
    .hero, .coming-soon { background-attachment: initial; }
  }
}