/* =========================================================
   VARIABLES + BASE
========================================================= */
:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.1);
  --white: #f7f7f7;
  --muted: #bdbdbd;
  --muted-2: #8b8b8b;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ffffff;
  --accent-2: #d9d9d9;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --header-h: 84px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.04),
      transparent 28%
    ),
    linear-gradient(180deg, #080808 0%, #030303 100%);
  color: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    transparent 30%,
    transparent 70%,
    rgba(255, 255, 255, 0.015)
  );
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent);
}

.section-title,
.hero__title,
.about__title,
.location__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.section-text,
.hero__text,
.about__text,
.location__text,
.footer__text {
  color: var(--muted);
  line-height: 1.75;
}
/* =========================================================
   BUTTONS PRO INVERT (BLANCO <-> NEGRO)
========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);

  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;

  cursor: pointer;
  backdrop-filter: blur(10px);

  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease, background 0.45s ease, color 0.45s ease,
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform, box-shadow;
}

/* ================= HOVER GLOBAL (NEGRO -> BLANCO) ================= */
.btn:hover {
  transform: translateY(-3px) scale(1.04);

  background: #ffffff;
  color: #111;

  border-color: #ffffff;

  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.18),
    0 0 16px rgba(255, 255, 255, 0.22), 0 0 32px rgba(255, 255, 255, 0.12);
}

/* CLICK */
.btn:active {
  transform: scale(0.96);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   PRIMARY (BLANCO -> NEGRO)
========================================================= */
.btn--primary {
  background: #ffffff;
  color: #111;
  border-color: #ffffff;

  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.12);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.05);

  background: #0a0a0a;
  color: #ffffff;

  border-color: rgba(255, 255, 255, 0.3);

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 14px rgba(255, 255, 255, 0.08);
}

/* =========================================================
   LIGHT (igual lógica blanco -> negro)
========================================================= */
.btn--light {
  background: #f7f7f7;
  color: #111;
  border-color: transparent;
}

.btn--light:hover {
  background: #0a0a0a;
  color: #ffffff;

  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5), 0 0 14px rgba(255, 255, 255, 0.08);
}

.grid-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1),
    transparent 78%
  );
  opacity: 0.28;
}
/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1400;
  transition: background 0.35s ease, border-color 0.35s ease,
    box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ================= LOGO HORIZONTAL ================= */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.site-logo__name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
}

.site-logo__tag {
  display: block;
  margin-top: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e6e6e6;
  transition: color 0.3s ease, background 0.3s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, #d9d9d9);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.32s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.site-nav__link.is-active::after,
.site-nav__link:hover::after {
  transform: scaleX(1);
}

.site-header__cta {
  flex-shrink: 0;
}
/* =========================================================
   RESPONSIVE HEADER / HAMBURGUESA
========================================================= */
.nav-toggle {
  display: none;
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1501;
  flex-shrink: 0;
}

.nav-toggle:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.nav-toggle.is-open {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.nav-toggle__line {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(-50%);
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.25s ease,
    background 0.3s ease;
}

.nav-toggle__line:nth-child(1) {
  top: 18px;
}

.nav-toggle__line:nth-child(2) {
  top: 26px;
}

.nav-toggle__line:nth-child(3) {
  top: 34px;
}

.nav-toggle.is-open .nav-toggle__line:nth-child(1) {
  top: 26px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__line:nth-child(3) {
  top: 26px;
  transform: translateX(-50%) rotate(-45deg);
}

/* =========================================================
   MOBILE MENU
========================================================= */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1290;
}

.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 110px 24px 36px;
  background: radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.06),
      transparent 24%
    ),
    rgba(6, 6, 6, 0.96);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.34s ease, visibility 0.34s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__inner {
  width: min(100%, 520px);
  text-align: center;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.mobile-menu__link {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 0 0 12px;
  border-radius: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.78);
  border: 0;
  background: transparent;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu__link::before {
  display: none;
}

.mobile-menu__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffffff, #d9d9d9);
  transform: translateX(-50%);
  transition: width 0.32s ease;
}

.mobile-menu__link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.mobile-menu__link.is-active {
  color: #ffffff;
  background: transparent;
  border-color: transparent;
}

.mobile-menu__link.is-active::after,
.mobile-menu__link:hover::after {
  width: min(72%, 180px);
}

.mobile-menu__cta {
  margin-top: 34px;
  width: 100%;
  max-width: 320px;
  justify-self: center;
}

@media (max-width: 700px) {
  .mobile-menu {
    padding: 96px 20px 30px;
  }

  .mobile-menu__inner {
    width: min(100%, 420px);
  }

  .mobile-menu__list {
    gap: 20px;
  }

  .mobile-menu__link {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    padding-bottom: 10px;
  }

  .mobile-menu__cta {
    margin-top: 28px;
  }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 56px) 0 72px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.03);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.74) 34%,
      rgba(0, 0, 0, 0.35) 63%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.32) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero__kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero__title {
  font-size: clamp(4rem, 8vw, 6.8rem);
  max-width: 620px;
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  margin: 14px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.05;
  color: #f0f0f0;
}

.hero__text {
  max-width: 600px;
  margin: 18px 0 28px;
  font-size: 1.03rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f5f5f5;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero__badge::before {
  content: "✦";
  color: #ffffff;
  font-size: 0.82rem;
}

/* =========================================================
   ABOUT
========================================================= */
.about__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 34px;
  align-items: stretch;
}

.about__media,
.about__content {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.about__media {
  min-height: 620px;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__title {
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  margin-bottom: 18px;
}

.about__text {
  margin: 0;
  font-size: 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.about__feature {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.about__feature-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.03)
  );
}

.about__feature-title {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
/* ================= FEATURES HOVER PRO ================= */
.about__feature {
  position: relative;
  padding: 18px 16px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;
  overflow: hidden;

  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.5s ease, background 0.5s ease,
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform, box-shadow;
}

/* ✨ HOVER CARD */
.about__feature:hover {
  transform: translateY(-8px) scale(1.04);

  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 255, 255, 0.08),
    0 0 26px rgba(255, 255, 255, 0.06);
}

/* ================= ICON ================= */
.about__feature-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.03)
  );

  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease, box-shadow 0.45s ease;
}

/* ✨ ICON HOVER */
.about__feature:hover .about__feature-icon {
  transform: scale(1.15);

  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.06)
  );

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15),
    0 0 20px rgba(255, 255, 255, 0.08);
}

/* ================= TEXTO ================= */
.about__feature-title {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;

  transition: transform 0.4s ease, color 0.4s ease;
}

/* ✨ TEXTO HOVER */
.about__feature:hover .about__feature-title {
  transform: translateY(-2px);
  color: #ffffff;
}

/* ================= LIGHT GLOW OVERLAY ================= */
.about__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );

  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.about__feature:hover::after {
  opacity: 1;
}

/* =========================================================
   GALLERY 3D CAROUSEL
========================================================= */
.gallery {
  position: relative;
  overflow: hidden;
}

.gallery3d {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  perspective: 1800px;
  perspective-origin: center center;
}

.gallery3d__scene {
  position: relative;
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.gallery3d__carousel {
  position: relative;
  width: 320px;
  height: 420px;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.gallery3d__carousel.is-dragging {
  cursor: grabbing;
  transition: none;
}

.gallery3d__card {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  -webkit-box-reflect: below 18px
    linear-gradient(transparent, rgba(0, 0, 0, 0.24));
}

.gallery3d__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 26%,
    transparent 62%,
    rgba(0, 0, 0, 0.18) 100%
  );
  pointer-events: none;
}

.gallery3d__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02) brightness(0.96);
  transition: transform 0.7s ease, filter 0.7s ease;
  pointer-events: none;
}

.gallery3d__card:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04) brightness(1);
}

/* 7 cards */
.gallery3d__card:nth-child(1) {
  transform: rotateY(0deg) translateZ(520px);
}

.gallery3d__card:nth-child(2) {
  transform: rotateY(51.428deg) translateZ(520px);
}

.gallery3d__card:nth-child(3) {
  transform: rotateY(102.856deg) translateZ(520px);
}

.gallery3d__card:nth-child(4) {
  transform: rotateY(154.284deg) translateZ(520px);
}

.gallery3d__card:nth-child(5) {
  transform: rotateY(205.712deg) translateZ(520px);
}

.gallery3d__card:nth-child(6) {
  transform: rotateY(257.14deg) translateZ(520px);
}

.gallery3d__card:nth-child(7) {
  transform: rotateY(308.568deg) translateZ(520px);
}

/* Glow ambiental */
.gallery3d::before,
.gallery3d::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  transform: translateY(-50%);
}

.gallery3d::before {
  left: 10%;
  background: rgba(255, 255, 255, 0.06);
}

.gallery3d::after {
  right: 10%;
  background: rgba(255, 255, 255, 0.04);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .gallery3d__scene {
    height: 500px;
  }

  .gallery3d__carousel {
    width: 280px;
    height: 380px;
  }

  .gallery3d__card:nth-child(1) {
    transform: rotateY(0deg) translateZ(430px);
  }

  .gallery3d__card:nth-child(2) {
    transform: rotateY(51.428deg) translateZ(430px);
  }

  .gallery3d__card:nth-child(3) {
    transform: rotateY(102.856deg) translateZ(430px);
  }

  .gallery3d__card:nth-child(4) {
    transform: rotateY(154.284deg) translateZ(430px);
  }

  .gallery3d__card:nth-child(5) {
    transform: rotateY(205.712deg) translateZ(430px);
  }

  .gallery3d__card:nth-child(6) {
    transform: rotateY(257.14deg) translateZ(430px);
  }

  .gallery3d__card:nth-child(7) {
    transform: rotateY(308.568deg) translateZ(430px);
  }
}

@media (max-width: 700px) {
  .gallery3d {
    perspective: 1200px;
  }

  .gallery3d__scene {
    height: 360px;
  }

  .gallery3d__carousel {
    width: 190px;
    height: 250px;
  }

  .gallery3d__card {
    border-radius: 20px;
    -webkit-box-reflect: unset;
  }

  .gallery3d__card:nth-child(1) {
    transform: rotateY(0deg) translateZ(260px);
  }

  .gallery3d__card:nth-child(2) {
    transform: rotateY(51.428deg) translateZ(260px);
  }

  .gallery3d__card:nth-child(3) {
    transform: rotateY(102.856deg) translateZ(260px);
  }

  .gallery3d__card:nth-child(4) {
    transform: rotateY(154.284deg) translateZ(260px);
  }

  .gallery3d__card:nth-child(5) {
    transform: rotateY(205.712deg) translateZ(260px);
  }

  .gallery3d__card:nth-child(6) {
    transform: rotateY(257.14deg) translateZ(260px);
  }

  .gallery3d__card:nth-child(7) {
    transform: rotateY(308.568deg) translateZ(260px);
  }

  .gallery3d::before,
  .gallery3d::after {
    display: none;
  }
}
/* =========================================================
   FOLLOW
========================================================= */
.follow {
  position: relative;
  padding-top: 30px;
}

.follow .section-header {
  margin-bottom: 36px;
}

.follow .eyebrow {
  color: #ffffff;
}

.follow .section-title {
  color: #ffffff;
}

.follow .section-text {
  max-width: 760px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.76);
}

.follow__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* ================= CARD (Corrección: Transición y Will-change) ================= */
.follow-card {
  position: relative;
  min-height: 250px;
  border-radius: 28px;
  padding: 30px 30px 28px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none; /* Asegura que no haya subrayado */
  display: block;

  /* Transición suavizada con cubic-bezier para efecto premium */
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.7s ease, box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform, box-shadow;
}

.follow-card:hover {
  transform: translateY(-8px) scale(1.02); /* Un poco más sutil que 1.045 para no verse brusco */
  border-color: rgba(255, 255, 255, 0.4);
}

/* ================= COLORES + EFECTO NEÓN (Corrección: Box-Shadow Capas) ================= */
.follow-card--instagram {
  background: radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, #8a3ab9 0%, #c13584 34%, #e94e77 66%, #f89b29 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.follow-card--instagram:hover {
  /* Neón Instagram: Rosa y Naranja */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(193, 53, 132, 0.4),
    0 0 40px rgba(248, 155, 41, 0.2);
}

.follow-card--whatsapp {
  background: radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.15),
      transparent 30%
    ),
    linear-gradient(135deg, #29e86f 0%, #16c98d 32%, #0fa37c 68%, #08735d 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.follow-card--whatsapp:hover {
  /* Neón WhatsApp: Verde brillante */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(41, 232, 111, 0.5),
    0 0 40px rgba(41, 232, 111, 0.2);
}

.follow-card--tiktok {
  background: radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.13),
      transparent 28%
    ),
    linear-gradient(135deg, #1a1a1f 0%, #3a0a2c 35%, #ff0050 72%, #21d4fd 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.follow-card--tiktok:hover {
  /* Neón TikTok: Estilo Glitch (Cyan y Magenta) */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), -8px 0 20px rgba(255, 0, 80, 0.3),
    8px 0 20px rgba(33, 212, 253, 0.3);
}

/* ================= OVERLAY & GLOW (Manteniendo tu lógica) ================= */
.follow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.16),
      transparent 42%
    );
  pointer-events: none;
  z-index: 1;
}

.follow-card__glow {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.22;
  transform: scale(0.9);
  filter: blur(42px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  z-index: 2;
}

.follow-card:hover .follow-card__glow {
  opacity: 0.5; /* Subido ligeramente para el efecto neón */
  transform: scale(1.1);
  filter: blur(48px);
}

.follow-card--instagram .follow-card__glow {
  background: radial-gradient(
    circle,
    rgba(255, 184, 77, 0.7) 0%,
    rgba(255, 184, 77, 0) 68%
  );
}

.follow-card--whatsapp .follow-card__glow {
  background: radial-gradient(
    circle,
    rgba(41, 232, 111, 0.68) 0%,
    rgba(41, 232, 111, 0) 68%
  );
}

.follow-card--tiktok .follow-card__glow {
  background: radial-gradient(
    circle,
    rgba(33, 212, 253, 0.68) 0%,
    rgba(33, 212, 253, 0) 68%
  );
}

/* ================= DESTELLO (Corrección: Cubic-bezier para suavidad) ================= */
.follow-card__shine {
  position: absolute;
  top: -130%;
  left: -60%;
  width: 38%;
  height: 260%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: rotate(18deg);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.follow-card:hover .follow-card__shine {
  animation: shineMove 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes shineMove {
  0% {
    left: -60%;
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    left: 140%;
    opacity: 0;
  }
}

/* ================= ICON & TEXT (Z-index para legibilidad) ================= */
.follow-card__icon,
.follow-card__title,
.follow-card__handle,
.follow-card__text {
  position: relative;
  z-index: 3;
}

.follow-card__icon {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 0.7s ease, background 0.7s ease;
}

.follow-card:hover .follow-card__icon {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.22);
}

.follow-card__icon svg {
  display: block;
  width: 34px;
  height: 34px;
}

.follow-card__title {
  margin: 0 0 4px;
  font-size: 1.42rem;
  font-weight: 800;
  color: #fff;
}

.follow-card__handle {
  margin: 0 0 10px;
  font-size: 0.98rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.follow-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.93);
  line-height: 1.55;
  font-size: 0.98rem;
}

/* ================= RESPONSIVE (Tus Media Queries Intactos) ================= */
@media (max-width: 920px) {
  .follow__grid {
    grid-template-columns: 1fr;
  }
  .follow-card {
    min-height: 190px;
  }
}

@media (max-width: 700px) {
  .follow {
    padding-top: 18px;
  }
  .follow .section-header {
    margin-bottom: 24px;
  }
  .follow-card {
    padding: 24px 22px 22px;
    min-height: 180px;
    border-radius: 22px;
  }
  .follow-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    margin-bottom: 16px;
  }
  .follow-card__icon svg {
    width: 30px;
    height: 30px;
  }
  .follow-card__title {
    font-size: 1.2rem;
  }
  .follow-card__handle {
    font-size: 0.94rem;
  }
  .follow-card__text {
    font-size: 0.93rem;
  }
}

/* =========================================================
   VIDEO
========================================================= */
/* =========================================================
   VIDEO FULL WIDTH PRO
========================================================= */

/* CONTENEDOR FULL */
.video__full {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* BLOQUE VIDEO */
.video__block {
  position: relative;
  width: 100%;
  height: clamp(520px, 75vh, 720px); /* 🔥 más alto */

  border-radius: 0; /* 👉 si quieres bordes redondos cambia a var(--radius-xl) */
  overflow: hidden;

  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);

  box-shadow: none;

  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.7s ease;
}

/* VIDEO COMO BACKGROUND */
.video__media {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;

  filter: brightness(0.7) contrast(1.05);

  z-index: 0;
}

/* OVERLAY OSCURO */
.video__block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.25) 65%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

/* CONTENIDO */
.video__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 80px;
  max-width: 720px;
}

/* TITULO */
.video__title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: #ffffff;
  margin-bottom: 18px;
}

/* TEXTO */
.video__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

/* HOVER */
.video__block:hover {
  transform: scale(1.01);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .video__overlay {
    padding: 40px 24px;
  }

  .video__title {
    font-size: 2.2rem;
  }

  .video__block {
    height: 480px;
  }
}
/* =========================================================
   TESTIMONIALS CAROUSEL
========================================================= */
.testimonials-carousel {
  position: relative;
  z-index: 1;
}

.testimonials-carousel__viewport {
  overflow: hidden;
  border-radius: 28px;
}

.testimonials-carousel__track {
  display: flex;
  gap: 18px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  touch-action: pan-y;
}

.testimonial-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  border-radius: 24px;
  padding: 28px 22px;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease, box-shadow 0.45s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(255, 255, 255, 0.04);
}

.testimonial-card__avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.testimonial-card__avatar--icon {
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.04)
  );
  color: #ffffff;
  font-size: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
  color: #ffffff;
  letter-spacing: 0.08em;
}

.testimonial-card__quote {
  margin: 0 0 16px;
  color: #e8e8e8;
  line-height: 1.75;
  font-size: 0.96rem;
}

.testimonial-card__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

/* botones */
.testimonials-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.72);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonials-carousel__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.testimonials-carousel__btn--prev {
  left: -18px;
}

.testimonials-carousel__btn--next {
  right: -18px;
}

/* dots */
.testimonials-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonials-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-carousel__dot.is-active {
  background: #ffffff;
  transform: scale(1.18);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.22);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }

  .testimonials-carousel__btn--prev {
    left: -8px;
  }

  .testimonials-carousel__btn--next {
    right: -8px;
  }
}

@media (max-width: 700px) {
  .testimonials-carousel {
    overflow: hidden;
  }

  .testimonials-carousel__btn {
    display: none;
  }

  .testimonials-carousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 24px;
  }

  .testimonials-carousel__viewport::-webkit-scrollbar {
    display: none;
  }

  .testimonials-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 18px;
    width: auto;
    transition: none;
    transform: none !important;
    will-change: auto;
    touch-action: pan-x pan-y;
  }

  .testimonial-card {
    width: 100%;
    min-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  #testimonialsTrack {
    user-select: none;
    -webkit-user-select: none;
  }
}

/* =========================================================
   LOCATION
========================================================= */
.location__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}

.location__map,
.location__panel {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card);
  box-shadow: var(--shadow);
}

.location__map {
  min-height: 540px;
  position: relative;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  border: 0;
  filter: grayscale(0.08) contrast(1.05) brightness(0.92);
}

.location__panel {
  padding: 40px;
}

.location__title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 16px;
}

.location__text {
  margin: 0 0 28px;
}

.location__items {
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.location__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease, background 0.4s ease,
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, box-shadow;
}

.location__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.1),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.location__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 45%,
    transparent 100%
  );
  transform: translateX(-130%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  pointer-events: none;
}

.location__item:hover {
  transform: translateY(-6px) scale(1.015);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24),
    0 0 14px rgba(255, 255, 255, 0.04);
}

.location__item:hover::before {
  opacity: 1;
}

.location__item:hover::after {
  transform: translateX(130%);
  opacity: 1;
}

.location__icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #ffffff;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.12),
    transparent 75%
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.location__item:hover .location__icon {
  transform: scale(1.08);
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.04)
  );
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.location__item > div:last-child {
  position: relative;
  z-index: 1;
}

.location__label {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 700;
  transition: transform 0.35s ease, color 0.35s ease;
}

.location__value {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  transition: color 0.35s ease, transform 0.35s ease;
}

.location__item:hover .location__label {
  transform: translateY(-1px);
  color: #ffffff;
}

.location__item:hover .location__value {
  color: #e6e6e6;
  transform: translateY(-1px);
}

.location__cta {
  width: 100%;
}

@media (max-width: 1100px) {
  .location__wrap {
    grid-template-columns: 1fr;
  }

  .location__map {
    min-height: 420px;
  }

  .location__map iframe {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .location__panel {
    padding: 28px 22px;
  }

  .location__map {
    min-height: 340px;
  }

  .location__map iframe {
    min-height: 340px;
  }

  .location__item:hover {
    transform: translateY(-3px) scale(1.01);
  }
}
/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  position: relative;
  padding: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      transparent 30%
    ),
    #050505;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
  gap: 26px;
  padding-bottom: 34px;
}

.footer__brand {
  max-width: 320px;
}

.footer__title {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 800;
}

.footer__text {
  margin: 0 0 18px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.footer__social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.footer__nav,
.footer__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer__nav a,
.footer__hours li {
  color: var(--muted);
}

.footer__cta {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom {
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--muted-2);
  font-size: 0.92rem;
}

/* =========================================================
   REVEAL
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE GENERAL
========================================================= */
@media (max-width: 1100px) {
  .about__wrap,
  .location__wrap,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about__media,
  .location__map {
    min-height: 500px;
  }
}

/* =========================================================
   RESPONSIVE HEADER / MENU
========================================================= */
@media (max-width: 920px) {
  .site-header__cta,
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero__title {
    font-size: clamp(3.3rem, 10vw, 5rem);
  }

  .about__features,
  .follow__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   RESPONSIVE MOBILE
========================================================= */
@media (max-width: 700px) {
  :root {
    --header-h: 76px;
  }

  .section {
    padding: 84px 0;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 24px) 0 24px;
  }

  .hero__media,
  .hero__media img,
  .hero__overlay {
    height: 100%;
  }

  .hero__inner {
    width: 100%;
    min-height: calc(100dvh - var(--header-h) - 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 16px; /* 🔥 FIX ESPACIADO */
  }

  .hero__kicker {
    margin-bottom: 14px;
  }

  .hero__title {
    font-size: clamp(3rem, 12vw, 4.2rem);
    line-height: 0.95;
    margin-bottom: 10px;
  }

  .hero__subtitle {
    font-size: 1.55rem;
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .hero__text {
    font-size: 1rem;
    margin: 16px 0 24px;
  }

  .hero__actions,
  .hero__badges {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__badge,
  .btn {
    width: 100%;
  }

  .about__media,
  .location__map,
  .video__block {
    min-height: 340px;
  }

  .about__content,
  .location__panel {
    padding: 28px 22px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .about__title,
  .location__title {
    line-height: 1;
  }

  .footer__cta {
    padding: 22px 18px;
  }
}

/* =========================================================
   FLOATING BOOK BUTTON
========================================================= */
.floating-book {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1600;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 58px;
  padding: 0 20px 0 16px;
  border-radius: 999px;

  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05);

  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;

  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;

  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease,
    background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.floating-book.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.floating-book:hover {
  background: #0a0a0a;
  color: #ffffff;

  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5), 0 0 14px rgba(255, 255, 255, 0.08);
}

.floating-book__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.08);
  transition: background 0.35s ease, transform 0.35s ease;
}

.floating-book:hover .floating-book__icon {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.floating-book__text {
  font-size: 0.95rem;
  line-height: 1;
}

/* móvil */
@media (max-width: 700px) {
  .floating-book {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 18px 0 14px;
  }

  .floating-book__text {
    font-size: 0.9rem;
  }
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  position: relative;
  padding: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      transparent 30%
    ),
    #050505;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 1fr;
  gap: 26px;
  padding-bottom: 34px;
  align-items: start;
}

.footer__brand {
  max-width: 320px;
}

.footer__col {
  min-width: 0;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer__logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.footer__logo-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer__logo-tag {
  display: block;
  margin-top: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.footer__title {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.footer__text {
  margin: 0 0 18px;
}

.footer__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.footer__social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.footer__nav,
.footer__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer__nav a,
.footer__hours li {
  color: var(--muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__nav a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer__cta {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__cta .btn {
  width: 100%;
}

.footer__bottom {
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--muted-2);
  font-size: 0.92rem;
}

/* =========================================================
   REVEAL
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE GENERAL
========================================================= */
@media (max-width: 1100px) {
  .about__wrap,
  .location__wrap,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about__media,
  .location__map {
    min-height: 500px;
  }

  .footer__brand {
    max-width: 100%;
  }
}

/* =========================================================
   RESPONSIVE HEADER / MENU
========================================================= */
@media (max-width: 920px) {
  .site-header__cta,
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero__title {
    font-size: clamp(3.3rem, 10vw, 5rem);
  }

  .about__features,
  .follow__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   RESPONSIVE MOBILE
========================================================= */
@media (max-width: 700px) {
  :root {
    --header-h: 76px;
  }

  .section {
    padding: 84px 0;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 24px) 0 24px;
  }

  .hero__media,
  .hero__media img,
  .hero__overlay {
    height: 100%;
  }

  .hero__inner {
    width: 100%;
    min-height: calc(100dvh - var(--header-h) - 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 16px;
  }

  .hero__kicker {
    margin-bottom: 14px;
  }

  .hero__title {
    font-size: clamp(3rem, 12vw, 4.2rem);
    line-height: 0.95;
    margin-bottom: 10px;
  }

  .hero__subtitle {
    font-size: 1.55rem;
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .hero__text {
    font-size: 1rem;
    margin: 16px 0 24px;
  }

  .hero__actions,
  .hero__badges {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__badge,
  .btn {
    width: 100%;
  }

  .about__media,
  .location__map,
  .video__block {
    min-height: 340px;
  }

  .about__content,
  .location__panel {
    padding: 28px 22px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .section-title,
  .about__title,
  .location__title {
    line-height: 1;
  }

  /* ================= FOOTER MOBILE FIX ================= */
  .footer__grid {
    gap: 22px;
    text-align: center;
  }

  .footer__brand,
  .footer__col,
  .footer__cta {
    text-align: center;
    justify-self: center;
    width: 100%;
  }

  .footer__logo {
    justify-content: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__nav,
  .footer__hours {
    justify-items: center;
  }

  .footer__nav a:hover {
    transform: none;
  }

  .footer__cta {
    padding: 22px 18px;
    max-width: 420px;
  }

  .footer__bottom {
    text-align: center;
    line-height: 1.6;
  }
}

/* FOOTER RAM---------- */
/* footer */
.footer-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.footer-logo-link img {
  height: 35px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.footer-brand span {
  font-size: 0.85rem;
  line-height: 1;
}

.footer-separator {
  opacity: 0.6;
}

.footer-text {
  font-size: 0.85rem;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .footer-copy {
    flex-direction: column;
    gap: 8px;
  }

  .footer-separator {
    display: none;
  }

  .footer-logo-link img {
    height: 45px;
  }

  .site-footer__container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .site-footer__main {
    border-top: 2px solid #323232ac;
  }
}
