/* ===========================
   DEFINICIÓN DE FUENTES
   =========================== */

/* Apollo */
@font-face {
  font-family: 'Apollo';
  font-style: normal;
  font-weight: 400;
  src: url('../font/apollo-webfont.woff2') format('woff2'),
       url('../font/apollo-webfont.woff') format('woff');
  font-display: swap;
}

/* Avenir Regular */
@font-face {
  font-family: 'Avenir Regular';
  font-style: normal;
  font-weight: 400;
  src: url('../font/avenir_regular-webfont.woff2') format('woff2'),
       url('../font/avenir_regular-webfont.woff') format('woff');
  font-display: swap;
}

/* ===========================
   LANDING 360 - HEADER
   =========================== */

.header-360 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background-color: #00558C;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-360__logo {
  display: flex;
  align-items: center;
}

.header-360__logo img {
  max-height: 55px;
  width: auto;
  display: block;
}

.header-360__logo .logo-mobile {
  display: none;
}

.header-360__contact {
  display: flex;
}

body.landing-360--home-page .header-360__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}

body.landing-360--home-page .header-360__nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

body.landing-360--home-page .header-360__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #ffffff;
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

body.landing-360--home-page .header-360__nav-link:hover,
body.landing-360--home-page .header-360__nav-link:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #00558C;
  text-decoration: none;
}

body.landing-360--home-page .header-360__menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

body.landing-360--home-page .header-360__menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.landing-360--home-page .header-360__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.landing-360--home-page .header-360__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

body.landing-360--home-page .header-360__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-360__btn {
  background-color: #ffffff;
  color: #00558C;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-360__btn:hover {
  background-color: #f5f5f5;
}

.header-360__btn a {
  color: inherit;
  text-decoration: none;
}

.header-360__btn a:hover {
  color: #00558C;
  text-decoration: none;
}

html,
body.landing-360 {
  overflow-x: hidden;
}

body.landing-360--home-page.menu-open {
  overflow: hidden;
}

@supports (overflow: clip) {
  html,
  body.landing-360 {
    overflow-x: clip;
  }
}

/* ===========================
   LANDING 360 - HERO VIDEO
   =========================== */

.landing-360__content {
  position: relative;
  z-index: 2;
  background: transparent;
}

.landing-360__content {
  --hero-h: 82vh;
  --hero-overlap: 8rem;
  --content-w: 1440px;
  padding-top: 0;
}

.hero-360 {
  position: relative;
  width: 100%;
  min-height: var(--hero-h);
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
}

@supports (height: 100svh) {
  .landing-360__content {
    --hero-h: 82svh;
  }
}

.hero-360__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-360__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.1) 100%),
    rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.hero-360__content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-360__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero-360__left {
  max-width: 36rem;
}

.hero-360__right {
  display: flex;
  justify-content: flex-end;
  min-height: 1px;
}

.hero-360__subtitle {
  margin: 1.5rem 0 0;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.4rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34rem;
}

.hero-360__checks {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  max-width: 40rem;
}

.hero-360__check-item {
  position: relative;
  padding-left: 1.75rem;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.1rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.hero-360__check-item + .hero-360__check-item {
  margin-top: 0.5rem;
}

.hero-360__check-item::before {
  content: "✔";
  position: absolute;
  top: 0.05rem;
  left: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
}

.hero-360__form-card {
  width: min(520px, 100%);
}

.landing-360--habitaciones-page .hero-360__grid {
  align-items: start;
  gap: 1.5rem;
}

.landing-360--habitaciones-page .hero-360__left,
.landing-360--habitaciones-page .hero-360__right {
  align-self: start;
}

.landing-360--habitaciones-page .hero-360__right {
  padding-top: 0;
}

.section-overlap {
  background-color: transparent;
  position: relative;
  margin-top: 0;
  padding: 0;
  width: 100%;
  left: 0;
  box-sizing: border-box;
}

.section-overlap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--hero-overlap);
  bottom: 0;
  background: transparent;
  z-index: 0;
}

.section-overlap__surface {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.section-overlap__card {
  background-color: #00558C;
  color: #ffffff;
  border-radius: 32px 32px 0 0;
  padding: 5.5rem 2.5rem 8rem;
  min-height: 350px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
  margin: 0 calc(50% - 50vw);
  margin-top: -22px;
  width: 100vw;
  max-width: none;
  transform: none;
  opacity: 1;
  filter: none;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  transition: none;
}

@supports (width: 100dvw) {
  .section-overlap__card {
    width: 100dvw;
    margin: 0 calc(50% - 50dvw);
    margin-top: -22px;
  }
}

.section-overlap__card-inner,
.section-overlap__pill-inner,
.hero-360__content {
  width: min(var(--content-w), 100%);
  max-width: none;
  margin: 0 auto;
  box-sizing: border-box;
}

.section-overlap__card-inner {
  text-align: center;
  width: 100%;
}

.section-overlap__title {
  font-family: "Apollo";
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 auto 1rem;
  max-width: 900px;
  text-align: center;
}

.section-overlap__eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #00558C;
  text-align: left;
  text-transform: uppercase;
}

.hero-360__eyebrow {
  margin: 0 0 0.85rem;
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-align: left;
  text-transform: uppercase;
}

.section-overlap__text {
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.25rem;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
}

.section-overlap__text strong {
  font-weight: 700;
}

.section-overlap__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.section-overlap__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  background: #ffffff;
  color: #00558C;
  text-decoration: none;
  font-family: "Avenir Regular", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.section-overlap__btn:hover {
  background: #D22630;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.section-overlap__btn:active {
  transform: translateY(0);
}

.section-overlap__btn:focus-visible {
  outline: 3px solid rgba(0, 85, 140, 0.35);
  outline-offset: 3px;
}

.overlap-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto 1.75rem;
}

.landing-360--habitaciones-page .section-overlap__title,
.landing-360--vacaciones-page .section-overlap__title {
  margin-top: 0;
}

.overlap-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.overlap-card__gif {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.overlap-card__label {
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  color: #00558C;
}

.overlap-card__label strong {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .overlap-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .overlap-cards {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
  }
}

.overlap-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
  padding: 96px 0;
}

.overlap-type {
  background: #00558C;
  color: #ffffff;
  border-radius: 24px;
  padding: 5.6rem 2rem 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  position: relative;
}

.overlap-type__icon {
  width: 150px;
  height: auto;
  position: absolute;
  top: -96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.overlap-type__title {
  font-family: "Apollo";
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.overlap-type p.overlap-type__text {
  font-family: "Avenir Regular", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: #ffffff;
}

.overlap-types__cta {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 72px;
}

.overlap-types__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 2.35rem;
  min-width: 260px;
  border-radius: 999px;
  background: #00558C;
  color: #ffffff;
  text-decoration: none;
  font-family: "Avenir Regular", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.overlap-types__btn:hover {
  background: #D22630;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.overlap-types__btn:active {
  transform: translateY(0);
}

.overlap-types__btn:focus-visible {
  outline: 3px solid rgba(0, 85, 140, 0.45);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .overlap-types {
    grid-template-columns: 1fr;
    gap: 7.25rem;
    padding: 76px 0;
  }

  .overlap-type__icon {
    width: 130px;
    top: -86px;
  }

  .overlap-type {
    padding: 5rem 2rem 2.4rem;
  }
}

.section-overlap__bottom {
  margin-top: 0;
  position: relative;
  z-index: 5;
}

.section-overlap__pill {
  background-color: #fbf8ef;
  border-radius: 28px 28px 0 0;
  padding: 2.5rem 2.5rem;
  width: 100vw;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  top: -5rem;
  z-index: 5;
  overflow: hidden;
  box-sizing: border-box;
}

@supports (width: 100dvw) {
  .section-overlap__pill {
    width: 100dvw;
    margin: 0 calc(50% - 50dvw);
  }
}

.section-overlap__pill::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1rem;
  height: 1rem;
  background: #fbf8ef;
}

.section-overlap__pill h2 {
  font-family: "Apollo";
  font-size: 2.4rem;
  line-height: 1.1;
  color: #00558C;
  margin: 0 0 1rem;
}

.section-overlap__pill p {
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #003d63;
  margin: 0;
}

.section-overlap__pill-inner--habitaciones {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-overlap__pill-inner--habitaciones .habitaciones-intro {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 0;
}

.section-overlap__pill-inner--habitaciones .habitaciones-intro__title {
  margin: 0 0 1.25rem;
  font-family: "Apollo", serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 400;
  line-height: 1.08;
  color: #00558C;
  text-align: center !important;
}

.section-overlap__pill-inner--habitaciones .habitaciones-intro__text {
  margin: 0 auto;
  width: 100%;
  max-width: 760px;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.18rem;
  line-height: 1.55;
  color: #00558C;
  text-align: center !important;
}

.habitaciones-intro__text + .habitaciones-intro__text {
  margin-top: 1rem;
}

.habitaciones-intro__text--strong {
  font-weight: 700;
}

.section-overlap__pill-inner--habitaciones .habitaciones-highlight {
  width: 100%;
  max-width: 1080px;
  margin: 2.5rem auto 3.5rem;
  align-self: center;
}

.section-overlap__pill-inner--habitaciones .habitaciones-highlight__inner {
  width: 100%;
  margin: 0 auto;
  padding: 5.25rem 3rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, #00558C 0%, #6a3c69 58%, #D22630 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-overlap__pill-inner--habitaciones .habitaciones-highlight__lead,
.section-overlap__pill-inner--habitaciones .habitaciones-highlight__text {
  margin: 0;
  color: #ffffff;
  font-family: "Avenir Regular", sans-serif;
  text-align: center !important;
  width: 100%;
}

.section-overlap__pill-inner--habitaciones .habitaciones-highlight__lead {
  max-width: 760px;
  margin: 0 auto;
  display: block;
  font-size: 1.4rem !important;
  line-height: 1.35;
  font-weight: 700;
}

.section-overlap__pill-inner--habitaciones .habitaciones-highlight__text {
  max-width: 700px;
  margin: 2rem auto 0;
  display: block;
  font-size: 1.25rem !important;
  line-height: 1.45;
}

.habitaciones-casos {
  padding: 0 0 4.5rem;
}

.habitaciones-casos__inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 0 2.25rem;
}

.habitaciones-casos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  justify-content: center;
}

.habitaciones-casos__card {
  background: #00558C;
  border-radius: 1.35rem;
  padding: 2rem 1.5rem 1.75rem;
  min-height: 270px;
  color: #ffffff;
  text-align: left;
}

.habitaciones-casos__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  color: #ffb3b7;
}

.habitaciones-casos__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.habitaciones-casos__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.habitaciones-casos__title {
  margin: 0 0 0.85rem;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff !important;
  text-align: left;
}

.habitaciones-casos__text {
  margin: 0;
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #ffffff !important;
  text-align: left;
}

.habitaciones-casos__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

.habitaciones-casos__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  background: #00558C;
  color: #ffffff;
  text-decoration: none;
  font-family: "Avenir Regular", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.habitaciones-casos__btn:hover {
  background: #D22630;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Narrower intro text block inside the pill (title + first paragraph). */
.overlap-intro {
  max-width: 32rem;
  text-align: left;
}

.overlap-intro > h2,
.overlap-intro > p {
  margin-left: 0;
  margin-right: auto;
}

@media (min-width: 1025px) {
  .overlap-intro {
    padding-left: 4rem;
  }
}

.overlap-intro-wheel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 2.5rem;
  align-items: center;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1025px) {
  .overlap-intro-wheel {
    padding-left: 4rem;
  }

  .overlap-intro {
    padding-left: 0;
  }
}

.overlap-features {
  margin-top: 3.25rem;
  background: #00558C;
  color: #ffffff;
  border-radius: 44px;
  padding: 2.25rem 2.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem;
}

.overlap-features__item {
  min-width: 0;
}

.overlap-features__item p {
  margin: 0;
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.overlap-features__icon {
  width: 28px;
  height: 28px;
  display: block;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}

.overlap-wheel__picker {
  position: relative;
  width: 100%;
}


.overlap-wheel__viewport {
  height: 220px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-snap-stop: always;
  padding: 44px 0;
  padding-inline: 0.5rem;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: none;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.overlap-wheel__viewport::-webkit-scrollbar {
  display: none;
}

.overlap-wheel__item {
  scroll-snap-align: center;
  padding: 6px 0.25rem;
  text-align: left;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.28rem;
  line-height: 1.22;
  color: rgba(0, 85, 140, 0.35);
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
  opacity: 0.45;
  filter: blur(0.6px);
  user-select: none;
}

.overlap-wheel__item.is-active {
  color: #00558C;
  opacity: 1;
  filter: blur(0);
  transform: translateZ(0) scale(1.02);
}

@media (max-width: 768px) {
  .overlap-intro-wheel {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .overlap-wheel__viewport {
    height: 200px;
    padding: 40px 0;
  }

  .overlap-wheel__item {
    font-size: 1.16rem;
  }
}

@media (max-width: 1024px) {
  .landing-360__content {
    --hero-overlap: 7rem;
    --content-w: 1320px;
  }

  .overlap-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .overlap-features {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.5rem;
    border-radius: 32px;
  }
}

.overlap-after {
  margin-top: 3rem;
  text-align: center;
  width: 100%;
}

body.landing-360 .overlap-after__title {
  font-family: "Apollo", serif !important;
  font-size: 3.35rem;
  font-weight: 400;
  line-height: 1.12;
  color: #00558C;
  max-width: 980px;
  margin: 0 auto 1.25rem;
  text-align: center !important;
}

body.landing-360 .overlap-after__text {
  font-family: "Avenir Regular", sans-serif !important;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #00558C;
  max-width: 780px;
  margin: 0 auto;
  text-align: center !important;
}

/* Deprecated inline placement (kept in markup for now). */
body.landing-360 .overlap-after {
  display: none;
}

@media (max-width: 768px) {
  body.landing-360 .overlap-after__title {
    font-size: 2.35rem;
  }
}

.section-onlygal {
  background: transparent;
  padding: 6rem 0 4rem;
  text-align: center;
}

.section-onlygal__inner {
  width: min(var(--content-w), 100%);
  max-width: 62rem;
  margin: 0 auto;
  text-align: center;
}

.section-onlygal__title {
  font-family: "Apollo", serif;
  font-size: 3.35rem;
  font-weight: 400;
  line-height: 1.12;
  color: #00558C;
  max-width: 980px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.section-onlygal__text {
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #00558C;
  max-width: none;
  width: 100%;
  margin: 0 auto;
  text-align: center !important;
}

/* ===========================
   LANDING 360 - COBERTURAS
   =========================== */

.coberturas-360 {
  background: #00558C;
  color: #ffffff;
  padding: 4.75rem 0 12rem;
  border-radius: 44px;
  box-shadow: none;
  margin: -2rem 0 0;
  width: 100%;
  position: relative;
  z-index: 3;
  transform: none;
}

.landing-360--habitaciones-page .coberturas-360 {
  margin-top: -8rem;
}

.landing-360--vacaciones-page .coberturas-360 {
  margin-top: -6rem;
}

.coberturas-360__inner {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  padding: 0 2.25rem;
  box-sizing: border-box;
  max-width: 1320px;
}

.coberturas-360__title {
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.coberturas-360__intro {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.coberturas-360__headline {
  font-family: "Apollo", serif;
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 2.25rem;
  text-align: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.coberturas-360__headline span {
  font-weight: inherit;
}

.coberturas-360__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.coberturas-360__cards--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.coberturas-360__card {
  border-radius: 22px;
  position: relative;
  overflow: visible;
  z-index: 1;
  display: flex;
  min-height: 180px;
}

.coberturas-360__cards--home .coberturas-360__card {
  min-height: 230px;
}

.coberturas-360__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00558C 0%, #D22630 100%);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.26);
  opacity: 0.95;
  transform: translate(-12px, 12px);
  z-index: -1;
  pointer-events: none;
}

.coberturas-360__card-inner {
  background: #ffffff;
  color: #00558C;
  border-radius: inherit;
  padding: 2rem 1.75rem 1.7rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: inherit;
}

.coberturas-360__card-title {
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 1rem;
}

.coberturas-360__card-text {
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}

.coberturas-360__table {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.coberturas-360__row {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.coberturas-360__category {
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.coberturas-360__items {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.95rem;
  line-height: 1.45;
}

.coberturas-360__items li {
  position: relative;
  padding-left: 1.6rem;
}

.coberturas-360__items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.05rem;
  height: 1.05rem;
  background: url("/wp-content/uploads/2025/03/checkblanco.svg") no-repeat center;
  background-size: contain;
  opacity: 0.95;
}

.coberturas-360__items--span-2 {
  grid-column: span 2;
}

.coberturas-360__items--empty {
  min-height: 1px;
}

@media (max-width: 1024px) {
  .coberturas-360__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-360--vacaciones-page .coberturas-360 {
    margin-top: -8rem;
  }
}

@media (max-width: 768px) {
  .coberturas-360 {
    padding: 3.5rem 0 9rem;
    border-radius: 32px;
    margin-top: -1.25rem;
    width: 100%;
    transform: none;
  }

  .coberturas-360__inner {
    padding: 0 1.5rem;
  }

  .coberturas-360__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .coberturas-360__card {
    z-index: 1;
  }

  .coberturas-360__card::after {
    transform: translate(-10px, 10px);
  }

  .coberturas-360__card-inner {
    padding: 1.65rem 1.35rem 1.45rem;
    min-height: inherit;
  }

  .coberturas-360__row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .coberturas-360__items--span-2 {
    grid-column: auto;
  }

  .coberturas-360__items--empty {
    display: none;
  }
}

/* ===========================
   LANDING 360 - CONTACTO
   =========================== */

.contacto-360 {
  width: 100%;
  position: relative;
  z-index: 4;
  margin-top: -6rem;
  padding: 3rem 0 4rem;
  background: #fbf8ef;
  border-radius: 44px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
}

.contacto-360__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.contacto-360__panel {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.contacto-360__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  padding: 120px 0 70px;
  box-sizing: border-box;
  max-width: 1240px;
}

.contacto-360__title {
  font-family: "Apollo", serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.12;
  color: #00558C;
  margin: 0 0 1rem;
}

.contacto-360__text {
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #003d63;
  margin: 0;
  max-width: 38rem;
}

.contacto-360__feature-block {
  width: 100%;
}

.contacto-360__feature-title {
  margin: 0 0 3rem;
  font-family: "Apollo", serif;
  font-size: clamp(2.2rem, 3.2vw, 3.35rem);
  font-weight: 400;
  line-height: 1.08;
  color: #00558C;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contacto-360__feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.contacto-360__feature-card {
  min-height: 305px;
  padding: 1.75rem 1.5rem 1.9rem;
  border-radius: 18px;
  background: #005d95;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacto-360__feature-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.contacto-360__feature-icon svg {
  width: 100%;
  height: 100%;
}

.contacto-360__feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contacto-360__feature-card-title {
  margin: 0 0 0.9rem;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.contacto-360__feature-card-text {
  margin: 0;
  max-width: 210px;
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.92rem;
  line-height: 1.22;
  color: #ffffff;
}

.contacto-360__after {
  margin-top: 5rem;
  padding-top: 0;
  border-top: 0;
  text-align: center;
}

.contacto-360__after-title {
  font-family: "Apollo", serif;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.15;
  color: #00558C;
  margin: 0;
}

/* ===========================
   LANDING 360 - FRASES
   =========================== */

.frases-360 {
  width: 100%;
  padding: 4.25rem 0 0;
  background: transparent;
}

.frases-360__inner {
  display: none;
}

.frases-360__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 2.25rem;
  box-sizing: border-box;
}

.frase-360 {
  margin: 0;
  padding: 3.25rem 0 2.25rem;
  position: relative;
  color: #d51f2a;
}

.frase-360::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 48px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 48'%3E%3Cpath fill='%23d51f2a' d='M26.5 4.2C21.4 7.3 17.6 11.4 15 16.5c-2.7 5.1-4 10.7-4 16.8V44h18V26H19.2c.2-4.4 1.2-8 2.8-10.8 1.7-2.9 4.4-5.5 8.1-7.8L26.5 4.2Zm31 0C52.4 7.3 48.6 11.4 46 16.5c-2.7 5.1-4 10.7-4 16.8V44h18V26H50.2c.2-4.4 1.2-8 2.8-10.8 1.7-2.9 4.4-5.5 8.1-7.8L57.5 4.2Z'/%3E%3C/svg%3E");
}

.frase-360__text {
  margin: 0;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.35rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.frase-360::after {
  content: none;
}

.frase-360__vector {
  display: block;
  width: min(320px, 100%);
  height: auto;
  margin: 1.25rem auto 0;
}

.contacto-360__logos {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}

.contacto-360__logos-img {
  display: block;
  width: min(520px, 100%);
  height: auto;
}

.beneficios-360 {
  margin-top: 3.5rem;
}

.beneficios-360__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 2.25rem;
  box-sizing: border-box;
}

.beneficio-360 {
  background: #ffffff;
  border: 2px solid rgba(0, 85, 140, 0.85);
  border-radius: 18px;
  padding: 2.25rem 2.25rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  min-height: 170px;
  display: flex;
  align-items: center;
}

.beneficio-360 p {
  margin: 0;
  font-family: "Avenir Regular", sans-serif;
  color: #00558C;
  font-size: 1.05rem;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .beneficios-360__grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .beneficios-360 {
    margin-top: 2.75rem;
  }

  .beneficios-360__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 1.5rem;
  }

  .beneficio-360 {
    min-height: auto;
    padding: 1.75rem 1.5rem;
  }
}

/* ===========================
   LANDING 360 - MODALIDADES
   =========================== */

.modalidades-360 {
  margin-top: 4.5rem;
  background: #00558C;
  color: #ffffff;
  border-radius: 44px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  padding: 4.5rem 0;
  width: min(var(--content-w), 100%);
  margin-left: auto;
  margin-right: auto;
}

.modalidades-360__inner {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  padding: 0 2.25rem;
  box-sizing: border-box;
  text-align: center;
}

.modalidades-360__title {
  font-family: "Apollo", serif;
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.modalidades-360__subtitle {
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 1rem auto 0;
  max-width: 52rem;
  opacity: 0.95;
}

.modalidades-360__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  justify-content: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.modalidad-360 {
  background: #ffffff;
  color: #00558C;
  border-radius: 22px;
  padding: 2.5rem 2.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  text-align: left;
}

.modalidad-360__name {
  font-family: "Apollo", serif;
  font-size: 1.9rem;
  font-weight: 400;
  margin: 0 0 1.25rem;
  text-align: center;
}

.modalidad-360__lead {
  margin: 0 0 1rem;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #003d63;
}

.modalidad-360__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.modalidad-360__list li {
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #003d63;
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
}

.modalidad-360__list li:last-child {
  margin-bottom: 0;
}

.modalidad-360__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 1.1rem;
  height: 1.1rem;
  background: url("/wp-content/uploads/2025/03/checkazul.svg") no-repeat center;
  background-size: contain;
}

@media (max-width: 1024px) {
  .modalidades-360__title {
    font-size: 2.6rem;
  }

  .modalidad-360 {
    padding: 2.25rem 2rem;
  }
}

@media (max-width: 768px) {
  .modalidades-360 {
    margin-top: 3rem;
    border-radius: 32px;
    padding: 3.25rem 0;
    width: calc(100% - 1.5rem);
  }

  .modalidades-360__inner {
    padding: 0 1.5rem;
  }

  .modalidades-360__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.25rem;
  }

  .modalidades-360__title {
    font-size: 2.15rem;
  }
}

.contacto-360__headline {
  margin-top: 5rem;
  text-align: center;
}

.contacto-360__headline-title {
  font-family: "Apollo", serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.15;
  color: #00558C;
  margin: 0 auto;
  max-width: 58rem;
}

@media (max-width: 768px) {
  .contacto-360__headline {
    margin-top: 3.25rem;
  }

  .contacto-360__headline-title {
    font-size: 2rem;
  }
}

/* ===========================
   LANDING 360 - COMPARATIVA
   =========================== */

.comparativa-360 {
  margin-top: 4.25rem;
  width: min(var(--content-w), 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.25rem;
  box-sizing: border-box;
}

.comparativa-360__title {
  font-family: "Apollo", serif;
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1.15;
  color: #00558C;
  margin: 0 0 2rem;
  text-align: center;
}

.comparativa-360__table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  font-family: "Avenir Regular", sans-serif;
}

.comparativa-360__table--niveles {
  display: grid;
  background: #E6EEF2;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
}

.comparativa-360__table--niveles .comparativa-360__row {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) 1fr 1fr 1fr;
  align-items: stretch;
}

.comparativa-360__table--habitaciones .comparativa-360__row {
  grid-template-columns: minmax(320px, 1.75fr) minmax(170px, 0.62fr) minmax(170px, 0.62fr);
}

.comparativa-360__table--niveles .comparativa-360__cell {
  padding: 18px 18px;
  border-bottom: 1px solid #00558C;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #00558C;
  font-size: 1.12rem;
}

.comparativa-360__table--niveles .comparativa-360__row--last .comparativa-360__cell {
  border-bottom: none;
}

.comparativa-360__cell--intro {
  background: #fbf8ef;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  color: #00558C;
  padding: 22px 22px;
  flex-direction: column;
  gap: 0.35rem;
}

.comparativa-360__intro-title {
  font-family: "Avenir Regular", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

.comparativa-360__intro-text {
  font-family: "Avenir Regular", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.comparativa-360__plan {
  font-weight: 800;
  font-size: 1.15rem;
  color: #00558C;
}

.section-overlap__pill-inner--home {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0 0 3.5rem;
}

.section-overlap__pill-inner--home h2 {
  margin: 0 0 1.25rem;
  max-width: 860px;
  font-family: "Apollo", serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 400;
  line-height: 1.08;
  color: #00558C;
  text-align: center;
}

.section-overlap__pill-inner--home p {
  margin: 0 auto;
  width: 100%;
  max-width: 760px;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
  color: #00558C;
  text-align: center;
}

.section-overlap__pill-inner--home p + p {
  margin-top: 1rem;
}

.section-overlap__pill-inner--home p strong {
  font-weight: 700;
}

.alquiler-tipos-360 {
  background: #fbf8ef;
  margin-top: -6rem;
  padding: 0 0 9rem;
  position: relative;
  z-index: 5;
}

.alquiler-tipos-360__inner {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.alquiler-tipos-360__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.alquiler-tipos-360__card {
  min-height: 272px;
  padding: 1.75rem 1.5rem 1.9rem;
  border-radius: 18px;
  background: #005d95;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 34px rgba(0, 49, 79, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alquiler-tipos-360__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1.35rem;
}

.alquiler-tipos-360__icon svg {
  width: 100%;
  height: 100%;
}

.alquiler-tipos-360__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.alquiler-tipos-360__title {
  margin: 0 0 0.8rem;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.alquiler-tipos-360__text {
  margin: 0 0 1.35rem;
  max-width: 200px;
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.88rem;
  line-height: 1.2;
  color: #ffffff;
}

.alquiler-tipos-360__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  color: #c8102e;
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.alquiler-tipos-360__btn:hover,
.alquiler-tipos-360__btn:focus-visible {
  background: #c8102e;
  color: #ffffff;
  transform: translateY(-1px);
}

.alquiler-resumen-360 {
  background: #fbf8ef;
  margin-top: -2rem;
  padding: 0 0 5.5rem;
  position: relative;
  z-index: 5;
}

.alquiler-resumen-360__inner {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  text-align: center;
}

.alquiler-resumen-360__title {
  margin: 0 0 1.5rem;
  font-family: "Apollo", serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 400;
  line-height: 1.08;
  color: #00558C;
  text-align: center;
}

.alquiler-resumen-360__text {
  margin: 0 auto;
  max-width: 760px;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
  color: #00558C;
  text-align: center;
}

.comparativa-360__plan--basic {
  background: #E6EEF2;
}

.comparativa-360__plan--premium {
  background: #00558C;
  color: #ffffff !important;
}

.comparativa-360__plan--total {
  background: #D22630;
  color: #ffffff !important;
}

.comparativa-360__feature {
  justify-content: flex-start !important;
  text-align: left !important;
  font-weight: 800;
  padding-left: 28px !important;
}

.comparativa-360__check {
  font-weight: 900;
  font-size: 1.25rem;
}

.comparativa-360__check--empty {
  color: transparent;
}

.comparativa-360__note {
  margin: 1rem 0 0;
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #00558C;
}

.comparativa-360__cta--habitaciones {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.comparativa-360__th {
  padding: 18px 16px;
  text-align: center;
}

.comparativa-360__th--blue {
  background-color: #00558C;
  border-radius: 26px 0 0 0;
}

.comparativa-360__th--red {
  background-color: #d22630;
  border-radius: 0 26px 0 0;
}

.comparativa-360__head {
  display: inline-grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  justify-items: start;
  color: #ffffff;
}

.comparativa-360__head-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.comparativa-360__head-icon svg {
  display: block;
  color: #ffffff;
}

.comparativa-360__head-text {
  display: grid;
  gap: 2px;
  text-align: left;
}

.comparativa-360__head-title {
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.1;
}

.comparativa-360__head-subtitle {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.1;
  opacity: 0.95;
}

.comparativa-360__table tbody {
  background-color: #E6EEF2;
}

.comparativa-360__table td,
.comparativa-360__table th {
  border: 1px solid transparent !important;
}

.comparativa-360__table td {
  padding: 16px !important;
  text-align: center !important;
  border-bottom: 1px solid #00558C !important;
  font-size: 19px;
}

.comparativa-360__table td:first-child {
  text-align: left !important;
  padding-left: 25px !important;
  font-size: 18px;
  color: #00558C;
  font-weight: 800;
}

.comparativa-360__table td:nth-child(2) {
  color: #00558C;
  font-weight: 700;
}

.comparativa-360__table td:nth-child(3) {
  color: #d22630;
  font-weight: 700;
}

.comparativa-360__table tr:last-child td {
  border-bottom: none !important;
}

.comparativa-360__price {
  font-size: 30px;
  font-weight: 700;
}

.comparativa-360__summary {
  text-align: left !important;
}

.comparativa-360__cta {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.comparativa-360__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  background: #00558C;
  color: #ffffff;
  border-radius: 999px;
  font-family: "Avenir Regular", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background-color 180ms ease;
}

.comparativa-360__btn:hover {
  background: #004a78;
  transform: translateY(-1px);
  text-decoration: none;
  color: #ffffff;
}

/* ===========================
   LANDING 360 - PROMO
   =========================== */

.promo-360 {
  margin-top: 5rem;
  padding: 4.5rem 3rem 3rem;
  border-radius: 44px;
  color: #ffffff;
  background: linear-gradient(180deg, #00558C 0%, #6a3c69 55%, #d22630 100%);
  box-shadow: none;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.promo-360__splide {
  padding: 0 3.75rem 3.5rem;
}

.promo-360__splide .splide__slide {
  padding: 0 1.5rem;
}

.promo-360__splide .splide__arrows {
  pointer-events: none;
}

.promo-360__splide .splide__arrow {
  pointer-events: auto;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.92);
  color: #00558C;
  opacity: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.promo-360__splide .splide__arrow svg {
  fill: #00558C;
}

.promo-360__splide .splide__arrow--prev {
  left: -0.5rem;
}

.promo-360__splide .splide__arrow--next {
  right: -0.5rem;
}

.promo-360__splide .splide__pagination {
  bottom: -0.5rem;
}

.promo-360__splide .splide__pagination__page {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.52);
  opacity: 1;
}

.promo-360__splide .splide__pagination__page.is-active {
  background: #ffffff;
  transform: scale(1.2);
}

.promo-360__title {
  margin: 0;
  text-align: center;
  font-family: "Apollo", serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
}

.promo-360__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 2.75rem;
  align-items: center;
}

.promo-360__visual {
  order: 2;
}

.promo-360__copy {
  order: 1;
}

.promo-360__circle {
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.promo-360__img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  border-radius: 999px;
}

.promo-360__copy p {
  margin: 0 0 1rem;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.22rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.92);
  max-width: 44rem;
}

.promo-360__copy p strong {
  font-size: 1.36em;
  line-height: 1.35;
  display: inline-block;
}

.promo-360__copy p:last-of-type {
  margin-bottom: 0;
}

.promo-360__btn {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.25rem;
  background: #ffffff;
  color: #00558C;
  border-radius: 999px;
  font-family: "Avenir Regular", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background-color 180ms ease;
}

.promo-360__btn:hover {
  background: #f3f7fb;
  transform: translateY(-1px);
  text-decoration: none;
  color: #00558C;
}

.promo-360--habitaciones {
  margin-top: 0;
  padding: 0 0 4.5rem;
  width: min(1240px, calc(100vw - 4.5rem));
  max-width: 1240px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
}

.promo-360__inner--habitaciones {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 2rem 2.25rem 0;
  box-sizing: border-box;
}

.promo-360__grid--habitaciones .promo-360__visual {
  order: 1;
  max-width: 280px;
  width: 100%;
  justify-self: center;
}

.promo-360__grid--habitaciones .promo-360__copy {
  order: 2;
}

.coberturas-360 .promo-360--habitaciones {
  margin-top: 5rem;
}

.coberturas-360 .promo-360__grid--habitaciones {
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 3.5rem;
}

/* ===========================
   LANDING 360 - FAQ
   =========================== */

.faq-360 {
  margin-top: 4.25rem;
  padding-bottom: 4.5rem;
  overflow: visible;
}

.faq-360__title {
  margin: 0 auto 2.25rem;
  text-align: center;
  font-family: "Apollo", serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.12;
  color: #00558C;
  max-width: 62rem;
}

.faq-360__list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 85, 140, 0.45);
}

.faq-360__item {
  border-bottom: 1px solid rgba(0, 85, 140, 0.45);
}

.faq-360__question {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 0;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #00558C;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-360__question::-webkit-details-marker {
  display: none;
}

.faq-360__question::after {
  content: "+";
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #00558C;
  transition: transform 220ms ease;
}

.faq-360__item[open] .faq-360__question::after {
  transform: rotate(45deg);
}

.faq-360__answer {
  padding: 0 0 1.5rem;
}

.faq-360__answer p {
  margin: 0;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #003d63;
}

.faq-cta-360 {
  width: 100%;
  margin: -2.5rem 0 -1.5rem;
  position: relative;
  z-index: 3;
  padding: 7rem 3.5rem 7.25rem;
  background: #00558C;
  border-radius: 0 0 2rem 2rem;
  overflow: visible;
}

.faq-cta-360__inner {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: 0 2.25rem;
}

.faq-cta-360__copy {
  max-width: 26rem;
}

.faq-cta-360__title {
  margin: 0 0 1rem;
  font-family: "Apollo", serif;
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
}

.faq-cta-360__text {
  margin: 0;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.35rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.faq-cta-360__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: #fff;
  color: #00558C;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.faq-cta-360__button:hover {
  background: #D22630;
  color: #fff;
  transform: translateY(-1px);
}

.habitaciones-cta-final {
  display: block;
  width: 100%;
  margin: 0;
  padding: 6rem 3.5rem;
  background: #00558C;
  border-radius: 0rem 0rem 2rem 2rem;
  position: relative;
  z-index: 3;
  overflow: hidden;
  box-sizing: border-box;
}

.habitaciones-cta-final__inner {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: 0 2.25rem;
}

.habitaciones-cta-final__copy {
  max-width: 26rem;
}

.habitaciones-cta-final__title {
  margin: 0 0 1rem;
  font-family: "Apollo", serif;
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
}

.habitaciones-cta-final__text {
  margin: 0;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.35rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.habitaciones-cta-final__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: #fff;
  color: #00558C;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.habitaciones-cta-final__button:hover {
  background: #D22630;
  color: #fff;
  transform: translateY(-1px);
}

.home-cta-final {
  display: block;
  width: 100%;
  margin: -2rem 0 0;
  padding: 6rem 3.5rem;
  background: #00558C;
  border-radius: 0 0 2rem 2rem;
  position: relative;
  z-index: 3;
  overflow: hidden;
  box-sizing: border-box;
}

.home-cta-final__inner {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: 0 2.25rem;
}

.home-cta-final__copy {
  max-width: 26rem;
}

.home-cta-final__title {
  margin: 0 0 1rem;
  font-family: "Apollo", serif;
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
}

.home-cta-final__text {
  margin: 0;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1.35rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.home-cta-final__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: #fff;
  color: #00558C;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.home-cta-final__button:hover {
  background: #D22630;
  color: #fff;
  transform: translateY(-1px);
}

.contacto-360--habitaciones-final {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 4rem;
}

.contacto-360__grid--habitaciones-final {
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  align-items: start;
  gap: 2.5rem;
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.contacto-360__grid--vacaciones-final {
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  align-items: start;
  gap: 2.5rem;
  padding-top: 7.5rem;
  padding-bottom: 2.5rem;
}

.faq-cta-360 + .footer-360 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .landing-360--habitaciones-page .faq-360 {
    margin-top: 3.5rem;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .landing-360-page .contacto-360__grid {
    padding: 0 1.5rem 56px;
  }

  .landing-360--habitaciones-page .contacto-360__grid {
    padding: 90px 1.5rem 56px;
  }

  .landing-360--vacaciones-page .faq-360 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .landing-360--habitaciones-page .faq-360__title {
    font-size: 2.15rem;
    margin-bottom: 1.75rem;
  }

  .landing-360--vacaciones-page .faq-360__title {
    font-size: 2.15rem;
    margin-bottom: 1.75rem;
  }

  .landing-360--habitaciones-page .faq-360__list {
    max-width: 100%;
  }

  .landing-360--vacaciones-page .faq-360__list {
    max-width: 100%;
  }

  .home-cta-final {
    margin: -1rem 0 0;
    padding: 4.5rem 1.5rem;
    border-radius: 1.5rem;
  }

  .home-cta-final__inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 2rem;
    padding: 0 0.5rem;
  }

  .home-cta-final__copy {
    max-width: 100%;
  }

  .home-cta-final__title {
    font-size: 2.2rem;
    margin-bottom: 0.85rem;
  }

  .home-cta-final__text {
    font-size: 1.1rem;
  }

  .home-cta-final__button {
    width: 100%;
    min-width: 0;
    font-size: 0.92rem;
    padding: 0.95rem 1.5rem;
  }

  .habitaciones-highlight {
    margin-top: 2rem;
  }

  .habitaciones-highlight__inner {
    padding: 3.75rem 1.5rem;
    border-radius: 1.25rem;
  }

  .habitaciones-highlight__lead {
    font-size: 1.3rem;
  }

  .habitaciones-highlight__text {
    margin-top: 1.5rem;
    font-size: 1.08rem;
  }

  .habitaciones-casos {
    padding-bottom: 3.5rem;
  }

  .habitaciones-casos__inner {
    padding: 0 1.5rem;
  }

  .habitaciones-casos__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .habitaciones-casos__card {
    min-height: 0;
  }

  .faq-cta-360 {
    margin: -0.75rem 0 -1rem;
    padding: 5rem 1.5rem 5.25rem;
    border-radius: 0 0 1.5rem 1.5rem;
  }

  .habitaciones-cta-final {
    margin: -3.5rem 0 0;
    padding: 6.5rem 1.5rem;
    border-radius: 1.5rem;
  }

  .habitaciones-cta-final__inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 2rem;
    padding: 0 0.5rem;
  }

  .habitaciones-cta-final__title {
    font-size: 2.2rem;
    margin-bottom: 0.85rem;
  }

  .habitaciones-cta-final__text {
    font-size: 1.1rem;
  }

  .habitaciones-cta-final__button {
    width: 100%;
    min-width: 0;
    font-size: 0.92rem;
    padding: 0.95rem 1.5rem;
  }

  .faq-cta-360__inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 2rem;
    padding: 0 0.5rem;
  }

  .faq-cta-360__title {
    font-size: 2.2rem;
    margin-bottom: 0.85rem;
  }

  .faq-cta-360__text {
    font-size: 1.1rem;
  }

  .faq-cta-360__button {
    width: 100%;
    min-width: 0;
    font-size: 0.92rem;
    padding: 0.95rem 1.5rem;
  }

  .contacto-360__grid--habitaciones-final {
    padding-top: 2.5rem;
  }

  .contacto-360__grid--vacaciones-final {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }
}

@media (max-width: 1080px) and (min-width: 769px) {
  .habitaciones-casos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contacto-360__grid--vacaciones-final {
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  }
}

/* ===========================
   LANDING 360 - FOOTER
   =========================== */

.footer-360 {
  margin-top: -35px;
  padding: 6rem 0 4.5rem;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(90deg, #1f3e74 0%, #8b3a5f 55%, #d22630 100%);
  position: relative;
  z-index: 2;
}

.footer-360__inner {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  padding: 0 2.25rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-360__left {
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.95rem;
  white-space: nowrap;
}

.footer-360__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  justify-content: center;
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.95rem;
}

.footer-360__links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.footer-360__links a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.footer-360__right {
  display: flex;
  justify-content: flex-end;
}

.footer-360__logos {
  display: block;
  width: 110px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

@media (max-width: 768px) {
  .footer-360 {
    margin-top: -35px;
    padding: 5rem 0;
  }

  .footer-360__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
    padding: 0 1.5rem;
  }

  .footer-360__right {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .landing-360--habitaciones-page .hero-360__content {
    padding-top: calc(var(--header-h, 76px) + 1rem);
  }

  .promo-360 {
    padding: 2.5rem 2.25rem;
    border-radius: 36px;
  }

  .promo-360__splide {
    padding: 0 3rem 3.25rem;
  }

  .promo-360__splide .splide__slide {
    padding: 0 1rem;
  }

  .promo-360__title {
    font-size: 2.25rem;
  }

  .promo-360__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .promo-360__copy p {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .promo-360__inner--habitaciones {
    padding: 0 2rem;
  }

  .coberturas-360 .promo-360--habitaciones {
    margin-top: 4rem;
  }

  .coberturas-360 .promo-360__grid--habitaciones {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .landing-360--habitaciones-page .hero-360__grid {
    gap: 1.25rem;
  }

  .promo-360 {
    padding: 2.25rem 1.75rem;
    border-radius: 32px;
    margin-top: 4rem;
  }

  .promo-360__splide {
    padding: 0 0 3rem;
  }

  .promo-360__splide .splide__slide {
    padding: 0 0.25rem;
  }

  .promo-360__splide .splide__arrow {
    width: 2.5rem;
    height: 2.5rem;
    top: auto;
    bottom: -0.35rem;
    transform: none;
  }

  .promo-360__splide .splide__arrow--prev {
    left: calc(50% - 3.5rem);
  }

  .promo-360__splide .splide__arrow--next {
    right: calc(50% - 3.5rem);
  }

  .promo-360__splide .splide__pagination {
    bottom: -0.2rem;
  }

  .promo-360__title {
    font-size: 1.95rem;
  }

  .promo-360__circle {
    width: 240px;
    height: 240px;
  }

  .promo-360__grid {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .promo-360__copy p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 32rem;
  }

  .promo-360__copy p strong {
    font-size: 1.2em;
  }

  .promo-360--habitaciones {
    padding: 1.6rem 0.75rem 3rem;
    margin-top: 0;
  }

  .promo-360__inner--habitaciones {
    padding: 0 0.35rem;
  }

  .promo-360--habitaciones .promo-360__title {
    margin: 0 0 1.25rem;
    padding: 0 0.25rem;
    font-size: 1.7rem;
    line-height: 1.15;
  }

  .promo-360--habitaciones .promo-360__grid {
    margin-top: 1.1rem;
    gap: 1.25rem;
  }

  .promo-360--habitaciones .promo-360__visual {
    max-width: 200px;
    margin: 0 auto;
  }

  .promo-360--habitaciones .promo-360__circle {
    width: 200px;
    height: 200px;
  }

  .promo-360--habitaciones .promo-360__copy {
    padding: 0 0.25rem;
  }

  .coberturas-360 .promo-360--habitaciones {
    margin-top: 3.25rem;
  }
}

.comparativa-360__desktop {
  display: block;
  border-radius: 26px;
  overflow: hidden;
}

.comparativa-360__mobile {
  display: none;
}

@media (max-width: 768px) {
  .landing-360--habitaciones-page .comparativa-360 {
    margin-top: 0;
  }

  .comparativa-360__desktop {
    display: none;
  }

  .comparativa-360__mobile {
    display: block;
  }

  .comparativa-360 {
    padding: 0 1.5rem;
  }

  .comparativa-360__title {
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
  }

  .landing-360--vacaciones-page .comparativa-360 {
    margin-top: 1rem;
    padding-bottom: 2.5rem;
  }

  .landing-360--vacaciones-page .comparativa-360__title {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
}

.comparativa-360__mobile-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.comparativa-plan {
  background: #E6EEF2;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.comparativa-plan__head {
  padding: 1rem 1.2rem;
  font-family: "Avenir Regular", sans-serif;
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  color: #00558C;
  background: #E6EEF2;
}

.comparativa-plan--premium .comparativa-plan__head {
  background: #00558C;
  color: #ffffff;
}

.comparativa-plan--total .comparativa-plan__head {
  background: #D22630;
  color: #ffffff;
}

.comparativa-plan__list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.2rem 1.25rem;
  display: grid;
  gap: 0.75rem;
  font-family: "Avenir Regular", sans-serif;
  font-size: 1rem;
  color: #00558C;
  line-height: 1.5;
}

.comparativa-plan__list li {
  position: relative;
  padding-left: 1.6rem;
}

.comparativa-plan__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: #00558C;
}

.comparativa-card {
  background: #E6EEF2;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.comparativa-card__header {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px 14px;
  color: #ffffff;
}

.comparativa-card__header--blue {
  background: #00558C;
}

.comparativa-card__header--red {
  background: #d22630;
}

.comparativa-card__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.comparativa-card__icon svg {
  display: block;
  color: #ffffff;
}

.comparativa-card__title {
  font-family: "Avenir Regular", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.1;
}

.comparativa-card__subtitle {
  font-family: "Avenir Regular", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.95;
}

.comparativa-card__body {
  padding: 12px 12px 14px;
  color: #00558C;
  font-family: "Avenir Regular", sans-serif;
}

.comparativa-card__row {
  padding: 12px 6px;
  border-bottom: 2px solid rgba(0, 85, 140, 0.55);
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
}

.comparativa-card--red .comparativa-card__body {
  color: #d22630;
}

.comparativa-card--red .comparativa-card__row {
  border-bottom-color: rgba(210, 38, 48, 0.35);
}

.comparativa-card__row strong {
  font-weight: 800;
}

.comparativa-card__footer {
  padding: 12px 6px 2px;
  font-size: 1.05rem;
  line-height: 1.35;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 480px) {
  .comparativa-360__mobile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .frases-360__grid {
    gap: 2rem;
  }

  .frase-360__text {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .frases-360 {
    padding: 3.25rem 0 0;
  }

  .frases-360__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 0 1.5rem;
  }

  .frase-360 {
    padding: 3rem 0 2rem;
  }

  .frase-360::after {
    height: 40px;
  }
}

@media (max-width: 1024px) {
  .contacto-360 {
    margin-top: -5rem;
    padding-top: 2.5rem;
    border-radius: 36px;
  }

  .contacto-360__panel {
    padding: 0;
    border-radius: 0;
  }

  .contacto-360__grid {
    grid-template-columns: 1fr;
  }

  .contacto-360__feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contacto-360 {
    margin-top: -4.25rem;
    padding-bottom: 3rem;
    padding-top: 2.25rem;
    border-radius: 32px;
  }

  .contacto-360__inner {
    padding: 0;
  }

  .contacto-360__panel {
    padding: 0;
    border-radius: 0;
  }

  .contacto-360__grid {
    padding: 60px 1.5rem 56px;
  }

  .contacto-360__title {
    font-size: 2.1rem;
  }

  .contacto-360__feature-title {
    margin-bottom: 2rem;
    font-size: 2rem;
  }

  .contacto-360__feature-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contacto-360__feature-card {
    min-height: 0;
    padding: 1.5rem 1.35rem 1.65rem;
  }

  .contacto-360__feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }

  .contacto-360__feature-card-title {
    font-size: 1.45rem;
  }

  .contacto-360__feature-card-text {
    max-width: 240px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .section-onlygal {
    padding: 3rem 0 0;
  }

  .section-onlygal__title {
    font-size: 2.35rem;
  }
}

.hero-360__title {
  font-family: "Apollo";
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: white;
  margin: 0;
  text-align: left;
}

/* ===========================
   RESPONSIVE - TABLET
   =========================== */

@media (max-width: 1024px) {
  .landing-360__content {
    padding-top: 0;
  }

  .header-360 {
    padding: 1.5rem;
  }

  .header-360__logo img {
    max-height: 50px;
  }

  .header-360__btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-360__content {
    width: min(var(--content-w), 100%);
    max-width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
    padding-top: calc(var(--header-h, 76px) + 1.5rem);
  }

  /* Keep the "overlap" feel on tablet while still respecting the sticky header. */
  .hero-360 {
    position: relative;
    top: auto;
  }

  .hero-360__form-embed {
    min-height: 420px;
  }

  .hero-360__title {
    font-size: 2.5rem;
  }

  .hero-360__subtitle {
    font-size: 1.25rem;
  }

  .hero-360__check-item {
    font-size: 1rem;
  }

  .section-overlap {
    margin-top: 0;
    padding: 0;
  }

  .section-overlap__card {
    padding: 3.25rem 2rem 6.75rem;
    margin-top: -22px;
  }

  .section-overlap__title {
    font-size: 2.1rem;
    margin-top: -51px;
  }

  .landing-360--habitaciones-page .section-overlap__title,
  .landing-360--vacaciones-page .section-overlap__title {
    margin-top: 0;
  }

  .section-overlap__text {
    font-size: 1.05rem;
  }

  .section-overlap__pill {
    padding: 1.75rem 2rem;
  }

  .section-overlap__pill h2 {
    font-size: 2rem;
  }

  .alquiler-tipos-360 {
    padding-bottom: 4rem;
  }

  .alquiler-tipos-360__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .alquiler-resumen-360 {
    padding-bottom: 4rem;
  }
}

/* ===========================
   RESPONSIVE - MOBILE
   =========================== */

@media (max-width: 768px) {
  .landing-360--habitaciones-page .section-overlap__card {
    padding-bottom: 7rem;
  }

  .landing-360--vacaciones-page .section-overlap__card {
    padding-bottom: 7.5rem;
  }

  .landing-360__content {
    --hero-h: 82svh;
    --hero-overlap: 6rem;
    --content-w: 1140px;
    padding-top: 0;
  }

  .hero-360 {
    position: relative;
    height: auto;
    min-height: 760px;
    overflow: visible;
    /* Avoid vertical centering (it creates too much empty space above the text on small screens). */
    align-items: flex-start;
    padding-top: 0;
  }

  /* Keep the hero background fixed while allowing the content (incl. form) to scroll naturally. */
  .hero-360__video,
  .hero-360__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-360__content {
    position: relative;
    z-index: 3;
  }

  .header-360 {
    padding: 1rem;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
    width: 100%;
  }

  .header-360__logo {
    flex: 0 0 auto;
  }

  body.landing-360--home-page .header-360__actions {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 0.65rem;
  }

  .header-360__contact {
    flex: 0 0 auto;
    margin-left: 0;
  }

  .header-360__logo img {
    max-height: 45px;
  }

  .header-360__logo .logo-desktop {
    display: none;
  }

  .header-360__logo .logo-mobile {
    display: block;
  }

  .header-360__btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  body.landing-360--home-page .header-360__menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 121;
    order: 2;
  }

  body.landing-360--home-page .header-360__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    padding: 7.75rem 1.25rem 1.5rem;
    background: #00558C;
    box-shadow: -14px 0 30px rgba(0, 32, 51, 0.28);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    z-index: 120;
  }

  body.landing-360--home-page .header-360__nav-link {
    min-height: 48px;
    padding: 0.9rem 1rem;
    justify-content: flex-start;
    border-color: rgba(255, 255, 255, 0.22);
  }

  body.landing-360--home-page .header-360.menu-open .header-360__nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.landing-360--home-page .header-360::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 25, 40, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 110;
  }

  body.landing-360--home-page .header-360.menu-open::after {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-360__content {
    max-width: 100%;
    padding: 1.5rem;
    margin-left: 0;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 3.5rem;
  }

  .hero-360__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
  }

  .hero-360__left {
    max-width: 42rem;
    margin-top: 0;
  }

  .hero-360__title {
    font-size: 1.95rem;
    line-height: 1.3;
    text-align: center;
  }

  .hero-360__eyebrow {
    text-align: center;
  }

  .landing-360--vacaciones-page .hero-360__content {
    padding-top: calc(var(--header-h, 76px) + 2.25rem);
  }

  .landing-360--vacaciones-page .hero-360__eyebrow {
    text-align: center;
  }

  .hero-360__subtitle {
    margin-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
  }

  .hero-360__checks {
    margin-top: 1.5rem;
    text-align: left;
  }

  .hero-360__check-item {
    font-size: 1rem;
  }

  .hero-360__right {
    width: 100%;
    justify-content: center;
  }

  .hero-360__form-card {
    padding: 0;
  }

  /* Reserve space to avoid layout shift while the embedded form loads. */
  .hero-360__form-embed {
    min-height: 520px;
  }

  .hero-360__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
  }
}

@media (max-width: 480px) {
  .landing-360__content {
    --hero-h: 78svh;
    --hero-overlap: 4rem;
    --content-w: 900px;
    padding-top: 0;
  }

  .hero-360 {
    min-height: 820px;
  }

  .hero-360__content {
    padding-top: 1.25rem;
  }

  .landing-360--vacaciones-page .hero-360__eyebrow {
    text-align: center !important;
  }

  .header-360 {
    padding: 0.8rem;
  }

  .section-overlap {
    margin-top: 0;
    padding: 0;
  }

  .section-overlap__card {
    padding: 2rem 1.5rem 5rem;
    margin-top: -22px;
  }

  .landing-360--vacaciones-page .section-overlap__card {
    padding-bottom: 5.5rem;
  }

  .section-overlap__title {
    font-size: 1.65rem;
    margin-top: -23px;
  }

  .landing-360--habitaciones-page .section-overlap__title,
  .landing-360--vacaciones-page .section-overlap__title {
    margin-top: 0;
  }

  .section-overlap__text {
    font-size: 1rem;
  }

  .section-overlap__pill {
    padding: 1.5rem 1.5rem;
  }

  .section-overlap__pill h2 {
    font-size: 1.7rem;
  }

  .alquiler-tipos-360 {
    padding-bottom: 3.25rem;
  }

  .alquiler-tipos-360__inner {
    padding: 0 1.5rem;
  }

  .alquiler-tipos-360__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .alquiler-tipos-360__card {
    min-height: 0;
    padding: 1.5rem 1.35rem 1.65rem;
  }

  .alquiler-tipos-360__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }

  .alquiler-tipos-360__title {
    font-size: 1.45rem;
  }

  .alquiler-tipos-360__text {
    max-width: 240px;
    font-size: 0.88rem;
  }

  .alquiler-resumen-360 {
    margin-top: -1rem;
    padding-bottom: 5rem;
  }

  .alquiler-resumen-360__inner {
    padding: 0 1.5rem;
  }

  .alquiler-resumen-360__title {
    margin-bottom: 1rem;
    font-size: 1.75rem;
  }

  .alquiler-resumen-360__text {
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .header-360__btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .hero-360__content {
    padding: 1rem;
    padding-top: 0;
    padding-bottom: 3.25rem;
  }

  .hero-360__title {
    font-size: 2.1rem;
  }
}
