/* Halcon's Sonidos — estilos principales */
:root {
  /* Tema claro: papel cálido + blanco (elegante, no clínico) */
  --bg-deep: #f6f3ee;
  --bg-elevated: #ffffff;
  --bg-muted: #ede8e0;
  --text: #1c1917;
  --text-muted: #57534e;
  --accent: #a16207;
  --accent-bright: #d4a574;
  --accent-dim: rgba(161, 98, 7, 0.09);
  --border: rgba(28, 25, 23, 0.1);
  --overlay: rgba(0, 0, 0, 0.55);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 10px;
  --header-h: 72px;
  --package-bar: #3d4450;
  --package-price-blue: #7ec8ea;
  --package-red: #d93025;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

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

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

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35) 70%, transparent);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.06);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease,
    transform 0.25s ease;
}

.site-header .logo {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.site-header.is-scrolled .logo {
  color: var(--text);
  text-shadow: none;
}

.logo--footer {
  font-size: 1rem;
  opacity: 0.9;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.35s ease;
}

.site-header.is-scrolled .nav-toggle__bar {
  background: var(--text);
}

.site-nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .site-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease;
}

.site-header.is-scrolled .site-nav a {
  color: rgba(28, 25, 23, 0.72);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  color: var(--text);
}

.site-header.is-scrolled .site-nav a.is-active {
  color: var(--text);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible {
  color: #fff;
}

.site-nav a.is-active {
  border-bottom-color: transparent;
}

.site-nav a.is-active::after {
  transform: scaleX(1);
  background: var(--accent);
  height: 2px;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}

.hero__bg {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  background-color: #1a1520;
  background-image: url("https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?auto=format&fit=crop&w=1920&q=85");
  background-size: cover;
  background-position: center;
  animation: heroKen 28s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--overlay) 0%,
    rgba(18, 18, 20, 0.78) 45%,
    rgba(18, 18, 20, 0.92) 100%
  );
  z-index: 1;
  animation: overlayPulse 14s ease-in-out infinite alternate;
}

@keyframes overlayPulse {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.92;
  }
}

.hero__fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__beam {
  position: absolute;
  width: 140%;
  height: 4px;
  left: -20%;
  opacity: 0.35;
  filter: blur(1px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232, 184, 74, 0.15) 20%,
    rgba(255, 220, 150, 0.45) 50%,
    rgba(232, 184, 74, 0.15) 80%,
    transparent 100%
  );
}

.hero__beam--1 {
  top: 22%;
  animation: beamSweep 7s ease-in-out infinite;
}

.hero__beam--2 {
  top: 48%;
  opacity: 0.22;
  animation: beamSweep2 9s ease-in-out infinite;
  animation-delay: -2.3s;
}

.hero__beam--3 {
  top: 72%;
  opacity: 0.18;
  animation: beamSweep3 11s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes beamSweep {
  0%,
  100% {
    opacity: 0.15;
    transform: rotate(-8deg) translateX(-3%);
  }
  50% {
    opacity: 0.45;
    transform: rotate(-8deg) translateX(3%);
  }
}

@keyframes beamSweep2 {
  0%,
  100% {
    opacity: 0.12;
    transform: rotate(5deg) translateX(4%);
  }
  50% {
    opacity: 0.32;
    transform: rotate(5deg) translateX(-4%);
  }
}

@keyframes beamSweep3 {
  0%,
  100% {
    opacity: 0.1;
    transform: rotate(-4deg) scaleX(0.96);
  }
  50% {
    opacity: 0.28;
    transform: rotate(-4deg) scaleX(1.04);
  }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: min(45vw, 380px);
  height: min(45vw, 380px);
  top: 10%;
  right: -5%;
  background: radial-gradient(circle, rgba(232, 184, 74, 0.35) 0%, transparent 70%);
  animation-delay: 0s;
}

.hero__orb--2 {
  width: min(35vw, 280px);
  height: min(35vw, 280px);
  bottom: 15%;
  left: -8%;
  background: radial-gradient(circle, rgba(120, 180, 255, 0.2) 0%, transparent 70%);
  animation-delay: -5s;
  animation-duration: 15s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(3%, -4%) scale(1.05);
  }
  66% {
    transform: translate(-2%, 3%) scale(0.98);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__enter {
  opacity: 0;
  animation: heroEnter 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__title.hero__enter {
  animation-delay: 0.15s;
}

p.hero__enter {
  animation-name: heroEnter;
  animation-delay: 0.4s;
}

.hero__actions.hero__enter {
  animation-name: heroEnter;
  animation-delay: 0.65s;
}

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

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: #fffef8;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 4px 24px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(212, 165, 116, 0.2);
}

.hero__title-byline {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.8vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: rgba(255, 245, 230, 0.96);
  text-shadow:
    0 1px 10px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(212, 165, 116, 0.25);
}

.hero__title-line {
  display: block;
  margin-top: 0.65rem;
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: rgba(255, 254, 248, 0.94);
  text-shadow:
    0 1px 8px rgba(0, 0, 0, 0.45),
    0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  margin: 0 0 2.25rem;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  animation: scrollHintFade 1.2s ease 1.2s forwards;
  opacity: 0;
}

@keyframes scrollHintFade {
  to {
    opacity: 1;
  }
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 1px;
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn--primary {
  background: linear-gradient(145deg, #1c1917 0%, #292524 100%);
  color: #faf8f5;
  border-color: rgba(28, 25, 23, 0.2);
  box-shadow: 0 4px 14px rgba(28, 25, 23, 0.12);
}

.btn--primary:hover {
  background: linear-gradient(145deg, #292524 0%, #44403c 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(28, 25, 23, 0.14);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(28, 25, 23, 0.22);
}

.btn--ghost:hover {
  background: rgba(28, 25, 23, 0.05);
  border-color: rgba(28, 25, 23, 0.35);
}

/* Hero: botones legibles sobre foto oscura */
.hero .btn--primary {
  background: #fff;
  color: #1c1917;
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.hero .btn--primary:hover {
  background: #faf8f5;
  transform: translateY(-1px);
}

.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--block {
  width: 100%;
}

.btn--shine {
  position: relative;
  overflow: hidden;
}

.btn--shine::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(255, 255, 255, 0.15) 55%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.btn--shine:hover::before {
  left: 100%;
}

.btn--ghost.btn--shine::before {
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 45%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 100%
  );
}

/* —— Scroll reveal (requiere JS: clase .js en <html>) —— */
.js .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid .feature-card.reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.feature-grid .feature-card.reveal:nth-child(2) {
  transition-delay: 0.15s;
}

.feature-grid .feature-card.reveal:nth-child(3) {
  transition-delay: 0.25s;
}

.gallery-grid .gallery-item.reveal:nth-child(1) {
  transition-delay: 0.06s;
}

.gallery-grid .gallery-item.reveal:nth-child(2) {
  transition-delay: 0.14s;
}

.gallery-grid .gallery-item.reveal:nth-child(3) {
  transition-delay: 0.22s;
}

.gallery-grid .gallery-item.reveal:nth-child(4) {
  transition-delay: 0.3s;
}

/* —— Sections —— */
.section {
  padding: 5rem 1.5rem;
}

.section--dark {
  background: var(--bg-muted);
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 560px;
}

.section__head {
  margin-bottom: 3rem;
}

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

.section__head--center .section__intro {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

.section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, var(--accent), #fff4d4, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: eyebrowShimmer 8s linear infinite;
}

@keyframes eyebrowShimmer {
  to {
    background-position: 200% center;
  }
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.section__intro {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

/* —— Feature grid —— */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.04);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(161, 98, 7, 0.35);
  background: #fffef9;
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(28, 25, 23, 0.08),
    0 0 0 1px rgba(161, 98, 7, 0.1);
}

.feature-grid--accent .feature-card:hover {
  border-color: rgba(161, 98, 7, 0.45);
}

.feature-card--highlight {
  border-color: rgba(161, 98, 7, 0.28);
  background: linear-gradient(145deg, rgba(212, 165, 116, 0.18) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.feature-card--highlight:hover {
  border-color: rgba(161, 98, 7, 0.45);
  background: linear-gradient(145deg, rgba(212, 165, 116, 0.26) 0%, #fff 100%);
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.feature-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* —— Paquete Standard (flyer) —— */
.section--package {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
  padding-top: 4.5rem;
}

.section__inner--package {
  max-width: 1120px;
}

.package-intro {
  text-align: center;
  margin-bottom: 2.25rem;
}

.package-intro__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: none;
}

.package-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.package-split + .package-split {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 901px) {
  .package-split--reverse {
    direction: rtl;
  }

  .package-split--reverse > * {
    direction: ltr;
  }
}

.package-split__text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
}

.package-badge {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--package-bar);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.package-lead {
  margin: 0 0 1rem;
}

.package-includes {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
}

.package-includes li {
  margin-bottom: 0.65rem;
}

.package-includes li::marker {
  color: var(--accent);
}

.package-price {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.package-price__value {
  color: var(--package-price-blue);
  font-weight: 700;
  white-space: nowrap;
}

.package-addons {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.package-addons__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--package-red);
}

.package-addons__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.package-addons__list li {
  margin-bottom: 0.85rem;
}

.package-addons__price {
  font-weight: 700;
  color: var(--package-price-blue);
  white-space: nowrap;
}

.package-note {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.package-note--section {
  margin-top: 2.5rem;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.package-split__figure {
  margin: 0;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.package-split__frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 20px 50px rgba(28, 25, 23, 0.1);
}

.package-split__img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.package-split__frame:hover .package-split__img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .package-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .package-split__figure {
    position: static;
    order: -1;
  }
}

/* —— Gallery —— */
.section--gallery {
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-elevated));
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover {
  border-color: rgba(161, 98, 7, 0.35);
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.1);
  transform: translateY(-4px);
}

.gallery-item__ph {
  aspect-ratio: 4 / 3;
  background-color: #222;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item__ph {
  transform: scale(1.04);
}

.gallery-item figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

/* —— FAQ (SEO / rich results) —— */
.section--faq {
  background: var(--bg-deep);
}

.section__inner--faq {
  max-width: 720px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  padding: 0 1rem;
  transition: border-color 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(161, 98, 7, 0.25);
}

.faq-item__q {
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: "";
  float: right;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.35rem;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-item__q::after {
  transform: rotate(-135deg);
  margin-top: 0.55rem;
}

.faq-item__a {
  padding: 0 0 1.1rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.faq-item__a p {
  margin: 0.85rem 0 0;
}

.faq-item__a a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__a a:hover {
  color: var(--text);
}

/* —— Contact —— */
.section--contact {
  padding-bottom: 6rem;
}

.section__inner--contact {
  max-width: 1120px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-map {
  text-align: left;
}

.contact-map--full {
  text-align: center;
  width: 100%;
}

.contact-map--full .contact-map__title {
  font-size: clamp(1.15rem, 3vw, 1.35rem);
}

.contact-map--full .contact-map__address {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-map__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.contact-map__address {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-map__frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 16px 44px rgba(28, 25, 23, 0.08);
  aspect-ratio: 4 / 3;
  max-height: 380px;
}

.contact-map--full .contact-map__frame {
  aspect-ratio: 16 / 9;
  max-height: min(520px, 58vh);
}

.contact-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map__directions {
  margin-top: 1rem;
}

.contact-map .btn--ghost {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 900px) {
  .contact-map .btn--ghost {
    width: auto;
    max-width: none;
  }
}

/* —— Botones flotantes (Facebook + WhatsApp) —— */
.social-fabs {
  position: fixed;
  z-index: 999;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.fb-fab,
.wa-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  color: #fff;
  transition: box-shadow 0.3s ease, filter 0.25s ease;
  animation: waFabFloat 3.5s ease-in-out infinite;
}

.fb-fab {
  background: linear-gradient(145deg, #5b9dff 0%, #1877f2 45%, #0d5dbf 85%, #0a4d99 100%);
  box-shadow:
    0 10px 32px rgba(24, 119, 242, 0.42),
    0 2px 10px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation-delay: 0.2s;
}

.wa-fab {
  background: linear-gradient(145deg, #6fe85c 0%, #25d366 40%, #128c7e 78%, #075e54 100%);
  box-shadow:
    0 10px 32px rgba(7, 94, 84, 0.42),
    0 2px 10px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.fb-fab:hover {
  filter: brightness(1.08);
  box-shadow:
    0 14px 40px rgba(24, 119, 242, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.wa-fab:hover {
  filter: brightness(1.08);
  box-shadow:
    0 14px 40px rgba(7, 94, 84, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.fb-fab:focus-visible,
.wa-fab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.fb-fab__icon,
.wa-fab__icon {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@keyframes waFabFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* —— Footer —— */
.site-footer {
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.site-footer__meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 26rem;
}

.site-footer__address {
  display: inline;
  margin: 0;
  font-size: inherit;
  font-style: normal;
  color: inherit;
}

.site-footer__meta a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__meta a:hover {
  color: var(--accent);
}

.site-footer__sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* —— Mobile —— */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    z-index: 110;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(255, 252, 248, 0.98);
    backdrop-filter: blur(12px);
    padding: 2rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-header .site-nav a {
    color: rgba(28, 25, 23, 0.88);
  }

  .site-header .site-nav a:hover,
  .site-header .site-nav a:focus-visible {
    color: var(--text);
  }

  .site-header .site-nav a.is-active {
    color: var(--text);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0;
  }

  .site-nav__list li {
    border-bottom: 1px solid var(--border);
  }

  .site-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__bg {
    animation: none;
  }

  .hero__overlay {
    animation: none;
  }

  .hero__beam,
  .hero__orb,
  .hero__scroll-line,
  .section__eyebrow {
    animation: none !important;
  }

  .section__eyebrow {
    background: none;
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
  }

  .hero__enter {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .hero__scroll {
    opacity: 0.6;
    animation: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn--shine::before {
    display: none;
  }

  .gallery-item__ph,
  .btn--primary:hover,
  .feature-card:hover,
  .gallery-item:hover {
    transition: none;
    transform: none;
    box-shadow: none;
  }

  .package-split__frame:hover .package-split__img {
    transform: none;
  }

  .fb-fab,
  .wa-fab {
    animation: none;
  }

  .site-nav a::after {
    transition: none;
  }
}
