/* ============================================================
   VIBING IBIZA — Design System
   ============================================================ */

/* === TOKENS === */
:root {
  /* Colors */
  --white:        #ffffff;
  --black:        #050505;
  --cream:        #FFF3EC;
  --orange:       #F97316;
  --orange-dark:  #E86310;
  --pink:         #C40D5E;
  --pink-dark:    #A00B4E;
  --pink-light:   #F9E5F1;
  --header-bg:    #0D0D0D;
  --text:         #333333;
  --text-muted:   #6B7280;
  --text-faint:   #9CA3AF;
  --border:       #E5E7EB;
  --blue-dot:     #3B82F6;
  --card-bg:      #ffffff;
  --card-shadow:  0 2px 12px rgba(0,0,0,0.08);

  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body:    'Satoshi', 'Outfit', system-ui, sans-serif;

  /* Sizes */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.5rem;
  --text-8xl:  6rem;

  /* Layout */
  --max-w:        1280px;
  --pad-x:        clamp(1.25rem, 5vw, 3rem);
  --section-py:   clamp(4rem, 8vw, 7rem);
  --header-h:     118px;

  /* Misc */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 9999px;
  --transition:  220ms ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.1; color: var(--black); }

/* === LAYOUT === */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad-x); }
.site-main { min-height: 60vh; }

/* === TYPOGRAPHY === */
.heading-xl  { font-size: clamp(var(--text-5xl), 8vw, var(--text-8xl)); font-weight: 400; }
.heading-lg  { font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl)); font-weight: 400; }
.heading-md  { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); font-weight: 600; }
.heading-sm  { font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl)); font-weight: 600; }

/* === SECTION LABEL (pill con punto azul) === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px 5px 10px;
  border: 1.33px solid #333333;
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  background: #F5F5F5;
}
.section-label::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-dot);
  flex-shrink: 0;
}
.section-label--orange::before { background: var(--orange); }
.section-label--pink::before   { background: var(--pink); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 14px 18px 15px;
  border-radius: 16px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  white-space: normal;
  text-align: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn--pink  { background: var(--pink);   color: var(--white); }
.btn--pink:hover  { background: var(--pink-dark); transform: translateY(-1px); }
.btn--white { background: var(--white);  color: var(--black); border: 1px solid var(--border); }
.btn--white:hover { background: #f3f4f6; }
.btn--outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }
.btn--orange { background: var(--orange); color: var(--white); }
.btn--orange:hover { background: var(--orange-dark); }

/* === QUICK LINKS (hero bottom) === */
.quick-links {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px dashed rgba(255,255,255,0.3);
}
.quick-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  padding: 1rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white);
  border-right: 1px dashed rgba(255,255,255,0.3);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.quick-link:last-child { border-right: none; }
.quick-link:hover { color: var(--pink); }
.quick-link__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 11px;
  flex-shrink: 0;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  background: var(--header-bg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
/* Non-homepage: always dark */
body:not(.home) .site-header {
  background: var(--header-bg);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo a { display: flex; align-items: center; }
.site-header__logo img,
.site-header__logo .custom-logo { height: 76px; width: auto; display: block; }
.site-header__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 1rem; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  background: rgba(38, 30, 28, 0.18);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 5px;
}
.site-nav__item { position: relative; }
.site-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  padding: 13px 20px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.site-nav__link:hover {
  color: var(--white);
  background: var(--pink);
}
.site-nav__item.current-menu-item > .site-nav__link,
.site-nav__item.is-active > .site-nav__link {
  color: var(--white);
  background: var(--pink);
  border-radius: 8px;
}
body.page-template-page-servicios .site-header {
  background: var(--header-bg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
body.page-template-page-servicios .site-header__inner {
  padding: 0;
}
body.page-template-page-servicios .site-header__logo {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
body.page-template-page-servicios .site-header__logo img,
body.page-template-page-servicios .site-header__logo .custom-logo {
  height: 76px;
}
body.page-template-page-servicios .site-nav__list {
  background: rgba(38, 30, 28, 0.18);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 5px;
}
body.page-template-page-servicios .site-nav__link {
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  padding: 13px 20px;
}
body.page-template-page-servicios .site-nav__link:hover,
body.page-template-page-servicios .site-nav__item.current-menu-item > .site-nav__link,
body.page-template-page-servicios .site-nav__item.is-active > .site-nav__link {
  color: var(--white);
  background: var(--pink);
}

/* Nav CTA button — hidden to match live site */
.site-nav__cta { display: none; }

/* Dropdown */
.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.site-nav__dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text);
  transition: background var(--transition);
}
.site-nav__dropdown a:hover { background: var(--cream); }

/* Language switcher */
.lang-switch { position: relative; flex-shrink: 0; }
.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 16px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(38, 30, 28, 0.18);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.lang-switch__btn:hover,
.lang-switch.is-open .lang-switch__btn {
  color: var(--white);
  background: var(--pink);
}
.lang-switch__caret {
  font-size: 12px;
  transition: transform var(--transition);
}
.lang-switch.is-open .lang-switch__caret { transform: rotate(180deg); }
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: flex;
  flex-direction: column;
  min-width: 96px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 10;
}
.lang-switch.is-open .lang-switch__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-switch__option {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: background var(--transition), color var(--transition);
}
.lang-switch__option:hover { background: var(--cream); }
.lang-switch__option.is-active { background: var(--pink); color: var(--white); }

/* Mobile toggle */
.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 10;
}
.site-header__toggle-bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* === FOOTER === */
.site-footer { background: var(--white); }

/* "Ready to Vibe?" — sección naranja */
.footer-cta { background: var(--orange); padding: clamp(3rem, 6vw, 5rem) 0; }
.footer-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-cta__text { display: flex; flex-direction: column; gap: 1rem; }
.footer-cta__heading {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  color: var(--white);
  font-weight: 400;
  line-height: 1.05;
}
.footer-cta__desc { color: rgba(255,255,255,0.85); font-size: var(--text-lg); max-width: 38ch; }

/* Cards */
.footer-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-self: start; }
.footer-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; }

/* Card 1 — navegación */
.footer-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.footer-card__logo { display: flex; align-items: center; }
.footer-card__logo a,
.footer-card__logo .custom-logo-link { display: flex; align-items: center; }
.footer-card__logo img,
.footer-card__logo .custom-logo { height: 44px; width: auto; display: block; }
.footer-card__logo-text { font-family: var(--font-heading); font-weight: 800; font-size: var(--text-xl); }
.footer-card__back {
  font-size: var(--text-xs) !important;
  padding: 6px 12px !important;
  border-radius: var(--radius-pill) !important;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-card__nav { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem 0.75rem; }
.footer-card__nav-group { display: flex; flex-direction: column; gap: 5px; }
.footer-card__nav-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.footer-card__nav a { font-size: var(--text-sm); color: var(--text); transition: color var(--transition); }
.footer-card__nav a:hover { color: var(--pink); }

/* Card 2 — plan destacado */
.footer-plan-card { display: flex; flex-direction: column; gap: 1rem; }
.footer-plan-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.footer-plan-card__label { font-size: var(--text-xs); font-weight: 600; color: var(--text-muted); margin-bottom: 2px; }
.footer-plan-card__title { font-size: var(--text-base); font-weight: 700; }
.footer-plan-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: var(--text-xs);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-plan-card__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-dot);
  display: block;
}
.footer-plan-card__img { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; flex: 1; }
.footer-plan-card__img img { width: 100%; height: 100%; object-fit: cover; }
.footer-plan-card__cta { text-align: center; justify-content: center; }

/* Copyright strip */
.footer-bottom { padding: 1.25rem 0; border-top: 1px solid var(--border); }
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom__copy { font-size: var(--text-sm); color: var(--text-muted); }
.footer-bottom__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom__legal a { font-size: var(--text-sm); color: var(--text-muted); transition: color var(--transition); }
.footer-bottom__legal a:hover { color: var(--pink); }

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-cta__inner { grid-template-columns: 1fr; }
  .footer-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .footer-card__nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .footer-bottom__legal { justify-content: center; }
}

/* === HOME — HERO === */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--header-bg);
}
.home-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.55) 100%);
}
.home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100svh;
  padding-top: var(--header-h);
}
.home-hero__top {
  padding: 3rem 0 2rem;
}
.home-hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 2rem;
}
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.home-hero__subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  max-width: 48ch;
  line-height: 1.6;
  padding-bottom: 2rem;
}
.home-hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(5,5,5,0.25);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 10px 16px 11px;
}

/* Quick links debajo del hero */
.home-hero__quick { position: relative; z-index: 1; background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); margin-top: 2rem; }

/* === HOME — ABOUT CATEGORY CTAs === */
.home-about__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.home-about__cats .btn {
  font-size: var(--text-sm);
  padding: 10px 16px 11px;
  border-radius: 12px;
}

/* === HOME — ABOUT === */
.home-about { background: var(--white); padding: var(--section-py) 0; }
.home-about__header {
  text-align: center;
  margin-bottom: 1rem;
}
.home-about__badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.home-about__title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: 400;
  text-align: center;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.home-about__highlight {
  display: inline-block;
  background: #FDEBD7;
  border-radius: var(--radius-sm);
  padding: 0 0.2em;
}
.home-about__divider {
  width: 120px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 6px, transparent 6px, transparent 12px);
  margin: 0 auto 3rem;
}
.home-about__body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.home-about__text { display: flex; flex-direction: column; gap: 1.25rem; }
.home-about__text p { color: var(--text-muted); font-size: var(--text-base); }
.home-about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.home-about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.home-about__img:first-child { grid-row: 1 / 3; }
.home-about__img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.home-about__img:first-child img { aspect-ratio: unset; height: 100%; }
.home-about__img-label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* === HOME — EXPERIENCES === */
.home-experiences { background: var(--cream); padding: var(--section-py) 0; }
.home-experiences__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.home-experiences__title { font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl)); font-weight: 400; }
.home-experiences__desc { color: var(--text-muted); font-size: var(--text-lg); }
.home-experiences__search {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--card-shadow);
}
.home-experiences__search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: var(--text-base);
  background: transparent;
  color: var(--text);
}
.home-experiences__search-input::placeholder { color: var(--text-faint); }

/* Cards de experiencias */
.experiences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.experience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.experience-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.experience-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem 0.5rem;
}
.experience-card__title { font-size: var(--text-base); font-weight: 700; }
.experience-card__location { font-size: var(--text-sm); color: var(--text-muted); margin-top: 2px; }
.experience-card__spots {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.experience-card__spots::before { content:''; width:8px;height:8px;border-radius:50%;background:var(--orange);display:block; }
.experience-card__img { aspect-ratio: 4/3; overflow: hidden; }
.experience-card__img img { width:100%;height:100%;object-fit:cover;transition:transform var(--transition); }
.experience-card:hover .experience-card__img img { transform:scale(1.04); }
.experience-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
  flex-wrap: wrap;
}
.experience-card__meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.experience-card__tag {
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* === HOME — TESTIMONIALS === */
.home-testimonials { background: var(--white); padding: var(--section-py) 0; }
.home-testimonials__big-heading {
  font-size: clamp(var(--text-4xl), 8vw, var(--text-8xl));
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.0;
}
.home-testimonials__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.home-testimonials__text { display: flex; flex-direction: column; gap: 1.25rem; }
.home-testimonials__quote {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
}
.home-testimonials__img { border-radius: var(--radius-lg); overflow: hidden; }
.home-testimonials__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: grayscale(100%); }

/* === HOME — GALLERY === */
.home-gallery { background: var(--white); padding: var(--section-py) 0; }
.home-gallery__header { text-align: center; margin-bottom: 3rem; }
.home-gallery__title { font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl)); font-weight: 400; margin-top: 1rem; }
.gallery-fan {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-end;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1.5rem 0 2.5rem;
}
.gallery-fan__item {
  flex-shrink: 0;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition);
}
.gallery-fan__item:nth-child(1) { transform: rotate(-8deg) translateY(20px); }
.gallery-fan__item:nth-child(2) { transform: rotate(-4deg) translateY(10px); }
.gallery-fan__item:nth-child(3) { transform: rotate(0deg) translateY(0); }
.gallery-fan__item:nth-child(4) { transform: rotate(4deg) translateY(10px); }
.gallery-fan__item:nth-child(5) { transform: rotate(8deg) translateY(20px); }
.gallery-fan__item:hover { transform: rotate(0) translateY(-10px) scale(1.05); z-index: 10; }
.gallery-fan__img { aspect-ratio: 3/4; }
.gallery-fan__img img { width:100%;height:100%;object-fit:cover; }
.gallery-fan__caption {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.home-gallery__footer {
  text-align: center;
  margin-top: 3rem;
}
.home-gallery__desc {
  color: var(--text-muted);
  font-size: var(--text-base);
  max-width: 52ch;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* === HOME — BLOG === */
.home-blog { background: var(--cream); padding: var(--section-py) 0; }
.home-blog__header { text-align: center; margin-bottom: 3rem; }
.home-blog__title { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); font-weight: 400; margin-top: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img img { width:100%;height:100%;object-fit:cover;transition:transform var(--transition); }
.blog-card:hover .blog-card__img img { transform:scale(1.04); }
.blog-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.blog-card__title { font-size: var(--text-base); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.3; }
.blog-card__title a:hover { color: var(--pink); }
.blog-card__excerpt { font-size: var(--text-sm); color: var(--text-muted); flex: 1; }
.home-blog__cta { text-align: center; margin-top: 1rem; }

/* === HOME — CONTACT === */
.home-contact { background: var(--cream); padding: var(--section-py) 0; }
.home-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.home-contact__form { padding: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.home-contact__title { font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl)); font-weight: 700; }
.home-contact__desc { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0; }
.form-field input,
.form-field textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-faint); }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--pink); }
.form-field textarea { resize: vertical; min-height: 120px; }
.home-contact__img { position: relative; overflow: hidden; }
.home-contact__img img { width:100%;height:100%;object-fit:cover; }
.home-contact__quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 2rem 1.5rem 1.5rem;
  color: var(--white);
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.5;
}

/* === SERVICES LANDING PAGE === */
.svc-page { padding-top: var(--header-h); }

/* Hero */
.svc-hero {
  background: var(--white);
  padding: clamp(4.5rem, 8vw, 6.75rem) 0 1rem;
}
.svc-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.svc-hero__title {
  font-size: clamp(5rem, 8.7vw, 8.75rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.01;
  letter-spacing: 0;
}
.svc-hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.65rem;
  padding-top: 1rem;
}
.svc-hero__desc { color: var(--text); font-size: 18px; line-height: 1.55; max-width: 43ch; }
.svc-hero__img {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.svc-hero__img img {
  width: 100%;
  height: clamp(260px, 31vw, 420px);
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

/* Tabs */
.svc-tabs {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.svc-tabs__nav {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.svc-tabs__nav::-webkit-scrollbar { display: none; }
.svc-tabs__tab {
  flex-shrink: 0;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.svc-tabs__tab:hover { background: var(--cream); }
.svc-tabs__tab.is-active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

/* Category sections */
.svc-cat {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.svc-cat--alt { background: var(--cream); }
.svc-cat__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
}
.svc-cat__left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 70px);
}
.svc-cat__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
}
.svc-cat__desc { color: var(--text-muted); font-size: var(--text-sm); line-height: 1.75; }

/* Service item grid */
.svc-cat__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.svc-cat__track.is-hidden { display: none; }
.svc-cat__item { display: flex; flex-direction: column; gap: 0.5rem; }
.svc-cat__item-img {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--border);
}
.svc-cat__item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.svc-cat__item-img:hover img { transform: scale(1.05); }
.svc-cat__item-placeholder { width: 100%; height: 100%; background: #e5e7eb; }
.svc-cat__item-name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
}

/* Slider dots */
.svc-cat__dots {
  display: flex;
  gap: 6px;
  margin-top: 1.25rem;
  justify-content: center;
}
.svc-cat__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  padding: 0;
}
.svc-cat__dot.is-active { background: var(--pink); transform: scale(1.3); }
.svc-cat__fallback-img { border-radius: var(--radius-lg); overflow: hidden; }
.svc-cat__fallback-img img { width: 100%; object-fit: cover; }
.svc-cat__empty { display: flex; align-items: center; justify-content: center; min-height: 200px; color: var(--text-faint); font-size: var(--text-sm); }

@media (max-width: 1024px) {
  .svc-cat__inner { grid-template-columns: 1fr; gap: 2rem; }
  .svc-cat__left { position: static; }
}
@media (max-width: 768px) {
  .svc-hero__inner { grid-template-columns: 1fr; }
  .svc-hero__title { font-size: 4.25rem; }
  .svc-hero__desc { font-size: var(--text-base); }
  .svc-hero__img { border-radius: 18px; }
  .svc-cat__track { grid-template-columns: repeat(2, 1fr); }
}

/* "Qué ofrecemos" — bloque texto + imagen en páginas de categoría */
.svc-cat-about { background: var(--cream); padding: clamp(3rem, 6vw, 5rem) 0; }
.svc-cat-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.svc-cat-about__text { display: flex; flex-direction: column; gap: 1.25rem; }
.svc-cat-about__heading { font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl)); font-weight: 700; color: var(--black); }
.svc-cat-about__text p { color: var(--text-muted); font-size: var(--text-base); line-height: 1.7; }
.svc-cat-about__img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--border); }
.svc-cat-about__img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .svc-cat-about__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* "Elige tu plan perfecto" — grid de servicios de la categoría */
.plan-section { padding: clamp(3rem, 6vw, 5rem) 0; background: var(--white); }
.plan-section__heading { font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl)); font-weight: 700; margin-bottom: 2rem; }
.plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 2vw, 1.75rem); }
.plan-card { display: flex; flex-direction: column; min-width: 0; gap: 1rem; }
.plan-card__img { display: block; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; background: var(--border); }
.plan-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.plan-card__img:hover img { transform: scale(1.05); }
.plan-card__footer { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 0.75rem; }
.plan-card__name { min-width: 0; font-size: var(--text-sm); font-weight: 600; line-height: 1.25; color: var(--text); overflow-wrap: anywhere; }
.plan-card__footer .btn { flex-shrink: 0; min-height: 44px; padding: 0.7rem 1.15rem; border-radius: 14px; font-size: var(--text-sm); }
@media (max-width: 900px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card__footer { grid-template-columns: 1fr; align-items: stretch; }
  .plan-card__footer .btn { width: 100%; }
}

/* === SERVICE CATEGORY PAGE === */
.service-category { padding-top: var(--header-h); }
.service-category__hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--header-bg);
}
.service-category__hero-bg { position:absolute;inset:0; }
.service-category__hero-bg img { width:100%;height:100%;object-fit:cover; }
.service-category__hero-overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.75) 0%,rgba(0,0,0,0.2) 70%,transparent 100%); }
.service-category__hero-content { position:relative;z-index:1;padding-bottom:3rem; }
.service-category__title { font-size:clamp(var(--text-4xl),6vw,var(--text-6xl));color:var(--white);margin-top:1rem; }
.service-category__desc { color:rgba(255,255,255,0.8);max-width:55ch;margin-top:0.75rem;font-size:var(--text-lg); }

.service-category__content { background:var(--cream);padding:var(--section-py) 0; }
.services-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.25rem; }

/* Service card */
.service-card {
  background:var(--white);border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--card-shadow);
  transition:transform var(--transition),box-shadow var(--transition);
  display:flex;flex-direction:column;
}
.service-card:hover { transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,0.12); }
.service-card__img { aspect-ratio:16/9;overflow:hidden; }
.service-card__img img { width:100%;height:100%;object-fit:cover;transition:transform var(--transition); }
.service-card:hover .service-card__img img { transform:scale(1.04); }
.service-card__body { padding:1.25rem;display:flex;flex-direction:column;gap:0.75rem;flex:1; }
.service-card__title { font-size:var(--text-xl);font-weight:700; }
.service-card__title a:hover { color:var(--pink); }
.service-card__desc { font-size:var(--text-sm);color:var(--text-muted);flex:1; }
.service-card__actions { display:flex;gap:0.75rem;margin-top:auto; }

/* === SINGLE SERVICE === */
.service-single { padding-top: var(--header-h); }
.service-single__hero {
  position:relative;height:65vh;min-height:420px;
  display:flex;align-items:flex-end;overflow:hidden;background:var(--header-bg);
}
.service-single__hero-bg { position:absolute;inset:0; }
.service-single__hero-bg img { width:100%;height:100%;object-fit:cover; }
.service-single__hero-overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.85) 0%,rgba(0,0,0,0.3) 60%,transparent 100%); }
.service-single__hero-content { position:relative;z-index:1;padding-bottom:3rem;max-width:65ch; }
.service-single__cat { font-size:var(--text-xs);font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.7);margin-bottom:0.75rem; }
.service-single__title { font-size:clamp(var(--text-4xl),6vw,var(--text-6xl));color:var(--white);margin-bottom:1.25rem; }
.service-single__intro { color:rgba(255,255,255,0.8);font-size:var(--text-lg);margin-bottom:1.5rem; }

.service-single__body { background:var(--cream);padding:var(--section-py) 0 2.5rem; }
.service-single__body-inner { display:grid;grid-template-columns:1fr 340px;gap:3rem;align-items:start; }
.service-single__content.wysiwyg { background:var(--white);border-radius:var(--radius-lg);padding:2.5rem; }
.service-single__sidebar { display:flex;flex-direction:column;gap:1.5rem;position:sticky;top:calc(var(--header-h)+1.5rem); }
.sidebar-card { background:var(--white);border-radius:var(--radius-lg);padding:1.5rem; }
.sidebar-card__title { font-size:var(--text-base);font-weight:700;margin-bottom:1rem; }
.sidebar-card__list { display:flex;flex-direction:column;gap:0.75rem; }
.sidebar-card__list li { font-size:var(--text-sm);color:var(--text-muted);display:flex;align-items:flex-start;gap:0.5rem; }
.sidebar-card__list li::before { content:'✓';color:var(--pink);font-weight:700;flex-shrink:0; }

/* === SERVICE HIGHLIGHT === */
.service-highlight { background:var(--cream);padding:var(--section-py) 0; }
.service-highlight__inner { display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center; }
.service-highlight__media { position:relative; }
.service-highlight__img { aspect-ratio:4/3;border-radius:var(--radius-lg);overflow:hidden; }
.service-highlight__img img { width:100%;height:100%;object-fit:cover; }
.service-highlight__stats {
  display:flex;position:absolute;bottom:1.25rem;left:1rem;right:1rem;
  background:rgba(5,5,5,0.72);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-radius:var(--radius-md);overflow:hidden;
}
.service-highlight__stat { flex:1;padding:0.875rem 0.75rem;text-align:center;border-right:1px solid rgba(255,255,255,0.1); }
.service-highlight__stat:last-child { border-right:none; }
.service-highlight__stat-num { display:block;font-size:var(--text-xl);font-weight:700;color:var(--white);line-height:1.1; }
.service-highlight__stat-label { display:block;font-size:var(--text-xs);color:rgba(255,255,255,0.55);text-transform:uppercase;letter-spacing:0.05em;margin-top:2px; }
.service-highlight__content { display:flex;flex-direction:column;gap:1.5rem; }
.service-highlight__heading { font-size:clamp(var(--text-2xl),3vw,var(--text-4xl));color:var(--black);line-height:1.15; }
.service-highlight__body.wysiwyg h3 { font-size:var(--text-lg);margin-block:1.25rem 0.4rem;color:var(--black); }
.service-highlight__embedded {
  margin-top:1.5rem;padding-top:0;border-top:0;
}
.service-highlight__embedded .service-highlight__heading {
  max-width:22ch;margin-bottom:1.5rem;
  font-size:clamp(1.75rem,3vw,2.5rem);line-height:1.12;letter-spacing:-0.025em;
}
.service-highlight__embedded .service-highlight__body {
  max-width:72ch;
}
.service-highlight__embedded .service-highlight__body h3 {
  position:relative;margin:2.25rem 0 0.65rem;padding-left:1rem;
  font-size:clamp(1.05rem,1.5vw,1.25rem);line-height:1.3;color:var(--black);
}
.service-highlight__embedded .service-highlight__body h3::before {
  content:'';position:absolute;left:0;top:0.12em;bottom:0.12em;width:4px;
  border-radius:var(--radius-pill);background:var(--pink);
}
.service-highlight__embedded .service-highlight__body p {
  margin:0;color:var(--text-muted);font-size:var(--text-base);line-height:1.75;
}
.service-highlight__embedded .service-highlight__body > p:first-child {
  font-size:1.05rem;line-height:1.8;color:var(--black);
}
.service-highlight__cta {
  display:flex;width:fit-content;min-width:0;margin:2.5rem auto 0;
  padding:0.8rem 1.5rem;align-items:center;justify-content:center;
  color:var(--white) !important;font-size:var(--text-sm);font-weight:700;
  line-height:1.2;text-align:center;white-space:nowrap;text-decoration:none !important;
  border-radius:0 0.75rem 0.75rem 0.75rem;box-shadow:none;
}
.service-highlight__cta:link,
.service-highlight__cta:visited,
.service-highlight__cta:focus,
.service-highlight__cta:active {
  color:var(--white) !important;text-decoration:none !important;
}
.service-highlight__cta:hover {
  color:var(--white) !important;transform:translateY(-1px);
  box-shadow:none;text-decoration:none !important;
}

/* === SERVICE FLEET === */
.service-fleet { background:var(--white);padding:4.5rem 0 var(--section-py); }
.service-fleet__heading {
  max-width:28ch;margin:0 auto 3rem;
  font-size:clamp(var(--text-2xl),3vw,var(--text-4xl));line-height:1.15;
  text-align:center;letter-spacing:-0.025em;
}
.service-fleet__grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem; }
.boat-card { background:var(--cream);border-radius:var(--radius-lg);overflow:hidden;display:flex;flex-direction:column;transition:box-shadow var(--transition); }
.boat-card:hover { box-shadow:0 8px 32px rgba(0,0,0,0.12); }
.boat-card__img { aspect-ratio:4/3;overflow:hidden; }
.boat-card__img img { width:100%;height:100%;object-fit:cover;transition:transform 0.4s ease; }
.boat-card:hover .boat-card__img img { transform:scale(1.04); }
.boat-card__body { padding:1.5rem;display:flex;flex-direction:column;flex:1;gap:0.75rem; }
.boat-card__meta { display:flex;gap:0.5rem;flex-wrap:wrap; }
.boat-card__badge { display:inline-flex;align-items:center;font-size:var(--text-xs);font-weight:600;letter-spacing:0.05em;text-transform:uppercase;padding:3px 10px;border-radius:var(--radius-pill);background:var(--pink-light);color:var(--pink); }
.boat-card__badge--pax { background:rgba(59,130,246,0.10);color:var(--blue-dot); }
.boat-card__title { font-size:var(--text-lg);font-weight:700;color:var(--black);line-height:1.25; }
.boat-card__desc { font-size:var(--text-sm);color:var(--text-muted);flex:1; }
.boat-card .btn { margin-top:auto;align-self:flex-start; }

/* === SERVICE FAQ === */
.service-faq { background:var(--cream);padding:var(--section-py) 0; }
.service-faq__heading { font-size:clamp(var(--text-2xl),3vw,var(--text-4xl));text-align:center;margin-bottom:2.5rem; }
.service-faq__list { max-width:800px;margin-inline:auto; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-item summary {
  list-style:none;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1.25rem 0;font-weight:600;font-size:var(--text-base);color:var(--black);
  user-select:none;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
  content:'';display:block;width:20px;height:20px;flex-shrink:0;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C40D5E'%3E%3Cpath fill-rule='evenodd' d='M5.22 8.22a.75.75 0 0 1 1.06 0L10 11.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L5.22 9.28a.75.75 0 0 1 0-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
  transition:transform var(--transition);
}
.faq-item[open] summary::after { transform:rotate(180deg); }
.faq-item[open] summary { color:var(--pink); }
.faq-item__answer { padding:0 0 1.25rem;font-size:var(--text-sm);color:var(--text-muted);line-height:1.7; }

/* === YACHT SERVICE LANDING === */
.yacht-page {
  padding-top: var(--header-h);
  background: var(--white);
}
.yacht-page .container {
  max-width: 1320px;
}
.yacht-hero,
.yacht-experience {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.yacht-hero__grid,
.yacht-experience__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.yacht-hero__copy,
.yacht-experience__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.yacht-hero h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.8rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.yacht-hero p,
.yacht-experience p,
.yacht-contact p {
  max-width: 42ch;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.65;
}
.yacht-hero .btn,
.yacht-experience .btn {
  margin-top: 1.5rem;
}
.yacht-hero__media,
.yacht-experience__media,
.yacht-include-card__media {
  overflow: hidden;
  background: var(--border);
}
.yacht-hero__media {
  min-height: 360px;
  border-radius: 32px;
}
.yacht-hero__media img,
.yacht-experience__media img,
.yacht-include-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yacht-experience__grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.35fr);
  grid-template-areas: "media copy";
  align-items: center;
}
.yacht-experience__copy {
  grid-area: copy;
  transform: translateY(-1.25rem);
}
.yacht-experience__media {
  grid-area: media;
  transform: translateY(1.25rem);
}
.yacht-experience h2 {
  max-width: 17ch;
  margin: 1.5rem 0;
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.yacht-experience__copy p + p {
  margin-top: 1rem;
}
.yacht-experience__price {
  margin-top: 1.25rem !important;
  color: var(--black) !important;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem) !important;
  font-weight: 500;
}
.yacht-experience__media {
  min-height: 340px;
  border-radius: 24px;
}
.yacht-includes {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--cream);
}
.yacht-includes__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.78fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  grid-template-areas: "copy media";
}
.yacht-includes__copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.yacht-includes__media {
  grid-area: media;
  overflow: hidden;
  background: var(--border);
  min-height: 340px;
  border-radius: 24px;
}
.yacht-includes__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yacht-includes h2 {
  max-width: 17ch;
  margin: 1.5rem 0;
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.yacht-includes__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: var(--text);
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  line-height: 1.45;
  margin: 1.5rem 0;
}
.yacht-includes__list li {
  display: flex;
  gap: 0.65rem;
}
.yacht-includes__list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.55em;
  border-radius: 50%;
  background: var(--pink);
  flex: 0 0 auto;
}
.yacht-includes__copy .btn {
  margin-top: 1.5rem;
}
.yacht-seo {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}
.yacht-seo__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.yacht-seo h2,
.yacht-fleet h2,
.yacht-faq h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.yacht-seo__content {
  max-width: 760px;
}
.yacht-seo__content h2,
.yacht-seo__content h3 {
  margin-block: 2rem 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
}
.yacht-seo__content p {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.8;
}
.yacht-seo__content .btn {
  margin-top: 1.5rem;
}
.yacht-fleet {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--cream);
}
.yacht-fleet h2 {
  max-width: 12ch;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.yacht-fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.yacht-fleet-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--card-shadow);
}
.yacht-fleet-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--border);
}
.yacht-fleet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yacht-fleet-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}
.yacht-fleet-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.yacht-fleet-card__meta span {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--pink-light);
  color: var(--pink);
  font-size: var(--text-xs);
  font-weight: 700;
}
.yacht-fleet-card h3 {
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  line-height: 1.2;
}
.yacht-fleet-card p {
  flex: 1;
  color: var(--text-muted);
  font-size: var(--text-sm);
}
.yacht-fleet-card .btn {
  align-self: flex-start;
}
.yacht-faq {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}
.yacht-faq h2 {
  max-width: 15ch;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.yacht-faq__list {
  max-width: 840px;
  margin-inline: auto;
}
.yacht-contact {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
}
.yacht-contact__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}
.yacht-contact h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.yacht-quote {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: var(--cream);
  text-align: center;
}
.yacht-quote h2 {
  max-width: 18ch;
  margin: 0 auto;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

@media (max-width: 1024px) {
  .yacht-hero__grid,
  .yacht-experience__grid,
  .yacht-contact__inner {
    grid-template-columns: 1fr;
  }
  .yacht-experience__grid {
    grid-template-areas:
      "copy"
      "media";
  }
  .yacht-experience__copy,
  .yacht-experience__media {
    transform: none;
  }
  .yacht-includes__grid {
    grid-template-columns: 1fr;
  }
  .yacht-seo__grid,
  .yacht-fleet__grid {
    grid-template-columns: 1fr;
  }
  .yacht-include-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) 1fr;
    align-items: center;
  }
  .yacht-include-card .btn {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .yacht-hero,
  .yacht-experience,
  .yacht-contact {
    padding: 2.5rem 0;
  }
  .yacht-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }
  .yacht-hero__media,
  .yacht-experience__media {
    min-height: 260px;
  }
  .yacht-include-card {
    display: flex;
  }
  .yacht-include-card .btn {
    grid-column: auto;
  }
}

/* === BLOG ARCHIVE === */
.archive-page { padding-top:var(--header-h); }
.archive-page__header { background:var(--header-bg);padding:4rem 0 3rem;text-align:center; }
.archive-page__title { font-size:clamp(var(--text-4xl),6vw,var(--text-6xl));color:var(--white); }
.archive-page__content { background:var(--cream);padding:var(--section-py) 0; }

/* === BLOG PAGE (page-blog.php) === */
.blog-page { padding-top:var(--header-h); }
.blog-page__hero { background:var(--cream);padding:4rem 0 3rem; }
.blog-page__hero-inner { display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;gap:2rem; }
.blog-page__hero-head { display:flex;flex-direction:column;gap:1rem; }
.blog-page__title { font-size:clamp(var(--text-4xl),6vw,var(--text-6xl));font-weight:400; }
.blog-page__desc { max-width:380px;color:var(--text-muted); }
.blog-page__desc p { margin:0; }
.blog-page__content { background:var(--cream);padding-bottom:var(--section-py); }

.blog-featured {
  display:flex;
  flex-wrap:wrap;
  background:var(--card-bg);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--card-shadow);
  margin-bottom:2.5rem;
}
.blog-featured__img { flex:1 1 380px;min-height:320px; }
.blog-featured__img img { width:100%;height:100%;object-fit:cover; }
.blog-featured__body { flex:1 1 380px;display:flex;flex-direction:column;justify-content:center;gap:1rem;padding:2.5rem; }
.blog-featured__title { font-size:clamp(var(--text-2xl),3vw,var(--text-4xl));font-weight:400; }
.blog-featured__title a:hover { color:var(--pink); }
.blog-featured__excerpt { color:var(--text-muted); }

/* === SINGLE POST === */
.single-post { padding-top:var(--header-h); }
.single-post__hero { height:55vh;min-height:350px;overflow:hidden;background:var(--header-bg); }
.single-post__hero img { width:100%;height:100%;object-fit:cover; }
.single-post__header { background:var(--white);padding:3rem 0 2rem; }
.single-post__meta { font-size:var(--text-xs);text-transform:uppercase;letter-spacing:0.1em;color:var(--text-muted);margin-bottom:1rem; }
.single-post__title { font-size:clamp(var(--text-3xl),5vw,var(--text-6xl));font-weight:800; }
.single-post__body { padding:var(--section-py) 0;background:var(--cream); }
.single-post__body .container { max-width:760px; }

/* === PAGE (genérica) === */
.page-generic { padding-top:var(--header-h); }
.page-generic__header { background:var(--header-bg);padding:4rem 0;text-align:center; }
.page-generic__title { font-size:clamp(var(--text-4xl),6vw,var(--text-6xl));color:var(--white); }
.page-generic__body { background:var(--cream);padding:var(--section-py) 0; }
.page-generic__body .container { max-width:860px; }

/* === WYSIWYG === */
.wysiwyg { color:var(--text); }
.wysiwyg h2 { font-size:var(--text-2xl);margin-block:2rem 0.75rem;color:var(--black); }
.wysiwyg h3 { font-size:var(--text-xl);margin-block:1.5rem 0.5rem; }
.wysiwyg p { margin-bottom:1rem;color:var(--text-muted); }
.wysiwyg ul,.wysiwyg ol { padding-left:1.5rem;margin-bottom:1rem; }
.wysiwyg li { margin-bottom:0.5rem;color:var(--text-muted); }
.wysiwyg a { color:var(--pink);text-decoration:underline; }
.wysiwyg strong { font-weight:700;color:var(--black); }
.wysiwyg blockquote { border-left:3px solid var(--pink);padding-left:1.5rem;margin-block:2rem;font-style:italic;color:var(--text-muted);font-size:var(--text-lg); }

/* === BREADCRUMB === */
.breadcrumb { display:flex;align-items:center;gap:0.5rem;font-size:var(--text-xs);text-transform:uppercase;letter-spacing:0.08em;color:rgba(255,255,255,0.6);margin-bottom:0.75rem; }
.breadcrumb a:hover { color:var(--white); }

/* === PAGINATION === */
.nav-links { display:flex;justify-content:center;gap:0.5rem;padding:3rem 0; }
.page-numbers { display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding-inline:0.75rem;border:1px solid var(--border);border-radius:var(--radius-pill);font-size:var(--text-sm);color:var(--text-muted);transition:border-color var(--transition),color var(--transition),background var(--transition); }
.page-numbers:hover,.page-numbers.current { border-color:var(--pink);color:var(--white);background:var(--pink); }

/* === 404 === */
.page-404 { min-height:80vh;display:flex;align-items:center;padding-top:var(--header-h); }
.page-404__inner { text-align:center;display:flex;flex-direction:column;align-items:center;gap:1.5rem; }
.page-404__code { font-size:8rem;font-weight:800;color:var(--pink);line-height:1; }

/* === RESPONSIVE === */
@media (max-width:1024px) {
  .site-header__inner { gap: 1rem; }
  .site-nav__link { padding-inline: 12px; font-size: 17px; }
  .home-about__body { grid-template-columns:1fr; }
  .home-about__images {
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:0.75rem;
  }
  .home-about__img:first-child { grid-row:auto; }
  .home-about__img,
  .home-about__img:first-child { min-height:220px; }
  .home-about__img img,
  .home-about__img:first-child img { aspect-ratio:4/3;height:100%; }
  .home-experiences__header { grid-template-columns:1fr; }
  .home-testimonials__body { grid-template-columns:1fr; }
  .home-contact__inner { grid-template-columns:1fr; }
  .home-contact__img { display:none; }
  .service-single__body-inner { grid-template-columns:1fr; }
  .service-single__sidebar { position:static; }
  .service-highlight__inner { grid-template-columns:1fr; }
  .service-fleet__grid { grid-template-columns:1fr 1fr; }
  .footer-cta__inner { grid-template-columns:1fr; }
  .footer-cards { grid-template-columns:1fr; }
  .experiences-grid { grid-template-columns:1fr 1fr; }
  .blog-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:768px) {
  :root { --header-h:64px; }
  body { overflow-x:hidden; }
  .container { padding-inline:1rem; }
  .btn { min-height:44px; padding-inline:16px; }
  .site-header { background: var(--header-bg); }
  .site-header__logo img,
  .site-header__logo .custom-logo { height:48px; }
  body.page-template-page-servicios .site-header { background: var(--header-bg); }
  body.page-template-page-servicios .site-header__logo { padding: 0; }
  body.page-template-page-servicios .site-header__toggle-bar { background: var(--white); }
  .site-header__toggle { display:flex; }
  .site-nav__cta { display:none; }
  .site-nav {
    position:fixed;inset:0;flex-direction:column;justify-content:center;
    background:var(--header-bg);
    transform:translateX(100%);transition:transform var(--transition);
    z-index:9;
    overflow-y:auto;
    padding:calc(var(--header-h) + 1rem) 1rem 2rem;
  }
  body.page-template-page-servicios .site-nav { background: var(--header-bg); }
  body.page-template-page-servicios .site-nav__list {
    background: transparent;
    padding: 2rem;
  }
  body.page-template-page-servicios .site-nav__link {
    color: rgba(255,255,255,0.85);
    font-size: var(--text-2xl);
    padding: 0.75rem 1rem;
  }
  body.page-template-page-servicios .site-nav__link:hover,
  body.page-template-page-servicios .site-nav__item.current-menu-item > .site-nav__link,
  body.page-template-page-servicios .site-nav__item.is-active > .site-nav__link {
    color: var(--white);
    background: var(--pink);
  }
  .site-nav.is-open { transform:translateX(0); }
  .site-nav__list {
    flex-direction:column;
    align-items:stretch;
    gap:0.25rem;
    width:100%;
    padding:0;
    background:transparent;
    border:0;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }
  .site-nav__link { font-size:var(--text-2xl);padding:0.75rem 1rem;width:100%;justify-content:center;text-align:center; }
  .site-nav__dropdown { position:static;box-shadow:none;opacity:1;pointer-events:auto;transform:none;background:rgba(255,255,255,0.05);margin-top:0.25rem; }
  .site-nav__dropdown a { color:rgba(255,255,255,0.7); }
  .lang-switch { align-self:center;margin-top:1rem; }
  .lang-switch__menu { right:auto;left:50%;transform:translate(-50%, 6px); }
  .lang-switch.is-open .lang-switch__menu { transform:translate(-50%, 0); }
  .home-hero { min-height:auto; }
  .home-hero__content { min-height:100svh; }
  .home-hero__top { padding:2rem 1rem 1.5rem; }
  .home-hero__title { font-size:clamp(2.35rem, 13vw, 3.75rem);overflow-wrap:anywhere; }
  .home-hero__subtitle { padding-bottom:1rem; }
  .home-hero__quick { margin-top:auto; }
  .quick-links { flex-direction:column; }
  .quick-link { width:100%;border-right:none;border-bottom:1px dashed rgba(255,255,255,0.3);padding-inline:0; }
  .quick-link:last-child { border-bottom:none; }
  .home-about__badges { justify-content:flex-start; }
  .home-about__title,
  .home-testimonials__big-heading,
  .home-experiences__title,
  .about-plans__title {
    text-align:left;
    overflow-wrap:anywhere;
  }
  .home-about__divider { margin-inline:0; }
  .home-about__images { grid-template-columns:1fr; }
  .home-about__img,
  .home-about__img:first-child { min-height:260px; }
  .home-about__cats .btn,
  .about-plans__cats .btn { flex:1 1 100%; }
  .experiences-grid,.blog-grid { grid-template-columns:1fr; }
  .experience-card__header,
  .experience-card__footer { align-items:flex-start; }
  .service-fleet__grid { grid-template-columns:1fr; }
  .gallery-fan { gap:0.5rem; }
  .gallery-fan__item { width:140px; }
  .form-row { grid-template-columns:1fr; }
  .footer-bottom__inner { flex-direction:column;text-align:center; }
  .footer-bottom__legal { justify-content:center;flex-wrap:wrap; }
  .home-experiences__search { border-radius:var(--radius-lg); }
  .home-experiences__search .btn { flex-shrink:0; }
  .footer-card { padding:1.25rem; }
  .footer-card__top,
  .footer-plan-card__header { flex-direction:column; }
  .footer-card__nav { grid-template-columns:1fr; }
  .footer-card__back,
  .footer-plan-card__cta { width:100%; }
  .svc-search__wrapper { flex-direction:column; }
  .svc-search__input { border-radius:var(--radius-lg); }
  .svc-search__clear { right:1rem; }
}

/* ─── Services Search Filter ─────────────────────────────────── */
.svc-search {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin: 3rem 0;
}

.svc-search__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.svc-search__input {
  flex: 1;
  min-height: 52px;
  padding: 0.875rem 2.5rem 0.875rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: inherit;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.svc-search__input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(196, 13, 94, 0.1);
}

.svc-search__input::placeholder {
  color: var(--text-faint);
}

.svc-search__clear {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-muted);
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.svc-search__clear:hover {
  color: var(--text);
}

.svc-search__results {
  margin-top: 1rem;
  padding: 1.5rem;
  background: var(--pink-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.svc-search__no-results {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin: 0;
}

.svc-cat__item.is-hidden-by-search {
  display: none !important;
}

.svc-cat.is-hidden-by-search {
  display: none !important;
}

/* === REQUEST FORM === */
.vib-request-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.vib-request-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.vib-request-form input,
.vib-request-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: var(--text-base);
}
.vib-request-form textarea {
  min-height: 120px;
  resize: vertical;
}
.vib-request-form input:focus,
.vib-request-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(196, 13, 94, 0.1);
}
.vib-request-form__notice {
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
}
.vib-request-form__notice--success {
  background: #ECFDF3;
  color: #067647;
}
.vib-request-form__notice--error {
  background: #FEF3F2;
  color: #B42318;
}
.vib-request-form__website {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.yacht-contact .vib-request-form {
  max-width: 520px;
}

@media (max-width: 768px) {
  .vib-request-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* === ABOUT PAGE === */
.page-about {
  padding-top: var(--header-h);
}
.page-about__header {
  background: var(--header-bg);
  padding: 4rem 0;
  text-align: center;
}
.page-about__title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  color: var(--white);
}
.page-about__body {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.page-about__body .container {
  max-width: 860px;
}
.page-about__content.wysiwyg {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.page-about__cta {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  text-align: center;
  color: var(--white);
}
.page-about__cta-inner h2 {
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  color: var(--white);
  margin-bottom: 1rem;
}
.page-about__cta-inner p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.about-intro {
  display: grid;
  gap: 3rem;
}
.about-section {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.about-section h2 {
  font-size: var(--text-2xl);
  margin-bottom: 1rem;
  color: var(--pink);
}
.about-section p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.about-section ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.about-section li {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .page-about__content.wysiwyg {
    padding: 2rem;
  }
  .page-about__cta-inner a {
    width: 100%;
  }
}

/* === SOBRE NOSOTROS — LANDING === */
.about-intro-landing {
  background: var(--white);
  padding: var(--section-py) 0;
}
.about-intro-landing__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-intro-landing__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.about-intro-landing__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 400;
}
.about-intro-landing__text p {
  color: var(--text-muted);
  line-height: 1.7;
}
.about-intro-landing__text .about-intro-landing__quote {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--black);
  line-height: 1.5;
}
.about-intro-landing__quote strong { font-weight: 600; }
.about-intro-landing__imgs {
  display: grid;
  gap: 1rem;
}
.about-intro-landing__imgs img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 16/10;
}
.about-intro-landing__placeholder {
  width: 100%;
  background: #e5e7eb;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
}

.about-plans {
  background: var(--cream);
  padding: var(--section-py) 0;
  text-align: center;
}
.about-plans__title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  font-weight: 400;
  max-width: 18ch;
  margin: 0 auto 2rem;
}
.about-plans__title strong { font-weight: 600; }
.about-plans__cats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.about-plans__cats .btn {
  font-size: var(--text-sm);
  padding: 10px 16px 11px;
  border-radius: 12px;
}

.about-community {
  background: var(--white);
  padding: var(--section-py) 0;
}
.about-community__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-community__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.about-community__text p {
  color: var(--text-muted);
  line-height: 1.7;
}
.about-community__text strong {
  color: var(--black);
  font-weight: 600;
}
.about-community__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  border: 1.33px solid var(--black);
  border-radius: 10px;
  padding: 10px 16px 11px;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
}
.about-community__img img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-community__img .about-intro-landing__placeholder { aspect-ratio: 4/3; }

@media (max-width: 900px) {
  .about-intro-landing__inner,
  .about-community__inner {
    grid-template-columns: 1fr;
  }
}

/* === CONTACT PAGE === */
.page-contact {
  padding-top: var(--header-h);
}
.page-contact__header {
  background: var(--header-bg);
  padding: 4rem 0;
  text-align: center;
}
.page-contact__title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  color: var(--white);
}
.page-contact__tagline {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-base);
  margin-top: 0.75rem;
}

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-pill);
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(0,0,0,0.32);
}

@media (max-width:768px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: calc(1rem + env(safe-area-inset-right));
    bottom: calc(1rem + env(safe-area-inset-bottom));
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
