/*
  ALYRA — version3
  Layout built to match PDFs in version2 (desktop + mobile) for:
  - HOME
  - RETIROS
  - PROTOCOLO
*/

:root {
  --navy: #0b3a53;
  --navy-2: #062a3d;
  --sky: #6fb8cf;
  --beige: #f6f0ea;
  --beige-2: #fbf7f3;
  --sand: #e8ded4;
  --gold: #c3a06b;
  --text: #0e1b22;
  --muted: #6c7b84;
  --white: #fff;

  --container: 1120px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 14px 34px rgba(0, 0, 0, .10);
  --header-height: 120px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Barlow Condensed", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: var(--fs-base, 18px);
  color: var(--text);
  background: var(--bg-color, var(--beige));
}

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

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

button,
input {
  font-family: inherit
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50
}

.navbar {
  background: var(--navy);
  color: var(--white)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand-isotipo {
  height: 40px;
  width: auto;
}

.brand-texto {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap
}

.nav-links>a,
.nav-links button {
  opacity: .95
}

.nav-links>a:hover,
.nav-links button:hover {
  opacity: 1
}

.dropdown {
  position: relative
}

.dropdown>button {
  background: transparent;
  border: 0;
  color: var(--white);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.dropdown .chev {
  font-size: 14px;
  transform: translateY(-1px)
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  background: var(--white);
  color: var(--text);
  border-radius: 12px;
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 10px;
  display: none
}

.dropdown.open .dropdown-menu {
  display: block
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: none
}

.dropdown-menu a:hover {
  background: var(--beige)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px
}

.lang {
  font-size: 11px;
  letter-spacing: .12em;
  opacity: .9
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: transparent;
  color: var(--white);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap
}

.btn:hover {
  background: rgba(255, 255, 255, .10)
}

.btn.primary {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .25)
}

.btn.blue {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white)
}

.btn.blue:hover {
  background: var(--navy-2)
}

.btn.ghost {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .65)
}

.btn .arrow {
  font-size: 16px;
  line-height: 1
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  position: relative
}

.hamburger-lines,
.hamburger span {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 2px;
  background: white;
  transform: translateY(-50%);
}

.hamburger-lines::before,
.hamburger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: white;
}

.hamburger-lines::before {
  top: -8px
}

.hamburger-lines::after {
  top: 8px
}



.marquee {
  background: var(--sky);
  color: #062634;
  font-size: 14px;
  letter-spacing: .20em;
  text-transform: uppercase;
  padding: 12px 10px;
  text-align: center;
  font-weight: 600;
}

/* Mobile drawer (HOME uses .mobile-drawer-card, other pages simple lists) */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  padding: 12px;
  z-index: 60
}

.mobile-drawer.open {
  display: block
}

.mobile-drawer-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.mobile-brand .brand-isotipo {
  height: 32px;
  width: auto;
}

.mobile-brand .brand-texto {
  height: 22px;
  width: auto;
}

.icon-btn {
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 18px;
  cursor: pointer
}

.mobile-links a {
  display: block;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase
}

.mobile-links .btn {
  margin: 14px 18px;
  border-color: rgba(255, 255, 255, .35)
}

/* Legacy mobile menu on retiros */
.mobile-menu {
  display: none;
  background: var(--navy);
  color: var(--white)
}

.mobile-menu.open {
  display: block
}

.mobile-menu a {
  display: block;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase
}

/* ---------- Sections ---------- */
.section {
  padding: 62px 0;
  background: var(--beige);
  scroll-margin-top: var(--header-height);
}

#servicios {
  background: linear-gradient(to bottom, var(--beige-2) 0%, var(--beige-2) 15%, var(--white) 15%, var(--white) 100%);
}

#retiros {
  background: var(--beige-2);
  /* Light cream background */
  position: relative;
  overflow: hidden;
}

#testimoniales {
  background: linear-gradient(to bottom, var(--white) 0%, var(--white) 35%, var(--beige) 35%, var(--beige) 100%);
}


.section-band {
  background: var(--navy);
  color: var(--white)
}

.section.white {
  background: var(--beige-2)
}

.section-kicker {
  font-size: var(--fs-small, 12px);
  letter-spacing: .18em;
  text-transform: none;
  color: #546e7a;
  text-align: center
}

.section-title {
  margin: 8px 0 10px;
  font-family: "Belleza", serif;
  font-size: var(--fs-h2, 40px);
  line-height: 1.1;
  letter-spacing: .14em;
  text-transform: none;
  text-align: center;
  color: var(--navy)
}

.section-title.sm {
  font-size: 34px
}

.section-body {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--fs-p, 18px);
  line-height: 1.65
}

.section-header-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icon {
  width: 50px;
  /* Reasonable size */
  max-width: 90px;
  height: auto;
  object-fit: contain;
}

.section-header-group .section-title {
  margin: 0;
}

.header-divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin-top: 16px;
}

.section-body.center {
  text-align: center
}

.center {
  text-align: center;
}

.section-sub {
  margin: 0 0 18px;
  text-align: center;
  color: var(--muted)
}

.title-icon {
  display: inline-flex;
  vertical-align: middle;
  transform: translateY(-2px);
  margin-right: 10px
}

.title-icon img {
  width: 22px;
  height: 22px
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden
}

.hero-slider {
  position: relative;
  height: 100%
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 600ms ease
}

.hero-slide.is-active {
  opacity: 1
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 58, 83, .15) 0%, rgba(11, 58, 83, .55) 70%, rgba(11, 58, 83, .75) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 24px 0
}

.hero-title {
  margin: 0;
  font-family: "Belleza", serif;
  font-size: var(--fs-h1, 52px);
  line-height: 1.05;
  letter-spacing: .14em;
  text-transform: uppercase
}

.hero-sub {
  margin: 14px auto 0;
  max-width: 680px;
  font-size: var(--fs-p, 17px);
  opacity: .95
}

.hero-ctas {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px
}

.hero-dots {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #fff;
  cursor: pointer
}

.hero-dot.is-active {
  background: #fff
}

.hero-features {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  margin-top: 0;
  font-size: 13px;
  letter-spacing: .08em;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: .95
}

.title-separator {
  width: 70px;
  height: 2px;
  background: #d4c5ae;
  margin: 10px auto 30px
}

/* ---------- HOME: Sobre ---------- */
.video-card {
  margin: 22px auto 0;
  max-width: 1040px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #cfe8f0;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15)
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
}

.play::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 36px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  margin-left: 4px;
}

/* ---------- HOME: Nuestros retiros card ---------- */
.retiros-bg-mark {
  position: absolute;
  right: -140px;
  top: 100px;
  width: 500px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.retiros-bg-mark img {
  width: 100%;
  height: auto;
}

.retiro-card {
  margin: 34px auto 0;
  max-width: 920px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

.retiro-subtitle {
  margin: 0 0 24px;
  font-family: "Belleza", serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  /* Keeping uppercase for subtitle as per image style preference/variation */
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  text-align: center
}

.retiro-details {
  text-align: center;
  margin-bottom: 24px;
}

.retiro-details p {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.6;
}

.retiro-details strong {
  font-weight: 700;
  color: var(--navy-2);
}

.retiro-note {
  margin-top: 28px;
  text-align: center;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
}

.retiro-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.retiro-note {
  margin-top: 14px;
  text-align: center;
  color: var(--muted);
  font-size: 12px
}

.wide-image {
  margin: 26px auto 0;
  max-width: 920px
}

.wide-image img {
  border-radius: 14px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.wide-image-caption {
  margin-top: 10px;
  text-align: center;
  color: var(--muted);
  font-size: 11px
}

/* ---------- HOME: Beneficios accordion ---------- */
.benefits {
  max-width: 920px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 70px;
  align-items: start
}

.benefit {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-bottom: 1px solid rgba(195, 160, 107, .35)
}

.benefit-icon img {
  width: 34px;
  height: 34px;
  opacity: .95
}

.benefit-title {
  font-size: 18px;
  color: var(--navy);
  letter-spacing: .02em;
  font-weight: 600
}

.benefit-chev {
  color: var(--navy);
  font-size: 18px;
  transition: transform .2s ease
}

.benefit-body {
  grid-column: 2 / span 2;
  padding: 4px 0 10px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  display: none
}

.benefit.is-open .benefit-body {
  display: block
}

.benefit.is-open .benefit-chev {
  transform: rotate(180deg)
}

/* ---------- Forms (HOME + RETIROS) ---------- */
.form-shell,
.form-wrap {
  max-width: 880px;
  margin: 0 auto
}

.form-shell,
.form-wrap {
  position: relative;
  background: transparent;
  box-shadow: none;
  padding: 10px;
  overflow: visible
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--navy);
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.lead-form input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--navy);
  padding: 14px 24px;
  background: var(--white);
  font-size: 16px;
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  letter-spacing: 0.05em;
}

.lead-form fieldset {
  border: 1px solid var(--navy);
  border-radius: 20px;
  padding: 24px 18px;
  margin: 10px 0 0;
  background: #fff;
}

.fieldset-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding-left: 12px;
}

.lead-form legend {
  font-size: 14px;
  color: var(--navy);
  font-style: italic;
  padding: 0 12px;
  letter-spacing: 0.05em;
  background: var(--beige-2);
  /* Match section background to hide border line */
}

.form-row-date {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 30px;
  align-items: center;
}

.form-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-logo img {
  width: 100%;
  height: auto;
  opacity: 1;
}

.lead-form label.radio {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: var(--navy);
  margin: 0;
  font-family: "Belleza", serif;
  font-style: italic;
  letter-spacing: 0.05em;
  text-align: left;
}

.lead-form label.radio input {
  width: 24px;
  height: 24px;
  accent-color: var(--navy);
  margin: 0;
}

.form-actions {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 10px;
}

.form-actions .btn {
  flex: 1;
  border-radius: 999px;
  justify-content: center;
  padding: 16px 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

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

  .form-logo {
    display: none;
  }

  .form-actions {
    flex-direction: column;
  }
}



/* ---------- HOME: Testimoniales carousel ---------- */
.carousel {
  position: relative;
  max-width: 960px;
  margin: 22px auto 0
}

.carousel-track {
  display: flex;
  gap: 18px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 2px 2px 12px
}

.testi {
  flex: 0 0 300px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  text-align: left;
}

.testi-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  /* Center image */
  box-shadow: var(--shadow);
}

.testi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-video {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--navy);
  /* or a lighter blue like var(--sky) if needed, using navy for now */
  font-style: italic;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.testi-quote {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.testi-name {
  font-family: "Belleza", serif;
  color: var(--navy);
  letter-spacing: 0.1em;
  font-size: 16px;
  text-transform: uppercase;
}

.carousel-arrow {
  position: absolute;
  top: 40%;
  /* Align roughly with images */
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 24px;
  /* Make arrow character bigger */
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: none;
  transition: transform 0.2s;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.left {
  left: -50px;
}

.carousel-arrow.right {
  right: -50px;
}

/* ---------- HOME: Gallery strip ---------- */
.gallery {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-track {
  display: grid;
  grid-template-rows: repeat(2, 180px);
  /* Slightly shorter height for better aspect ratio */
  grid-auto-flow: column;
  grid-auto-columns: 260px;
  /* Narrower to fit ~4 */
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: none;
  aspect-ratio: 4/3;
  /* Enforce ratio */
  cursor: pointer;
  /* Because of lightbox */
  transition: transform 0.3s ease;
}

.gallery-track img:hover {
  transform: scale(1.02);
}



.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s;
  z-index: 10;
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.gallery-arrow.left {
  left: -50px;
}

.gallery-arrow.right {
  right: -50px;
}

/* ---------- HOME: Contacto ---------- */
.contact-grid {
  max-width: 920px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center
}

.contact-mark {
  display: flex;
  justify-content: center;
  opacity: .30
}

.contact-mark img {
  width: 240px
}

.contact-items {
  display: grid;
  gap: 12px
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--navy)
}

.contact-item img {
  width: 26px;
  height: 26px
}

/* ---------- Calendly Button ---------- */
.btn-calendly {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--sky) 0%, #4a9bb5 100%);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(111, 184, 207, 0.4);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-calendly::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #4a9bb5 0%, var(--sky) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-calendly:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(111, 184, 207, 0.5);
}

.btn-calendly:hover::before {
  opacity: 1;
}

.btn-calendly svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.btn-calendly span {
  position: relative;
  z-index: 1;
}

.btn-calendly:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(111, 184, 207, 0.3);
}

@media (max-width: 768px) {
  .btn-calendly {
    font-size: 14px;
    padding: 14px 28px;
  }
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}



/* ---------- FAQ ---------- */
/* ---------- FAQ ---------- */
.faq {
  max-width: 90%;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#habitaciones {
  background: linear-gradient(to bottom, var(--beige-2) 0%, var(--beige-2) 220px, var(--white) 220px, var(--white) 100%);
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--navy);
  transition: background 0.2s;
}

.faq-trigger:hover {
  background: rgba(11, 58, 83, 0.03);
}

.faq-title {
  font-family: "Belleza", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-trigger.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  font-family: "Barlow Condensed", sans-serif;
}

.faq-answer p {
  margin: 0;
}

.faq-trigger.is-open+.faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.footer-brand .brand-isotipo {
  height: 28px;
  width: auto;
}

.footer-brand .brand-texto {
  height: 20px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: .02em;
  opacity: .95
}

.footer-social {
  display: flex;
  gap: 10px
}

.footer-social img {
  width: 22px;
  height: 22px
}

/* ---------- RETIROS ---------- */
/* ---------- RETIROS ---------- */
.services-grid {
  margin: 32px auto 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  /* Vertical gap, Horizontal gap */
  align-items: start;
}

.service-item h3 {
  font-family: "Belleza", serif;
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.service-item.layout-center {
  grid-column: 1 / -1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-item.layout-right {
  text-align: right;
}

.service-row {
  display: flex;
  align-items: center;
  /* or flex-start if content is long */
  gap: 16px;
}

.layout-right .service-row {
  flex-direction: row-reverse;
}

.service-card {
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: var(--shadow);
  flex: 1;
  /* Take remaining space */
}

/* Colors */
.service-card.bg-dark {
  background: var(--navy);
  color: #fff;
}

.service-card.bg-light {
  background: #2b6c8a;
  /* Steel/Teal blue from image reference approximation */
  color: #fff;
}

.service-card.bg-pill {
  background: #7fb5c9;
  /* Lighter blue for hospedaje */
  color: #fff;
  border-radius: 999px;
  padding: 12px 32px;
  flex: 0 0 auto;
  /* Don't stretch */
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 15px;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
}

.service-card ul li {
  margin-bottom: 4px;
}

.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: auto;
  max-width: 50px;
}

/* ============================================
   NUEVO DISEÑO DE SERVICIOS INCLUÍDOS
   ============================================ */

.services-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card-new {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(47, 80, 99, 0.1);
}

.service-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-header-new {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
}

.service-icon-new {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #2f5063 100%);
  border-radius: 12px;
  padding: 10px;
}

.service-icon-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-header-new h3 {
  font-family: "Belleza", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 1;
}

.service-content-new {
  color: #2f5063;
  font-size: 15px;
  line-height: 1.7;
}

.service-content-new ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: none;
}

.service-content-new ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 12px;
}

.service-content-new ul li:before {
  content: "•";
  position: absolute;
  left: -8px;
  color: var(--navy);
  font-weight: bold;
  font-size: 18px;
}

.service-content-new ul li:last-child {
  margin-bottom: 0;
}

.highlight-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy) 0%, #2f5063 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin: 0;
  box-shadow: 0 4px 12px rgba(47, 80, 99, 0.25);
}

/* Tablet: 2 columnas */
@media (min-width: 768px) {
  .services-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .service-header-new h3 {
    font-size: 19px;
  }

  .service-content-new {
    font-size: 15px;
  }
}

/* Desktop: 3 columnas */
@media (min-width: 1024px) {
  .services-grid-new {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
  }

  .service-card-new {
    padding: 32px;
  }

  .service-header-new {
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  .service-header-new h3 {
    font-size: 20px;
  }

  .service-content-new {
    font-size: 16px;
  }

  .highlight-badge {
    font-size: 17px;
    padding: 14px 28px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-item.layout-center {
    grid-column: auto;
  }

  /* Reset direction on mobile? Or keep zigzag? 
     Usually stack is better. */
  .layout-right .service-row {
    flex-direction: row;
    /* Stack normally icon-left on mobile? */
  }

  .service-item.layout-right {
    text-align: left;
  }
}



.strip-gallery {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
}

.strip-track {
  display: grid;
  grid-template-rows: 180px;
  grid-auto-flow: column;
  grid-auto-columns: 260px;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}

.strip-track::-webkit-scrollbar {
  display: none;
}

.strip-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: none;
  aspect-ratio: 4/3;
  transition: transform 0.3s ease;
}

.strip-track img:hover {
  transform: scale(1.02);
}

.strip-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s;
  z-index: 10;
}

.strip-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.strip-arrow.left {
  left: -50px;
}

.strip-arrow.right {
  right: -50px;
}

.rooms-grid {
  margin: 32px auto 0;
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
  justify-content: center;
  gap: 24px;
}

.room-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  box-shadow: none;
}

.room-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}

.room-body {
  background: var(--beige-2);
  padding: 20px 16px;
  border-radius: 12px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-body h3 {
  margin: 0 0 8px;
  font-family: "Belleza", serif;
  color: var(--navy);
  letter-spacing: 0.08em;
  font-size: 15px;
  text-transform: uppercase;
}

.room-body h3 span {
  font-size: 13px;
  display: block;
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: none;
  /* Keep lowercase if needed, or uppercase as per design */
}

.room-price {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  font-family: "Barlow Condensed", sans-serif;
}

.room-card .btn {
  align-self: center;
  width: 100%;
  max-width: 200px;
}

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* Upcoming Retreats */
#proximos {
  background: var(--beige-2);
}

.pills {
  max-width: 800px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill-row {
  border-radius: 999px;
  padding: 14px 24px;
  color: var(--white);
  letter-spacing: .04em;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  background: var(--navy);
  /* Fallback */
}

/* Custom colors for rows to match image */
.pill-row:nth-child(1) {
  background: #1a3c5a;
}

/* Navy */
.pill-row:nth-child(2) {
  background: #356b8c;
}

/* Steel Blue */
.pill-row:nth-child(3) {
  background: #7ab2c9;
}

/* Light Blue */
.pill-row:nth-child(4) {
  background: #1a3c5a;
}

/* Navy */

/* Team */
#equipo {
  background: linear-gradient(to bottom, var(--beige-2) 0%, var(--beige-2) 280px, var(--white) 280px, var(--white) 100%);
}

.people-grid {
  max-width: 1040px;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.person {
  flex: 0 1 300px;
  /* Width approx 300px, allows shrinking */
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  /* Text aligned left */
  padding: 0;
}

.person img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  /* Image centered */
  display: block;
}

.person h3 {
  font-family: "Belleza", serif;
  color: var(--navy);
  font-size: 16px;
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person .role {
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  margin: 0;
}

.person .quote {
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.person-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #e0e0e0;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: #999;
  font-size: 12px;
  text-align: center;
  padding: 20px;
}




/* Installations Mosaic */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.mosaic-grid img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: none;
}

.mosaic-grid img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.section-flush-bottom {
  padding-bottom: 0 !important;
}

.map-full-width {
  position: relative;
  width: 100%;
  height: 520px;
  margin-top: 40px;
  overflow: hidden;
}

.map-background {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.map-card-overlay {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  background: #6eb7d0;
  /* Sky blue matching reference */
  padding: 32px;
  border-radius: 16px;
  max-width: 320px;
  width: 90%;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.map-divider-light {
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 20px 0;
  width: 30px;
}

.map-text-light p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  /* White text */
}

.btn.dark-pill {
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border: none;
}

.map-pin {
  position: absolute;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.map-pin.area {
  top: 40%;
  left: 55%;
}

.map-pin.ajijic {
  bottom: 30%;
  left: 55%;
  /* Adjusted for full width map estimation */
}

@media (max-width: 768px) {
  .map-full-width {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .map-background {
    height: 300px;
  }

  .map-card-overlay {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 24px;
  }
}

/* ---------- PROTOCOLO ---------- */
.page-hero {
  padding: 38px 0 10px;
  background: var(--beige)
}

.page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}

.page-title .badge {
  width: 22px;
  height: 22px
}

.title-underline {
  width: 90px;
  height: 2px;
  background: rgba(11, 58, 83, .25)
}

.narrow {
  max-width: 880px
}

.protocol-h2 {
  margin: 0 0 10px;
  text-align: center;
  font-family: "Belleza", serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 26px
}

.day-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.day-title .badge {
  width: 22px;
  height: 22px
}

.day-layout {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 18px;
  align-items: start
}

.day-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px 16px
}

.day-card h3 {
  margin: 0 0 10px;
  font-family: "Belleza", serif;
  letter-spacing: .12em;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 13px
}

.day-card ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7
}

.day-steps {
  display: grid;
  gap: 10px
}

.day-step {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px 14px
}

.day-step h4 {
  margin: 0 0 6px;
  font-family: "Belleza", serif;
  letter-spacing: .10em;
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase
}

.day-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55
}

.day-arc {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: .95
}

.day-arc img {
  width: 100%;
  max-width: 240px
}

.protocol-photo {
  max-width: 1040px;
  margin: 18px auto 0
}

.protocol-photo img {
  border-radius: 18px;
  box-shadow: var(--shadow)
}

.bases-list {
  max-width: 1040px;
  margin: 18px auto 0;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px 18px
}

.bases-list ol {
  margin: 0;
  padding-left: 20px
}

.bases-list li {
  margin: 10px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6
}

.bases-list a {
  color: var(--navy);
  text-decoration: underline
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center
  }

  .hero {
    height: 600px
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .people-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .people-grid--3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .map-block {
    grid-template-columns: 1fr
  }

  .map {
    min-height: 360px
  }

  .day-layout {
    grid-template-columns: 1fr
  }

  .day-arc {
    order: -1
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 100px;
  }

  .section {
    padding: 48px 0;
    scroll-margin-top: var(--header-height);
  }

  .section-title {
    font-size: 34px
  }

  .hero-title {
    font-size: 64px
  }

  .hero-sub {
    font-size: 19px;
  }

  .hero-features {
    font-size: 15px;
  }

  .marquee {
    font-size: 15px;
  }

  .benefits {
    grid-template-columns: 1fr;
    gap: 10px
  }

  .lead-form {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .rooms-grid {
    grid-template-columns: 1fr
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .carousel-arrow.left,
  .gallery-arrow.left,
  .strip-arrow.left,
  .mosaic-arrow.left {
    left: 6px
  }

  .carousel-arrow.right,
  .gallery-arrow.right,
  .strip-arrow.right,
  .mosaic-arrow.right {
    right: 6px
  }

  .wide-image img {
    height: auto;
  }

  /* Header mobile fixes */
  .brand {
    gap: 8px;
  }

  .brand-isotipo {
    height: 32px;
    margin-left: 8px;
  }

  .brand-texto {
    height: 20px;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-right: 8px;
  }

  .hamburger-lines {
    background: white;
  }

  .hamburger-lines::before,
  .hamburger-lines::after {
    background: white;
  }

  .hamburger span {
    background: white;
  }

  /* Hide RESERVA AHORA button on mobile */
  .nav-right .btn {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero {
    height: 560px
  }

  .hero-title {
    font-size: 38px
  }
}

/* Extra: protocolo drawer inner */
.mobile-drawer-inner {
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
}

.mobile-drawer-inner a {
  display: block;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.mobile-drawer-inner .btn {
  margin: 14px 18px;
  border-color: rgba(255, 255, 255, .35)
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 58, 83, 0.9);
  z-index: 0;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 40px;
  padding: 20px;
  cursor: pointer;
}

.lightbox-arrow.left {
  left: 20px;
}

.lightbox-arrow.right {
  right: 20px;
}

@media (max-width: 768px) {
  .lightbox-arrow {
    padding: 10px;
    font-size: 30px;
  }

  .lightbox-arrow.left {
    left: 5px;
  }

  .lightbox-arrow.right {
    right: 5px;
  }
}

/* ---------- Media Queries para aumentar tipografía en vista de escritorio ---------- */
@media (min-width: 992px) {

  /* Sección de beneficios */
  .benefit-title {
    font-size: 20px;
  }

  .benefit-body {
    font-size: 19px;
    line-height: 1.65;
  }

  /* Párrafos de sección en general */
  .section-body {
    font-size: 20px;
    line-height: 1.7;
  }

  /* FAQ respuestas */
  .faq-answer {
    font-size: 19px;
    line-height: 1.7;
  }

  /* Detalles de retiro */
  .retiro-details p {
    font-size: 19px;
    line-height: 1.7;
  }

  /* Testimonios */
  .testi-quote {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Servicios */
  .service-card {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* Extra: protocolo drawer inner */
.mobile-drawer-inner {
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
}

.mobile-drawer-inner a {
  display: block;
  padding: 14px 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.mobile-drawer-inner .btn {
  margin: 14px 18px;
  border-color: rgba(255, 255, 255, .35)
}

/* ---------- Video Modal ---------- */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal[aria-hidden="false"] {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 10001;
  animation: modalFadeIn 0.3s ease;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10002;
}

.video-modal-close:hover {
  background: white;
  transform: scale(1.1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
  }

  .video-modal-close {
    top: -45px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

/* ============================================
   IMAGE MODAL FOR GALLERY
   ============================================ */

.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 48px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
  line-height: 1;
  user-select: none;
}

.modal-close:hover,
.modal-close:focus {
  color: #6fb8cf;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 32px;
  padding: 16px 20px;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  user-select: none;
}

.modal-nav:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #6fb8cf;
  color: #6fb8cf;
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

@media (max-width: 768px) {
  .modal-close {
    top: 10px;
    right: 15px;
    font-size: 36px;
  }

  .modal-nav {
    font-size: 24px;
    padding: 12px 16px;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .modal-content {
    max-width: 95%;
    max-height: 85vh;
  }
}

/* Marquee clickable */
.marquee-link {
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.marquee-link:hover .marquee {
  opacity: 0.9;
}

/* Mobile submenu styles */
.mobile-submenu {
  margin: 16px 0;
}

.mobile-submenu-title {
  font-family: "Belleza", serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding-left: 0;
  opacity: 1;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0 10px 20px;
  font-size: 14px;
  position: relative;
  transition: all 0.2s ease;
}

.mobile-submenu a:before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0.5;
  font-size: 12px;
}

.mobile-submenu a:hover:before {
  opacity: 1;
  left: 2px;
}

/* For mobile-drawer (white background) - index, protocolo, privacidad */
.mobile-drawer .mobile-submenu-title {
  color: var(--navy);
}

.mobile-drawer .mobile-submenu a {
  color: var(--text);
}

.mobile-drawer .mobile-submenu a:hover {
  color: var(--navy);
}

/* For mobile-menu (navy background) - retiros */
.mobile-menu .mobile-submenu-title {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.mobile-menu .mobile-submenu a {
  color: rgba(255, 255, 255, 0.9);
}

.mobile-menu .mobile-submenu a:hover {
  color: white;
}

/* ============================================
   SMOOTH SCROLL & ANIMATIONS
   ============================================ */

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Fade-in animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in with delay variations */
.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

/* Scale animations */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}