:root {
  --uma-aqua: #63b6b0;
  --uma-aqua-light: #dff3f1;
  --uma-blue: #073b4c;
  --uma-coral: #ff7058;
  --uma-white: #ffffff;
  --uma-offwhite: #f7faf9;
  --uma-gray: #65777b;
  --uma-line: #dbe7e5;
}

.uma-two {
  margin: 0;
  background: var(--uma-white);
  color: var(--uma-blue);
}

.uma-two .container {
  width: min(1220px, calc(100% - 42px));
  margin: 0 auto;
}

.uma-two-top {
  background: var(--uma-blue);
  color: #fff;
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.uma-two-top .container {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uma-two-top a {
  color: #fff;
  text-decoration: none;
}

.uma-two-header {
  background: #fff !important;
  border-bottom: 1px solid var(--uma-line);
}

.uma-two-nav {
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uma-two-logo img {
  display: block;
  width: auto;
  height: 75px;
  max-width: 260px;
  object-fit: contain;
}

.uma-two-menu {
  display: flex;
  align-items: center;
  gap: 27px;
}

.uma-two-menu a {
  color: var(--uma-blue) !important;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.uma-two-menu a:hover {
  color: var(--uma-coral) !important;
}

.uma-two-menu .uma-two-book {
  padding: 14px 23px;
  border-radius: 999px;
  background: var(--uma-coral) !important;
  color: #fff !important;
}

.uma-two-hero {
  padding: 60px 0 0;
  background:
    linear-gradient(
      90deg,
      var(--uma-offwhite) 0 58%,
      var(--uma-aqua-light) 58% 100%
    );
}

.uma-two-hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.uma-two-hero-copy {
  padding: 50px 0 90px;
}

.uma-two-label {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--uma-coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.uma-two-hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--uma-blue);
  font-family: Georgia, serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
}

.uma-two-hero-copy > p {
  max-width: 570px;
  margin: 27px 0 0;
  color: var(--uma-gray);
  font-size: 18px;
  line-height: 1.7;
}

.uma-two-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.uma-two-primary,
.uma-two-secondary {
  display: inline-flex;
  min-height: 52px;
  padding: 0 25px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.uma-two-primary {
  background: var(--uma-coral);
  color: #fff;
}

.uma-two-secondary {
  border: 1px solid var(--uma-blue);
  color: var(--uma-blue);
}

.uma-two-mini-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.uma-two-mini-info div {
  padding-top: 14px;
  border-top: 2px solid var(--uma-aqua);
}

.uma-two-mini-info strong,
.uma-two-mini-info span {
  display: block;
}

.uma-two-mini-info strong {
  font-size: 13px;
}

.uma-two-mini-info span {
  margin-top: 4px;
  color: var(--uma-gray);
  font-size: 12px;
}

.uma-two-hero-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 10px 10px 170px 10px;
  background: var(--uma-aqua);
}

.uma-two-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity .7s ease,
    transform 6s ease;
}

.uma-two-slide.active {
  opacity: 1;
  transform: scale(1);
}

.uma-two-coral-shape {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 180px;
  height: 180px;
  transform: rotate(45deg);
  background: var(--uma-coral);
  opacity: .92;
}

.uma-two-slide-buttons {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  gap: 7px;
}

.uma-two-dot {
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: rgba(7,59,76,.55);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.uma-two-dot.active {
  background: var(--uma-coral);
}

.uma-two-search {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  margin-top: -25px;
  background: #fff;
  border: 1px solid var(--uma-line);
  box-shadow: 0 20px 60px rgba(7,59,76,.12);
}

.uma-two-search > div {
  padding: 18px 20px;
  border-right: 1px solid var(--uma-line);
}

.uma-two-search label {
  display: block;
  margin-bottom: 7px;
  color: var(--uma-gray);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.uma-two-search input,
.uma-two-search select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--uma-blue);
  font-weight: 800;
}

.uma-two-search button {
  min-width: 185px;
  border: 0;
  background: var(--uma-blue);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.uma-two-intro {
  padding: 130px 0;
}

.uma-two-intro-grid {
  display: grid;
  grid-template-columns: 100px 1.1fr .7fr;
  gap: 55px;
  align-items: start;
}

.uma-two-intro-number span {
  display: grid;
  width: 65px;
  height: 65px;
  place-items: center;
  border-radius: 50%;
  background: var(--uma-aqua-light);
  color: var(--uma-blue);
  font-weight: 900;
}

.uma-two-intro h2,
.uma-two-section-head h2,
.uma-two-gallery h2,
.uma-two-final h2 {
  margin: 0;
  color: var(--uma-blue);
  font-family: Georgia, serif;
  font-weight: 500;
}

.uma-two-intro h2 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
}

.uma-two-intro-text p {
  margin: 0 0 25px;
  color: var(--uma-gray);
  font-size: 17px;
  line-height: 1.75;
}

.uma-two-intro-text a {
  color: var(--uma-coral);
  font-weight: 900;
  text-decoration: none;
}

.uma-two-villas {
  padding: 110px 0;
  background: var(--uma-offwhite);
}

.uma-two-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}

.uma-two-section-head h2 {
  font-size: clamp(43px, 5vw, 65px);
}

.uma-two-section-head > a {
  color: var(--uma-coral);
  font-weight: 900;
  text-decoration: none;
}

.uma-two-villa-list {
  border-top: 1px solid var(--uma-line);
}

.uma-two-villa-row {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 380px;
  border-bottom: 1px solid var(--uma-line);
  background: #fff;
}

.uma-two-villa-row:nth-child(even) {
  grid-template-columns: 55% 45%;
}

.uma-two-villa-row:nth-child(even) .uma-two-villa-photo {
  order: 2;
}

.uma-two-villa-photo {
  position: relative;
  display: block;
  min-height: 380px;
  background-position: center;
  background-size: cover;
}

.uma-two-villa-photo span {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--uma-blue);
  font-weight: 900;
}

.uma-two-villa-content {
  padding: 55px;
}

.uma-two-villa-heading {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.uma-two-villa-heading h3 {
  margin: 0;
  color: var(--uma-blue);
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 500;
}

.uma-two-villa-heading strong {
  color: var(--uma-coral);
  white-space: nowrap;
}

.uma-two-villa-content > p {
  margin: 24px 0;
  color: var(--uma-gray);
  line-height: 1.7;
}

.uma-two-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.uma-two-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--uma-aqua-light);
  color: var(--uma-blue);
  font-size: 11px;
  font-weight: 800;
}

.uma-two-detail {
  color: var(--uma-coral);
  font-weight: 900;
  text-decoration: none;
}

.uma-two-gallery {
  padding: 130px 0;
}

.uma-two-gallery-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr .8fr;
  grid-template-rows: 260px 260px;
  gap: 18px;
}

.uma-two-gallery-copy {
  grid-row: 1 / 3;
  padding: 45px;
  background: var(--uma-blue);
  color: #fff;
}

.uma-two-gallery-copy .uma-two-label {
  color: #ff9d8d;
}

.uma-two-gallery h2 {
  color: #fff;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.08;
}

.uma-two-gallery-copy p {
  margin: 25px 0 30px;
  color: rgba(255,255,255,.76);
  line-height: 1.7;
}

.uma-two-photo {
  background-position: center;
  background-size: cover;
}

.photo-one {
  grid-row: 1 / 3;
  background-image:
    url('/uploads/partners/villas-uma-slider/villas-uma-1.jpg');
}

.photo-two {
  background-image:
    url('/uploads/partners/villas-uma-slider/villas-uma-2.jpg');
}

.photo-three {
  background-image:
    url('/uploads/partners/villas-uma-slider/villas-uma-3.jpg');
}

.uma-two-final {
  padding: 95px 0;
  background: var(--uma-aqua);
}

.uma-two-final-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
}

.uma-two-final span {
  color: var(--uma-blue);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.uma-two-final h2 {
  max-width: 760px;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(40px, 5vw, 65px);
}

.uma-two-final a {
  display: inline-flex;
  min-height: 55px;
  padding: 0 27px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: var(--uma-coral);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.uma-two-footer {
  padding: 85px 0 28px;
  background: var(--uma-blue) !important;
  color: rgba(255,255,255,.72);
}

.uma-two-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 65px;
}

.uma-two-footer-main img {
  height: 75px;
  max-width: 240px;
  padding: 6px;
  background: #fff;
  object-fit: contain;
}

.uma-two-footer-main p {
  max-width: 390px;
  margin-top: 22px;
  line-height: 1.7;
}

.uma-two-footer h4 {
  margin: 0 0 18px;
  color: #fff;
}

.uma-two-footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

.uma-two-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 12px;
}

@media (max-width: 950px) {
  .uma-two-menu {
    position: absolute;
    top: 100px;
    left: 20px;
    right: 20px;
    z-index: 100;
    display: none;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    box-shadow: 0 20px 60px rgba(7,59,76,.15);
  }

  .uma-two-menu.open {
    display: flex;
  }

  .uma-two-hero {
    background: var(--uma-offwhite);
  }

  .uma-two-hero-grid,
  .uma-two-intro-grid {
    grid-template-columns: 1fr;
  }

  .uma-two-hero-media {
    min-height: 520px;
  }

  .uma-two-search {
    grid-template-columns: repeat(2, 1fr);
  }

  .uma-two-search button {
    min-height: 65px;
    grid-column: 1 / -1;
  }

  .uma-two-villa-row,
  .uma-two-villa-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .uma-two-villa-row:nth-child(even) .uma-two-villa-photo {
    order: 0;
  }

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

  .uma-two-gallery-copy {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .photo-one {
    grid-row: auto;
  }

  .uma-two-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .uma-two .container {
    width: min(100% - 28px, 1220px);
  }

  .uma-two-top .container {
    justify-content: center;
  }

  .uma-two-top span:nth-child(2),
  .uma-two-top a {
    display: none;
  }

  .uma-two-logo img {
    height: 60px;
  }

  .uma-two-hero {
    padding-top: 30px;
  }

  .uma-two-hero-copy {
    padding-bottom: 40px;
  }

  .uma-two-hero h1 {
    font-size: 47px;
  }

  .uma-two-mini-info {
    grid-template-columns: 1fr;
  }

  .uma-two-hero-media {
    min-height: 420px;
    border-radius: 8px 8px 90px 8px;
  }

  .uma-two-search {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }

  .uma-two-search > div {
    border-right: 0;
    border-bottom: 1px solid var(--uma-line);
  }

  .uma-two-intro,
  .uma-two-villas,
  .uma-two-gallery,
  .uma-two-final {
    padding: 75px 0;
  }

  .uma-two-section-head,
  .uma-two-final-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .uma-two-villa-photo {
    min-height: 300px;
  }

  .uma-two-villa-content {
    padding: 30px;
  }

  .uma-two-villa-heading {
    flex-direction: column;
  }

  .uma-two-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .uma-two-photo {
    min-height: 300px;
  }

  .uma-two-footer-grid {
    grid-template-columns: 1fr;
  }

  .uma-two-footer-bottom {
    gap: 12px;
    flex-direction: column;
  }
}

/* ===== PRONÓSTICO DE SURF JUNQUILLAL ===== */

.uma-surf-section {
  padding: 110px 0;
  background: #ffffff;
}

.uma-surf-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-bottom: 38px;
}

.uma-surf-heading h2 {
  margin: 0;
  max-width: 760px;
  color: var(--uma-blue);
  font-family: Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
}

.uma-surf-heading p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--uma-gray);
  font-size: 17px;
  line-height: 1.7;
}

.uma-surf-heading > a {
  flex-shrink: 0;
  color: var(--uma-coral);
  font-weight: 900;
  text-decoration: none;
}

.uma-surf-widget {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 24px;
  border: 1px solid var(--uma-line);
  border-radius: 26px;
  background:
    linear-gradient(
      135deg,
      var(--uma-aqua-light),
      #ffffff
    );
  box-shadow: 0 20px 55px rgba(7, 59, 76, .10);
}

.uma-surf-widget iframe {
  display: block;
  width: 100%;
  min-width: 780px;
  height: 440px;
  border: 0;
  background: #ffffff;
}

.uma-surf-credit {
  margin: 16px 0 0;
  color: var(--uma-gray);
  font-size: 12px;
  text-align: right;
}

@media (max-width: 700px) {
  .uma-surf-section {
    padding: 75px 0;
  }

  .uma-surf-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .uma-surf-widget {
    padding: 12px;
    border-radius: 18px;
  }

  .uma-surf-widget iframe {
    height: 430px;
  }

  .uma-surf-credit {
    text-align: left;
  }
}

/* =========================================================
   VILLAS UMA — ESTILO GLOBAL DE TODAS LAS PÁGINAS
   ========================================================= */

.uma-two {
  --uma-aqua: #63b6b0;
  --uma-aqua-dark: #429e99;
  --uma-aqua-light: #dff3f1;
  --uma-blue: #073b4c;
  --uma-blue-soft: #125666;
  --uma-coral: #ff7058;
  --uma-coral-dark: #e75e49;
  --uma-white: #ffffff;
  --uma-offwhite: #f7faf9;
  --uma-gray: #65777b;
  --uma-line: #dbe7e5;
  --uma-shadow: 0 18px 50px rgba(7, 59, 76, .10);
}

/* ---------- ENCABEZADOS INTERIORES ---------- */

.uma-two .page-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  padding: 90px 0 65px;
  overflow: hidden;
  background:
    linear-gradient(
      115deg,
      rgba(7, 59, 76, .96),
      rgba(7, 59, 76, .72)
    ),
    url('/uploads/partners/villas-uma-slider/villas-uma-1.jpg')
    center / cover no-repeat !important;
}

.uma-two .page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(99, 182, 176, .26);
}

.uma-two .page-hero::after {
  content: '';
  position: absolute;
  right: 60px;
  bottom: -70px;
  width: 155px;
  height: 155px;
  transform: rotate(45deg);
  background: rgba(255, 112, 88, .88);
}

.uma-two .page-hero .container {
  position: relative;
  z-index: 2;
}

.uma-two .page-hero .eyebrow {
  display: inline-block;
  margin-bottom: 15px;
  color: #ffc0b4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.uma-two .page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
}

.uma-two .page-hero p {
  max-width: 710px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.80);
  font-size: 18px;
  line-height: 1.7;
}

/* ---------- SECCIONES GENERALES ---------- */

.uma-two .section {
  padding: 100px 0;
  background: #ffffff;
}

.uma-two .section:nth-of-type(even) {
  background: var(--uma-offwhite);
}

.uma-two .section-title {
  margin-bottom: 42px;
}

.uma-two .section-title .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--uma-coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.uma-two .section-title h2 {
  margin: 0;
  color: var(--uma-blue);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.08;
}

.uma-two .section-title p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--uma-gray);
  font-size: 17px;
  line-height: 1.7;
}

/* ---------- BOTONES ---------- */

.uma-two .btn,
.uma-two a.btn,
.uma-two button.btn {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px !important;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.uma-two .btn:hover {
  transform: translateY(-2px);
}

.uma-two .btn-primary,
.uma-two a.btn-primary,
.uma-two button.btn-primary {
  border: 1px solid var(--uma-coral) !important;
  background: var(--uma-coral) !important;
  color: #ffffff !important;
}

.uma-two .btn-primary:hover {
  border-color: var(--uma-coral-dark) !important;
  background: var(--uma-coral-dark) !important;
}

.uma-two .btn-secondary,
.uma-two a.btn-secondary,
.uma-two button.btn-secondary {
  border: 1px solid var(--uma-blue) !important;
  background: transparent !important;
  color: var(--uma-blue) !important;
}

.uma-two .btn-secondary:hover {
  background: var(--uma-blue) !important;
  color: #ffffff !important;
}

/* ---------- TARJETAS GENERALES ---------- */

.uma-two .cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.uma-two .card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--uma-line) !important;
  border-radius: 10px 10px 70px 10px !important;
  background: #ffffff !important;
  box-shadow: var(--uma-shadow) !important;
}

.uma-two .card:nth-child(even) {
  border-radius: 70px 10px 10px 10px !important;
}

.uma-two .card-img {
  position: relative;
  min-height: 300px;
  border-radius: 0 !important;
  background-color: var(--uma-aqua-light);
}

.uma-two .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 65%,
      rgba(7, 59, 76, .35)
    );
}

.uma-two .card-body {
  padding: 27px !important;
}

.uma-two .card-body h3 {
  margin: 0 0 12px;
  color: var(--uma-blue);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 29px;
  font-weight: 500;
}

.uma-two .card-body > p {
  color: var(--uma-gray);
  line-height: 1.65;
}

.uma-two .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.uma-two .meta span {
  padding: 8px 12px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--uma-aqua-light) !important;
  color: var(--uma-blue) !important;
  font-size: 11px !important;
  font-weight: 900;
}

.uma-two .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.uma-two .price strong {
  color: var(--uma-coral);
  font-size: 20px;
}

/* ---------- PANELES Y BLOQUES ---------- */

.uma-two .split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}

.uma-two .panel {
  padding: 35px !important;
  border: 1px solid var(--uma-line) !important;
  border-radius: 10px 10px 60px 10px !important;
  background: #ffffff !important;
  box-shadow: var(--uma-shadow) !important;
}

.uma-two .panel h2,
.uma-two .panel h3 {
  color: var(--uma-blue);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
}

.uma-two .panel h2 {
  margin-top: 0;
  font-size: 36px;
}

.uma-two .panel p {
  color: var(--uma-gray);
  line-height: 1.7;
}

/* ---------- FORMULARIOS ---------- */

.uma-two .simple-form {
  padding: 38px !important;
  border: 1px solid var(--uma-line) !important;
  border-radius: 10px 10px 70px 10px !important;
  background: #ffffff !important;
  box-shadow: var(--uma-shadow) !important;
}

.uma-two .simple-form h2 {
  margin-top: 0;
  color: var(--uma-blue);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 35px;
  font-weight: 500;
}

.uma-two .form-grid {
  gap: 20px !important;
}

.uma-two .field label {
  display: block;
  margin-bottom: 8px;
  color: var(--uma-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.uma-two .field input,
.uma-two .field select,
.uma-two .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--uma-line) !important;
  border-radius: 10px !important;
  outline: 0;
  background: var(--uma-offwhite) !important;
  color: var(--uma-blue);
  font: inherit;
  box-sizing: border-box;
}

.uma-two .field textarea {
  min-height: 140px;
  resize: vertical;
}

.uma-two .field input:focus,
.uma-two .field select:focus,
.uma-two .field textarea:focus {
  border-color: var(--uma-aqua) !important;
  box-shadow: 0 0 0 4px rgba(99,182,176,.15);
}

/* ---------- DETALLE DE VILLA ---------- */

.uma-two .villa-gallery {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr !important;
  gap: 12px !important;
  margin-bottom: 35px !important;
}

.uma-two .villa-gallery img {
  width: 100%;
  height: 245px !important;
  border-radius: 8px !important;
  object-fit: cover;
}

.uma-two .villa-gallery img:first-child {
  grid-row: span 2;
  height: 502px !important;
  border-radius: 8px 8px 100px 8px !important;
}

/* ---------- GALERÍA ---------- */

.uma-two .public-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.uma-two .gallery-card {
  overflow: hidden;
  border: 1px solid var(--uma-line) !important;
  border-radius: 8px 8px 55px 8px !important;
  background: #ffffff !important;
  box-shadow: var(--uma-shadow) !important;
}

.uma-two .gallery-card:nth-child(3n+2) {
  border-radius: 55px 8px 8px 8px !important;
}

.uma-two .gallery-card img {
  width: 100%;
  height: 300px !important;
  object-fit: cover;
}

.uma-two .gallery-card > div {
  padding: 22px !important;
}

.uma-two .gallery-card h3 {
  margin: 0 0 8px !important;
  color: var(--uma-blue) !important;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
  font-weight: 500;
}

.uma-two .gallery-card p {
  color: var(--uma-gray);
}

/* ---------- SITIOS DE INTERÉS ---------- */

.uma-two .interest-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.uma-two .interest-tabs a {
  padding: 11px 17px !important;
  border: 1px solid var(--uma-line) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: var(--uma-blue) !important;
  font-weight: 900;
  text-decoration: none;
  box-shadow: none !important;
}

.uma-two .interest-tabs a:hover,
.uma-two .interest-tabs a.active {
  border-color: var(--uma-coral) !important;
  background: var(--uma-coral) !important;
  color: #ffffff !important;
}

.uma-two .interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.uma-two .interest-card {
  overflow: hidden;
  border: 1px solid var(--uma-line) !important;
  border-radius: 8px 8px 60px 8px !important;
  background: #ffffff !important;
  box-shadow: var(--uma-shadow) !important;
}

.uma-two .interest-card:nth-child(even) {
  border-radius: 60px 8px 8px 8px !important;
}

.uma-two .interest-img {
  height: 250px !important;
  background-color: var(--uma-aqua-light) !important;
}

.uma-two .interest-body {
  padding: 25px !important;
}

.uma-two .interest-body h3 {
  margin: 0 0 10px !important;
  color: var(--uma-blue) !important;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 27px !important;
  font-weight: 500;
}

.uma-two .interest-body p {
  color: var(--uma-gray);
  line-height: 1.6;
}

.uma-two .interest-meta span {
  border-radius: 999px !important;
  background: var(--uma-aqua-light) !important;
  color: var(--uma-blue) !important;
  font-size: 11px !important;
}

.uma-two .map-embed {
  margin-top: 45px !important;
  padding: 35px !important;
  border: 1px solid var(--uma-line) !important;
  border-radius: 8px 8px 70px 8px !important;
  background: var(--uma-aqua-light) !important;
  box-shadow: none !important;
}

.uma-two .map-embed h2 {
  color: var(--uma-blue);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  font-weight: 500;
}

/* ---------- ACCIONES ---------- */

.uma-two .actions,
.uma-two .interest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- MENSAJES ---------- */

.uma-two .simple-form[style*="ecfdf5"] {
  border-left: 6px solid var(--uma-aqua) !important;
  border-radius: 8px !important;
}

.uma-two .simple-form[style*="fef2f2"] {
  border-left: 6px solid var(--uma-coral) !important;
  border-radius: 8px !important;
}

/* ---------- PÁGINAS LEGALES Y SISTEMA ---------- */

.uma-two main,
.uma-two .section {
  color: var(--uma-blue);
}

.uma-two table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.uma-two th,
.uma-two td {
  padding: 14px;
  border-bottom: 1px solid var(--uma-line);
  text-align: left;
}

.uma-two th {
  background: var(--uma-aqua-light);
  color: var(--uma-blue);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 980px) {
  .uma-two .cards,
  .uma-two .public-gallery,
  .uma-two .interest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .uma-two .split {
    grid-template-columns: 1fr;
  }

  .uma-two .villa-gallery {
    grid-template-columns: 1fr 1fr !important;
  }

  .uma-two .villa-gallery img,
  .uma-two .villa-gallery img:first-child {
    height: 320px !important;
    grid-row: auto;
    border-radius: 8px !important;
  }
}

@media (max-width: 620px) {
  .uma-two .page-hero {
    min-height: 330px;
    padding: 70px 0 48px;
  }

  .uma-two .page-hero::after {
    right: -35px;
  }

  .uma-two .section {
    padding: 70px 0;
  }

  .uma-two .cards,
  .uma-two .public-gallery,
  .uma-two .interest-grid,
  .uma-two .villa-gallery {
    grid-template-columns: 1fr !important;
  }

  .uma-two .card-img,
  .uma-two .villa-gallery img,
  .uma-two .villa-gallery img:first-child {
    height: 290px !important;
  }

  .uma-two .simple-form,
  .uma-two .panel {
    padding: 25px !important;
    border-radius: 8px 8px 45px 8px !important;
  }

  .uma-two .price {
    align-items: flex-start;
    flex-direction: column;
  }

  .uma-two .price .btn {
    width: 100%;
  }
}

/* =========================================================
   VIDEO DE FONDO — SOLO PRONÓSTICO DE SURF
   ========================================================= */

.uma-surf-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 0;
  background: #073b4c !important;
}

.uma-surf-video-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.uma-surf-video-bg video {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.uma-surf-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 59, 76, .88) 0%,
      rgba(7, 59, 76, .70) 45%,
      rgba(7, 59, 76, .57) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 59, 76, .20),
      rgba(7, 59, 76, .56)
    );
}

.uma-surf-section > .container {
  position: relative;
  z-index: 2;
}

.uma-surf-section .uma-surf-heading h2 {
  color: #ffffff !important;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .24);
}

.uma-surf-section .uma-surf-heading p {
  color: rgba(255, 255, 255, .84) !important;
}

.uma-surf-section .uma-two-label {
  color: #ff9d8d !important;
}

.uma-surf-section .uma-surf-heading > a {
  color: #ffffff !important;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  background: rgba(7,59,76,.25);
  backdrop-filter: blur(5px);
}

.uma-surf-widget {
  background: rgba(255,255,255,.93) !important;
  border-color: rgba(255,255,255,.58) !important;
  box-shadow: 0 25px 70px rgba(0,0,0,.24) !important;
  backdrop-filter: blur(7px);
}

.uma-surf-credit {
  color: rgba(255,255,255,.76) !important;
}

@media (max-width: 700px) {
  .uma-surf-section {
    padding: 80px 0;
  }

  .uma-surf-video-bg video {
    object-position: 60% center;
  }

  .uma-surf-video-overlay {
    background: rgba(7, 59, 76, .72);
  }
}

@media (prefers-reduced-motion: reduce) {
  .uma-surf-video-bg video {
    display: none;
  }

  .uma-surf-section {
    background:
      linear-gradient(
        135deg,
        #073b4c,
        #63b6b0
      ) !important;
  }
}

/* ===== CORRECCIÓN DEFINITIVA VIDEO SECCIÓN SURF ===== */

.uma-surf-section {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  background: transparent !important;
}

.uma-surf-video-bg {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.uma-surf-video-bg video {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
}

.uma-surf-video-overlay {
  position: absolute !important;
  z-index: 1 !important;
  inset: 0 !important;
  background:
    linear-gradient(
      90deg,
      rgba(7, 59, 76, .76),
      rgba(7, 59, 76, .48)
    ) !important;
}

.uma-surf-section > .container {
  position: relative !important;
  z-index: 2 !important;
}

.uma-surf-widget {
  position: relative !important;
  z-index: 3 !important;
}

@media (max-width: 700px) {
  .uma-surf-video-bg video {
    object-position: 55% center !important;
  }

  .uma-surf-video-overlay {
    background: rgba(7, 59, 76, .62) !important;
  }
}

/* ===== VIDEO EXTERNO VISIBLE — SECCIÓN SURF ===== */

.uma-surf-section {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  background: #073b4c !important;
}

.uma-surf-video-bg {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.uma-surf-video-bg iframe {
  position: absolute !important;
  z-index: 0 !important;
  top: 50% !important;
  left: 50% !important;

  width: 177.77777778vh !important;
  min-width: 100% !important;
  height: 56.25vw !important;
  min-height: 100% !important;

  border: 0 !important;
  transform: translate(-50%, -50%) scale(1.12);
}

.uma-surf-video-overlay {
  position: absolute !important;
  z-index: 1 !important;
  inset: 0 !important;
  background: rgba(7, 59, 76, .48) !important;
}

.uma-surf-section > .container {
  position: relative !important;
  z-index: 2 !important;
}

.uma-surf-widget {
  position: relative !important;
  z-index: 3 !important;
}

@media (max-width: 700px) {
  .uma-surf-video-bg iframe {
    transform: translate(-50%, -50%) scale(1.7);
  }

  .uma-surf-video-overlay {
    background: rgba(7, 59, 76, .58) !important;
  }
}

/* ===== VIDEO REAL DE PLAYA — BLOQUE SURF ===== */

.uma-surf-video-bg video {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;

  display: block !important;
  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center 55% !important;

  opacity: 1 !important;
}

.uma-surf-video-bg iframe {
  display: none !important;
}

.uma-surf-video-overlay {
  z-index: 1 !important;
  background:
    linear-gradient(
      90deg,
      rgba(7, 59, 76, .60),
      rgba(7, 59, 76, .32)
    ) !important;
}

@media (max-width: 700px) {
  .uma-surf-video-bg video {
    object-position: center center !important;
  }

  .uma-surf-video-overlay {
    background: rgba(7, 59, 76, .52) !important;
  }
}

/* =========================================================
   FONDO SURF — VIDEO LOCAL DE BUYBITCOIN
   ========================================================= */

.uma-surf-section {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  background: #073b4c !important;
}

.uma-surf-video-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.uma-surf-video-bg video {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;

  display: block !important;
  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center center !important;

  opacity: 1 !important;
  visibility: visible !important;
}

.uma-surf-video-bg iframe {
  display: none !important;
}

.uma-surf-video-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;

  background:
    linear-gradient(
      90deg,
      rgba(7,59,76,.48),
      rgba(7,59,76,.20)
    ) !important;
}

.uma-surf-section > .container {
  position: relative !important;
  z-index: 2 !important;
}

.uma-surf-widget {
  position: relative !important;
  z-index: 3 !important;
}

.uma-surf-section .uma-surf-heading h2 {
  color: #ffffff !important;
}

.uma-surf-section .uma-surf-heading p {
  color: rgba(255,255,255,.88) !important;
}

.uma-surf-section .uma-surf-credit {
  color: rgba(255,255,255,.80) !important;
}

@media (max-width: 700px) {
  .uma-surf-video-bg video {
    object-position: 55% center !important;
  }

  .uma-surf-video-overlay {
    background: rgba(7,59,76,.42) !important;
  }
}

/* =========================================================
   FOOTER VILLAS UMA
   ========================================================= */

.uma-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(99, 182, 176, .18),
      transparent 28rem
    ),
    linear-gradient(
      135deg,
      #052f3d 0%,
      #073b4c 46%,
      #062b38 100%
    );
  color: #fff;
}

.uma-footer * {
  box-sizing: border-box;
}

.uma-footer a {
  color: inherit;
}

.uma-footer-decoration {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.uma-footer-sun {
  position: absolute;
  top: 3.5rem;
  right: 6%;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 112, 88, .28);
  box-shadow:
    0 0 0 2.4rem rgba(255, 112, 88, .035),
    0 0 0 4.8rem rgba(255, 112, 88, .025);
}

.uma-footer-wave {
  position: absolute;
  right: -8%;
  bottom: 7rem;
  width: 48%;
  height: 8rem;
  border-top: 1px solid rgba(99, 182, 176, .16);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.uma-footer-wave-two {
  right: -4%;
  bottom: 4rem;
  width: 38%;
  opacity: .65;
}

.uma-footer-main {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 7vw, 7rem) 0 3.5rem;
}

.uma-footer-grid {
  display: grid;
  grid-template-columns:
    minmax(15rem, 1.05fr)
    minmax(9rem, .55fr)
    minmax(15rem, .9fr)
    minmax(18rem, 1.25fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.uma-footer-brand p {
  max-width: 28rem;
  margin: 1.4rem 0 1.6rem;
  color: rgba(255, 255, 255, .76);
  font-size: .96rem;
  line-height: 1.75;
}

.uma-footer-logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: .85;
}

.uma-footer-logo-main {
  margin-left: .18rem;
  color: #63b6b0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .48rem;
}

.uma-footer-logo strong {
  color: #fff;
  font-size: clamp(3.4rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -.2rem;
}

.uma-footer-logo small {
  margin-top: .7rem;
  color: rgba(255, 255, 255, .65);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2rem;
}

.uma-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.6rem;
}

.uma-footer-badges span {
  padding: .48rem .7rem;
  border: 1px solid rgba(99, 182, 176, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .8);
  font-size: .71rem;
}

.uma-footer-book-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.15rem;
  border-radius: .75rem;
  background: #ff7058;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, .18);
  color: #fff !important;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform .2s ease,
    background .2s ease;
}

.uma-footer-book-button:hover {
  background: #ff806a;
  transform: translateY(-2px);
}

.uma-footer-column h3,
.uma-footer-form-card h3 {
  position: relative;
  margin: 0 0 1.35rem;
  padding-bottom: .8rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .02rem;
}

.uma-footer-column h3::after,
.uma-footer-form-card h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.3rem;
  height: 2px;
  border-radius: 1rem;
  background: #ff7058;
  content: "";
}

.uma-footer-links {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.uma-footer-links a {
  position: relative;
  width: fit-content;
  padding-left: 1rem;
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  text-decoration: none;
  transition:
    color .2s ease,
    transform .2s ease;
}

.uma-footer-links a::before {
  position: absolute;
  top: .42rem;
  left: 0;
  width: .32rem;
  height: .32rem;
  border-radius: 50%;
  background: #63b6b0;
  content: "";
}

.uma-footer-links a:hover {
  color: #fff;
  transform: translateX(.2rem);
}

.uma-footer-contact-info {
  display: flex;
  flex-direction: column;
}

.uma-footer-info-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .75rem;
  margin-bottom: 1.1rem;
}

.uma-footer-icon {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(99, 182, 176, .22);
  border-radius: .65rem;
  background: rgba(99, 182, 176, .09);
  color: #63b6b0;
}

.uma-footer-info-item strong {
  display: block;
  margin-bottom: .25rem;
  color: #fff;
  font-size: .75rem;
}

.uma-footer-info-item p,
.uma-footer-info-item a {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  line-height: 1.55;
  text-decoration: none;
}

.uma-footer-info-item a:hover {
  color: #63b6b0;
}

.uma-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .35rem;
}

.uma-footer-social a {
  padding: .58rem .8rem;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: .65rem;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .8);
  font-size: .73rem;
  font-weight: 700;
  text-decoration: none;
}

.uma-footer-social a:hover {
  border-color: rgba(99, 182, 176, .6);
  background: rgba(99, 182, 176, .12);
  color: #fff;
}

.uma-footer-forms {
  display: grid;
  gap: 1rem;
}

.uma-footer-form-card {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.1rem;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .085),
      rgba(255, 255, 255, .035)
    );
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, .16);
  backdrop-filter: blur(8px);
}

.uma-footer-form-kicker {
  display: block;
  margin-bottom: .35rem;
  color: #63b6b0;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13rem;
  text-transform: uppercase;
}

.uma-footer-form-card h3 {
  margin-bottom: 1rem;
}

.uma-footer-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

.uma-footer-contact-form label:nth-of-type(3) {
  grid-column: 1 / -1;
}

.uma-footer-contact-form button {
  grid-column: 1 / -1;
}

.uma-footer-form-card label {
  display: block;
}

.uma-footer-form-card label > span:not(.sr-only) {
  display: block;
  margin-bottom: .32rem;
  color: rgba(255, 255, 255, .68);
  font-size: .66rem;
  font-weight: 700;
}

.uma-footer-form-card input,
.uma-footer-form-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: .65rem;
  outline: none;
  background: rgba(0, 0, 0, .12);
  color: #fff;
  font: inherit;
  font-size: .76rem;
  transition:
    border .2s ease,
    background .2s ease;
}

.uma-footer-form-card input {
  min-height: 2.75rem;
  padding: .72rem .8rem;
}

.uma-footer-form-card textarea {
  min-height: 5rem;
  padding: .75rem .8rem;
  resize: vertical;
}

.uma-footer-form-card input::placeholder,
.uma-footer-form-card textarea::placeholder {
  color: rgba(255, 255, 255, .38);
}

.uma-footer-form-card input:focus,
.uma-footer-form-card textarea:focus {
  border-color: #63b6b0;
  background: rgba(0, 0, 0, .18);
}

.uma-footer-form-card button {
  min-height: 2.8rem;
  border: 0;
  border-radius: .65rem;
  background: #63b6b0;
  color: #073b4c;
  cursor: pointer;
  font-weight: 900;
}

.uma-footer-form-card button:hover {
  background: #76c3bd;
}

.uma-footer-newsletter {
  background:
    linear-gradient(
      135deg,
      rgba(255, 112, 88, .14),
      rgba(255, 255, 255, .045)
    );
}

.uma-footer-newsletter p {
  margin: -.2rem 0 1rem;
  color: rgba(255, 255, 255, .66);
  font-size: .75rem;
  line-height: 1.55;
}

.uma-footer-newsletter-field {
  display: grid !important;
  grid-template-columns: 1fr auto;
  gap: .5rem;
}

.uma-footer-newsletter-field button {
  padding: 0 .85rem;
  background: #ff7058;
  color: #fff;
  font-size: .72rem;
}

.uma-footer-newsletter-field button:hover {
  background: #ff806a;
}

.uma-footer-newsletter small {
  display: block;
  margin-top: .7rem;
  color: rgba(255, 255, 255, .4);
  font-size: .63rem;
}

.uma-footer-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.uma-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .13);
}

.uma-footer-bottom-inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.uma-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: .68rem;
}

.uma-footer-bottom-inner > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.uma-footer-bottom a {
  color: rgba(255, 255, 255, .58);
  font-size: .68rem;
  text-decoration: none;
}

.uma-footer-bottom a:hover {
  color: #63b6b0;
}

@media (max-width: 1180px) {
  .uma-footer-grid {
    grid-template-columns: 1.1fr .65fr 1fr;
  }

  .uma-footer-forms {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .uma-footer-main {
    padding-top: 4rem;
  }

  .uma-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .uma-footer-brand,
  .uma-footer-forms {
    grid-column: 1 / -1;
  }

  .uma-footer-contact-form {
    grid-template-columns: 1fr;
  }

  .uma-footer-contact-form label,
  .uma-footer-contact-form label:nth-of-type(3),
  .uma-footer-contact-form button {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .uma-footer-grid,
  .uma-footer-forms {
    grid-template-columns: 1fr;
  }

  .uma-footer-column,
  .uma-footer-contact-info,
  .uma-footer-forms {
    grid-column: 1;
  }

  .uma-footer-newsletter-field {
    grid-template-columns: 1fr;
  }

  .uma-footer-newsletter-field button {
    min-height: 2.75rem;
  }

  .uma-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}

/* =========================================================
   CORRECCIÓN FOOTER — PALETA ORIGINAL VILLAS UMA
   ========================================================= */

.uma-footer {
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(99, 182, 176, .18),
      transparent 24rem
    ),
    linear-gradient(
      180deg,
      #f8fcfb 0%,
      #eef8f6 55%,
      #ffffff 100%
    ) !important;

  color: #073b4c !important;
}

.uma-footer-decoration {
  opacity: 1 !important;
}

.uma-footer-sun {
  border-color: rgba(255, 112, 88, .24) !important;

  box-shadow:
    0 0 0 2.5rem rgba(255, 112, 88, .04),
    0 0 0 5rem rgba(99, 182, 176, .035) !important;
}

.uma-footer-wave {
  border-top-color: rgba(99, 182, 176, .24) !important;
}

.uma-footer-logo-main {
  color: #63b6b0 !important;
}

.uma-footer-logo strong {
  color: #073b4c !important;
}

.uma-footer-logo small {
  color: rgba(7, 59, 76, .58) !important;
}

.uma-footer-brand p {
  color: rgba(7, 59, 76, .72) !important;
}

.uma-footer-badges span {
  border-color: rgba(99, 182, 176, .36) !important;
  background: rgba(99, 182, 176, .10) !important;
  color: #073b4c !important;
}

.uma-footer-book-button {
  background: #ff7058 !important;
  color: #ffffff !important;
  box-shadow: 0 .8rem 1.8rem rgba(255, 112, 88, .20) !important;
}

.uma-footer-book-button:hover {
  background: #ff806a !important;
}

.uma-footer-column h3,
.uma-footer-form-card h3 {
  color: #073b4c !important;
}

.uma-footer-column h3::after,
.uma-footer-form-card h3::after {
  background: #ff7058 !important;
}

.uma-footer-links a {
  color: rgba(7, 59, 76, .72) !important;
}

.uma-footer-links a::before {
  background: #63b6b0 !important;
}

.uma-footer-links a:hover {
  color: #ff7058 !important;
}

.uma-footer-icon {
  border-color: rgba(99, 182, 176, .34) !important;
  background: rgba(99, 182, 176, .12) !important;
  color: #073b4c !important;
}

.uma-footer-info-item strong {
  color: #073b4c !important;
}

.uma-footer-info-item p,
.uma-footer-info-item a {
  color: rgba(7, 59, 76, .70) !important;
}

.uma-footer-info-item a:hover {
  color: #ff7058 !important;
}

.uma-footer-social a {
  border-color: rgba(99, 182, 176, .34) !important;
  background: #ffffff !important;
  color: #073b4c !important;
  box-shadow: 0 .35rem 1rem rgba(7, 59, 76, .06) !important;
}

.uma-footer-social a:hover {
  border-color: #63b6b0 !important;
  background: #63b6b0 !important;
  color: #ffffff !important;
}

.uma-footer-form-card {
  border-color: rgba(99, 182, 176, .30) !important;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .98),
      rgba(238, 248, 246, .96)
    ) !important;

  box-shadow:
    0 1rem 2.5rem rgba(7, 59, 76, .10) !important;

  backdrop-filter: none !important;
}

.uma-footer-form-kicker {
  color: #ff7058 !important;
}

.uma-footer-form-card label > span:not(.sr-only) {
  color: rgba(7, 59, 76, .70) !important;
}

.uma-footer-form-card input,
.uma-footer-form-card textarea {
  border-color: rgba(99, 182, 176, .35) !important;
  background: #ffffff !important;
  color: #073b4c !important;
}

.uma-footer-form-card input::placeholder,
.uma-footer-form-card textarea::placeholder {
  color: rgba(7, 59, 76, .38) !important;
}

.uma-footer-form-card input:focus,
.uma-footer-form-card textarea:focus {
  border-color: #63b6b0 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(99, 182, 176, .12) !important;
}

.uma-footer-form-card button {
  background: #63b6b0 !important;
  color: #073b4c !important;
}

.uma-footer-form-card button:hover {
  background: #73c5bf !important;
}

.uma-footer-newsletter {
  border-color: rgba(255, 112, 88, .28) !important;

  background:
    linear-gradient(
      135deg,
      rgba(255, 112, 88, .10),
      rgba(255, 255, 255, .98)
    ) !important;
}

.uma-footer-newsletter p {
  color: rgba(7, 59, 76, .68) !important;
}

.uma-footer-newsletter-field button {
  background: #ff7058 !important;
  color: #ffffff !important;
}

.uma-footer-newsletter-field button:hover {
  background: #ff806a !important;
}

.uma-footer-newsletter small {
  color: rgba(7, 59, 76, .46) !important;
}

.uma-footer-bottom {
  border-top-color: rgba(99, 182, 176, .22) !important;
  background: #073b4c !important;
}

.uma-footer-bottom p {
  color: rgba(255, 255, 255, .68) !important;
}

.uma-footer-bottom a {
  color: rgba(255, 255, 255, .76) !important;
}

.uma-footer-bottom a:hover {
  color: #63b6b0 !important;
}


/* =========================================================
   CTA PARALLAX + BOLETÍN HORIZONTAL
   ========================================================= */

.uma-footer-prelude {
  position: relative;
  z-index: 3;
}

/* Caja grande con fotografía */

.uma-footer-parallax-cta {
  position: relative;
  display: flex;
  min-height: clamp(25rem, 48vw, 38rem);
  align-items: center;
  overflow: hidden;

  background-image: var(--uma-footer-parallax-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.uma-footer-parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7, 59, 76, .80) 0%,
      rgba(7, 59, 76, .55) 42%,
      rgba(7, 59, 76, .12) 100%
    );
}

.uma-footer-parallax-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.uma-footer-parallax-content > span {
  display: block;
  margin-bottom: 1rem;
  color: #63b6b0;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .22rem;
  text-transform: uppercase;
}

.uma-footer-parallax-content h2 {
  max-width: 48rem;
  margin: 0 0 2rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.22rem;
  text-shadow: 0 .25rem 1.8rem rgba(0, 0, 0, .25);
}

.uma-footer-parallax-content a {
  display: inline-flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: .9rem 1.45rem;
  border-radius: .8rem;
  background: #ff7058;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .24);
  color: #ffffff;
  font-size: .84rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform .2s ease,
    background .2s ease;
}

.uma-footer-parallax-content a:hover {
  background: #ff806a;
  transform: translateY(-3px);
}

.uma-footer-parallax-content a strong {
  font-size: 1.25rem;
  font-weight: 400;
}

/* Boletín horizontal */

.uma-footer-newsletter-horizontal {
  position: relative;
  z-index: 4;
  background: #63b6b0;
}

.uma-footer-newsletter-horizontal-inner {
  display: grid;
  min-height: 10.5rem;
  grid-template-columns: minmax(20rem, 1fr) minmax(25rem, .85fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.uma-footer-newsletter-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.uma-footer-newsletter-copy > span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(7, 59, 76, .62);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .18rem;
  text-transform: uppercase;
}

.uma-footer-newsletter-copy h2 {
  margin: 0 0 .45rem;
  color: #073b4c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.uma-footer-newsletter-copy p {
  max-width: 38rem;
  margin: 0;
  color: rgba(7, 59, 76, .72);
  font-size: .82rem;
  line-height: 1.6;
}

.uma-footer-newsletter-horizontal-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .65rem;
  padding: .55rem;
  border: 1px solid rgba(7, 59, 76, .12);
  border-radius: .9rem;
  background: rgba(255, 255, 255, .22);
}

.uma-footer-newsletter-horizontal-form label {
  display: block;
}

.uma-footer-newsletter-horizontal-form input[type="email"] {
  width: 100%;
  min-height: 3.3rem;
  padding: .85rem 1rem;
  border: 0;
  border-radius: .65rem;
  outline: none;
  background: #ffffff;
  color: #073b4c;
  font: inherit;
  font-size: .82rem;
}

.uma-footer-newsletter-horizontal-form input[type="email"]::placeholder {
  color: rgba(7, 59, 76, .45);
}

.uma-footer-newsletter-horizontal-form input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(255, 112, 88, .22);
}

.uma-footer-newsletter-horizontal-form button {
  min-height: 3.3rem;
  padding: .8rem 1.3rem;
  border: 0;
  border-radius: .65rem;
  background: #ff7058;
  color: #ffffff;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
}

.uma-footer-newsletter-horizontal-form button:hover {
  background: #ff806a;
}

/* El footer inferior queda más compacto al tener una sola caja lateral */

.uma-footer-forms {
  display: block !important;
}

.uma-footer-forms .uma-footer-form-card {
  width: 100%;
}

/* Tablet */

@media (max-width: 900px) {
  .uma-footer-parallax-cta {
    background-attachment: scroll;
  }

  .uma-footer-newsletter-horizontal-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .uma-footer-newsletter-copy {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .uma-footer-newsletter-copy > span {
    writing-mode: initial;
    transform: none;
  }
}

/* Teléfono */

@media (max-width: 600px) {
  .uma-footer-parallax-cta {
    min-height: 31rem;
    background-position: 60% center;
  }

  .uma-footer-parallax-overlay {
    background: rgba(7, 59, 76, .64);
  }

  .uma-footer-parallax-content h2 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
    letter-spacing: -.12rem;
  }

  .uma-footer-newsletter-horizontal-inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .uma-footer-newsletter-horizontal-form {
    grid-template-columns: 1fr;
  }

  .uma-footer-newsletter-horizontal-form button {
    width: 100%;
  }
}


/* =========================================================
   FRANJA HORIZONTAL DE PLATAFORMAS
   ========================================================= */

.uma-booking-strip {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.8rem) 0 2.4rem;
  border-top: 1px solid rgba(99, 182, 176, .18);
  border-bottom: 1px solid rgba(99, 182, 176, .18);

  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 112, 88, .12),
      transparent 18rem
    ),
    radial-gradient(
      circle at 8% 90%,
      rgba(99, 182, 176, .18),
      transparent 20rem
    ),
    #f8fcfb;
}

.uma-booking-strip::before {
  position: absolute;
  top: -5rem;
  right: 7%;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgba(255, 112, 88, .18);
  border-radius: 50%;
  box-shadow:
    0 0 0 2rem rgba(255, 112, 88, .025),
    0 0 0 4rem rgba(99, 182, 176, .025);
  content: "";
  pointer-events: none;
}

.uma-booking-strip-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.uma-booking-strip-copy > span {
  display: block;
  margin-bottom: .8rem;
  color: #ff7058;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .17rem;
  text-transform: uppercase;
}

.uma-booking-strip-copy h2 {
  margin: 0;
  color: #073b4c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.1rem;
}

.uma-booking-strip-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .8rem;
}

.uma-booking-strip-action small {
  color: rgba(7, 59, 76, .55);
  font-size: .7rem;
}

.uma-booking-strip-action a {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  gap: 1rem;
  padding: .8rem 1.2rem;
  border-radius: .75rem;
  background: #073b4c;
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform .2s ease,
    background .2s ease;
}

.uma-booking-strip-action a:hover {
  background: #0a4b60;
  transform: translateY(-2px);
}

.uma-booking-strip-action a strong {
  color: #63b6b0;
  font-size: 1.1rem;
}

.uma-booking-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: .5rem 0 1.1rem;
}

.uma-booking-marquee::before,
.uma-booking-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(2rem, 8vw, 8rem);
  content: "";
  pointer-events: none;
}

.uma-booking-marquee::before {
  left: 0;
  background: linear-gradient(
    90deg,
    #f8fcfb,
    rgba(248, 252, 251, 0)
  );
}

.uma-booking-marquee::after {
  right: 0;
  background: linear-gradient(
    -90deg,
    #f8fcfb,
    rgba(248, 252, 251, 0)
  );
}

.uma-booking-marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding-left: 1rem;
  animation: uma-booking-scroll 35s linear infinite;
}

.uma-booking-marquee:hover .uma-booking-marquee-track {
  animation-play-state: paused;
}

.uma-booking-platform {
  display: grid;
  min-width: clamp(14rem, 19vw, 18rem);
  grid-template-columns: 3rem 1fr;
  grid-template-rows: auto auto;
  column-gap: .9rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(99, 182, 176, .25);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 .8rem 2rem rgba(7, 59, 76, .07);
}

.uma-platform-symbol {
  display: flex;
  grid-row: 1 / 3;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: .85rem;
  background:
    linear-gradient(
      135deg,
      rgba(99, 182, 176, .22),
      rgba(99, 182, 176, .08)
    );
  color: #073b4c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.uma-booking-platform strong {
  color: #073b4c;
  font-size: .9rem;
}

.uma-booking-platform small {
  color: rgba(7, 59, 76, .52);
  font-size: .68rem;
}

.uma-booking-platform-direct {
  border-color: rgba(255, 112, 88, .32);
  background:
    linear-gradient(
      135deg,
      rgba(255, 112, 88, .10),
      #fff
    );
}

.uma-booking-platform-direct .uma-platform-symbol {
  background: #ff7058;
  color: #fff;
}

.uma-booking-features {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(99, 182, 176, .18);
}

.uma-booking-features span {
  color: rgba(7, 59, 76, .66);
  font-size: .72rem;
  font-weight: 700;
}

@keyframes uma-booking-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - .5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .uma-booking-marquee-track {
    animation: none;
  }
}

@media (max-width: 800px) {
  .uma-booking-strip-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .uma-booking-strip-action {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .uma-booking-strip {
    padding-top: 3.5rem;
  }

  .uma-booking-strip-copy h2 br {
    display: none;
  }

  .uma-booking-strip-action a {
    width: 100%;
    justify-content: center;
  }

  .uma-booking-platform {
    min-width: 15rem;
  }

  .uma-booking-features {
    justify-content: flex-start;
  }
}


/* ===== LOGOS REALES DE PLATAFORMAS ===== */

.uma-platform-symbol {
  overflow: hidden;
  padding: .42rem;
  background: #ffffff !important;
  border: 1px solid rgba(7, 59, 76, .08);
}

.uma-platform-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.uma-booking-platform strong {
  display: block;
  margin-bottom: .15rem;
}

.uma-booking-platform small {
  display: block;
}

.uma-booking-platform-direct .uma-platform-symbol {
  background: #ff7058 !important;
  color: #ffffff !important;
  border: none !important;
}



/* ===== ICONOS COMPACTOS DE PLATAFORMAS ===== */

.uma-unit-platforms {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 12px 0 0 !important;
    padding: 0 !important;
    width: auto !important;
}

.uma-unit-platform {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 38px !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 50% !important;
    border: 1px solid rgba(7, 59, 76, 0.14) !important;
    text-decoration: none !important;
    overflow: hidden !important;
    box-shadow: 0 6px 16px rgba(7, 59, 76, 0.12) !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
}

.uma-unit-platform:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 9px 22px rgba(7, 59, 76, 0.18) !important;
}

.uma-unit-platform span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    font-family: Arial, sans-serif !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.uma-unit-platform-airbnb {
    background: #ff5a5f !important;
    color: #ffffff !important;
}

.uma-unit-platform-booking {
    background: #003580 !important;
    color: #ffffff !important;
}

.uma-unit-platform-direct {
    background: #63b6b0 !important;
    color: #ffffff !important;
}



/* ===== LOGOS ORIGINALES DE PLATAFORMAS ===== */
.uma-unit-platforms{
  display:flex !important;
  align-items:center !important;
  flex-wrap:wrap !important;
  gap:8px !important;
  margin:12px 0 0 !important;
  padding:0 !important;
}

.uma-unit-platform{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:38px !important;
  min-width:38px !important;
  height:38px !important;
  min-height:38px !important;
  padding:0 !important;
  border-radius:999px !important;
  background:#ffffff !important;
  border:1px solid rgba(7,59,76,.14) !important;
  box-shadow:0 6px 18px rgba(7,59,76,.12) !important;
  text-decoration:none !important;
  overflow:hidden !important;
  transition:transform .2s ease, box-shadow .2s ease !important;
}

.uma-unit-platform:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 10px 22px rgba(7,59,76,.18) !important;
}

.uma-unit-platform img{
  width:18px !important;
  height:18px !important;
  object-fit:contain !important;
  display:block !important;
}

.uma-unit-platform-booking img{
  width:19px !important;
  height:19px !important;
}

.uma-unit-platform-direct{
  width:auto !important;
  min-width:unset !important;
  padding:0 12px !important;
  background:#63b6b0 !important;
  border-color:#63b6b0 !important;
}

.uma-unit-platform-label{
  font-size:11px !important;
  font-weight:800 !important;
  line-height:1 !important;
  color:#ffffff !important;
  white-space:nowrap !important;
}


/* ==================================================
   ACCIONES COMPACTAS DE ALOJAMIENTO
   ================================================== */

.uma-booking-actions-extra {
    display: contents;
}

/*
 * El contenedor que incluye tarifa, detalles y
 * reserva directa queda organizado en dos líneas.
 */
article :has(> .btn-primary):has(> .uma-booking-actions-extra),
.uma-two-villa-content :has(> .uma-booking-actions-extra) {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
}

/* Consultar tarifa */
article :has(> .btn-primary):has(> .uma-booking-actions-extra) > strong,
.uma-two-villa-content :has(> .uma-booking-actions-extra) > strong {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 31px !important;
    margin: 0 !important;
    padding: 6px 4px !important;
    border: 1px solid #63b6b0 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #287d78 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    text-align: center !important;
    white-space: normal !important;
    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease,
        box-shadow .2s ease !important;
}

/* Ver detalles */
article :has(> .uma-booking-actions-extra) > .btn-primary,
.uma-two-villa-content :has(> .uma-booking-actions-extra) > .btn-primary,
.uma-two-villa-content :has(> .uma-booking-actions-extra) > .uma-two-villa-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 31px !important;
    margin: 0 !important;
    padding: 6px 4px !important;
    border-radius: 999px !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    line-height: 1.05 !important;
    text-align: center !important;
    white-space: normal !important;
    box-shadow: none !important;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        filter .2s ease !important;
}

/* Reserva directa */
.uma-direct-booking-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1.25 1 0 !important;
    min-width: 0 !important;
    min-height: 31px !important;
    margin: 0 !important;
    padding: 6px 5px !important;
    border: 1px solid #459f99 !important;
    border-radius: 999px !important;
    background: #63b6b0 !important;
    color: #ffffff !important;
    font-size: 9px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    text-align: center !important;
    text-decoration: none !important;
    white-space: normal !important;
    box-shadow: 0 5px 14px rgba(40, 125, 120, .18) !important;
    transition:
        transform .2s ease,
        background .2s ease,
        box-shadow .2s ease !important;
}

/* Segunda línea: plataformas */
.uma-unit-platforms {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    gap: 7px !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
}

.uma-unit-platform {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 32px !important;
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(7, 59, 76, .13) !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    box-shadow: 0 5px 14px rgba(7, 59, 76, .10) !important;
    overflow: hidden !important;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease !important;
}

.uma-unit-platform img {
    display: block !important;
    width: 17px !important;
    height: 17px !important;
    max-width: 17px !important;
    max-height: 17px !important;
    object-fit: contain !important;
}

/* Hover de todos los botones */
article :has(> .btn-primary):has(> .uma-booking-actions-extra) > strong:hover,
.uma-two-villa-content :has(> .uma-booking-actions-extra) > strong:hover {
    transform: translateY(-2px) !important;
    background: #63b6b0 !important;
    color: #ffffff !important;
    box-shadow: 0 7px 16px rgba(40, 125, 120, .18) !important;
}

article :has(> .uma-booking-actions-extra) > .btn-primary:hover,
.uma-two-villa-content :has(> .uma-booking-actions-extra) > .btn-primary:hover,
.uma-two-villa-content :has(> .uma-booking-actions-extra) > .uma-two-villa-link:hover {
    transform: translateY(-2px) !important;
    filter: brightness(.96) !important;
    box-shadow: 0 7px 16px rgba(255, 112, 88, .20) !important;
}

.uma-direct-booking-button:hover {
    transform: translateY(-2px) !important;
    background: #459f99 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 19px rgba(40, 125, 120, .28) !important;
}

.uma-unit-platform:hover {
    transform: translateY(-3px) scale(1.06) !important;
    border-color: rgba(7, 59, 76, .30) !important;
    box-shadow: 0 9px 20px rgba(7, 59, 76, .18) !important;
}

@media (max-width: 500px) {
    article :has(> .uma-booking-actions-extra) > strong,
    article :has(> .uma-booking-actions-extra) > .btn-primary,
    .uma-direct-booking-button {
        font-size: 8px !important;
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
}


/* ===== MAPA FULL WIDTH UBICACION ===== */
.uma-location-map-band {
  margin-top: 42px;
}

.uma-location-map-copy {
  margin-bottom: 18px;
}

.uma-location-map-copy span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ef7a5a;
}

.uma-location-map-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  color: #123b52;
}

.uma-location-map-copy p {
  max-width: 760px;
  margin: 0;
  color: #5a7180;
  line-height: 1.7;
}

.uma-location-map-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid rgba(18, 59, 82, 0.08);
  border-bottom: 1px solid rgba(18, 59, 82, 0.08);
  background: #d9eeea;
}

.uma-location-map-full iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

@media (max-width: 768px) {
  .uma-location-map-full iframe {
    height: 320px;
  }
}

/* =========================================================
   CONTACTO PROFESIONAL VILLAS UMA
   ========================================================= */

.uma-contact-page {
  background:
    linear-gradient(180deg, #f4faf9 0%, #ffffff 52%, #eef8f6 100%);
}

.uma-contact-hero p {
  max-width: 680px;
}

.uma-contact-intro {
  padding: 70px 0 62px;
}

.uma-contact-intro-copy {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 40px;
}

.uma-contact-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff7058;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.uma-contact-intro-copy h2,
.uma-contact-form-aside h2 {
  margin: 0;
  color: #073b4c;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.uma-contact-intro-copy p,
.uma-contact-form-aside > p {
  margin: 0;
  color: #58717b;
  font-size: 15px;
  line-height: 1.8;
}

.uma-contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.uma-contact-channel-card {
  position: relative;
  display: flex;
  min-height: 255px;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(7, 59, 76, .09);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 48px rgba(7, 59, 76, .08);
  color: #073b4c;
  text-decoration: none;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.uma-contact-channel-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(99, 182, 176, .10);
  transition: transform .3s ease;
}

.uma-contact-channel-card:hover {
  transform: translateY(-7px);
  border-color: rgba(99, 182, 176, .5);
  box-shadow: 0 24px 58px rgba(7, 59, 76, .14);
}

.uma-contact-channel-card:hover::after {
  transform: scale(1.35);
}

.uma-contact-channel-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 15px;
  background: #e8f5f3;
  color: #287d78;
  font-size: 22px;
  font-weight: 900;
}

.uma-contact-channel-card small {
  display: block;
  margin-bottom: 7px;
  color: #ff7058;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.uma-contact-channel-card h3 {
  margin: 0 0 8px;
  color: #073b4c;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.12;
}

.uma-contact-channel-card p {
  margin: 0;
  color: #687e87;
  font-size: 13px;
  line-height: 1.6;
}

.uma-contact-channel-card > strong {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: #287d78;
  font-size: 12px;
}

.uma-contact-form-section {
  padding: 72px 0 82px;
  border-top: 1px solid rgba(7, 59, 76, .07);
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(99, 182, 176, .15),
      transparent 28%
    ),
    #073b4c;
}

.uma-contact-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

.uma-contact-form-aside {
  position: sticky;
  top: 110px;
  padding: 22px 0;
}

.uma-contact-form-aside h2 {
  color: #ffffff;
}

.uma-contact-form-aside > p {
  margin-top: 22px;
  color: rgba(255, 255, 255, .68);
}

.uma-contact-aside-points {
  display: grid;
  gap: 17px;
  margin-top: 36px;
}

.uma-contact-aside-points > div {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 13px;
  align-items: start;
}

.uma-contact-aside-points span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #72c9c3;
  font-size: 10px;
  font-weight: 900;
}

.uma-contact-aside-points p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.55;
}

.uma-contact-help-box {
  margin-top: 35px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
}

.uma-contact-help-box small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
}

.uma-contact-help-box a {
  color: #72c9c3;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.uma-contact-form-card {
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .22);
}

.uma-contact-success {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 26px;
  padding: 17px;
  border: 1px solid #a7e5c3;
  border-radius: 16px;
  background: #effcf5;
  color: #17643d;
}

.uma-contact-success > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: #2f9e62;
  color: #ffffff;
  font-weight: 900;
}

.uma-contact-success strong {
  display: block;
  margin-bottom: 4px;
}

.uma-contact-success p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.uma-contact-form-heading {
  padding-bottom: 23px;
  border-bottom: 1px solid #e7efee;
}

.uma-contact-form-heading span {
  color: #ff7058;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.uma-contact-form-heading h3 {
  margin: 7px 0 0;
  color: #073b4c;
  font-family: Georgia, serif;
  font-size: 30px;
}

.uma-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  margin-top: 20px;
}

.uma-contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uma-contact-field.full {
  grid-column: 1 / -1;
  margin-top: 20px;
}

.uma-contact-field label {
  color: #173f4d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.uma-contact-field input,
.uma-contact-field select,
.uma-contact-field textarea {
  width: 100%;
  border: 1px solid #dbe8e6;
  border-radius: 13px;
  outline: none;
  background: #f8fbfb;
  color: #163b48;
  font-family: inherit;
  font-size: 13px;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.uma-contact-field input,
.uma-contact-field select {
  min-height: 48px;
  padding: 0 14px;
}

.uma-contact-field textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
  line-height: 1.6;
}

.uma-contact-field input:focus,
.uma-contact-field select:focus,
.uma-contact-field textarea:focus {
  border-color: #63b6b0;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(99, 182, 176, .13);
}

.uma-contact-form-footer {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
  padding-top: 22px;
  border-top: 1px solid #e7efee;
}

.uma-contact-form-footer p {
  max-width: 440px;
  margin: 0;
  color: #798b91;
  font-size: 10px;
  line-height: 1.55;
}

.uma-contact-form-footer button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #ff7058;
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 27px rgba(255, 112, 88, .26);
  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.uma-contact-form-footer button:hover {
  transform: translateY(-2px);
  background: #e85d47;
  box-shadow: 0 16px 32px rgba(255, 112, 88, .34);
}

.uma-contact-closing {
  padding: 70px 0;
}

.uma-contact-closing .container {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
  padding: 39px 45px;
  border-radius: 27px;
  background: #e7f5f3;
}

.uma-contact-closing span {
  color: #ff7058;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.uma-contact-closing h2 {
  max-width: 650px;
  margin: 8px 0 0;
  color: #073b4c;
  font-family: Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.07;
}

.uma-contact-closing a {
  display: inline-flex;
  min-height: 48px;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-radius: 999px;
  background: #073b4c;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.uma-contact-closing a:hover {
  transform: translateY(-2px);
  background: #125467;
}

@media (max-width: 1050px) {
  .uma-contact-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .uma-contact-form-layout {
    grid-template-columns: 1fr;
  }

  .uma-contact-form-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .uma-contact-intro {
    padding: 48px 0;
  }

  .uma-contact-intro-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .uma-contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .uma-contact-channel-card {
    min-height: 220px;
  }

  .uma-contact-form-section {
    padding: 52px 0;
  }

  .uma-contact-form-card {
    padding: 23px 18px;
  }

  .uma-contact-form-grid {
    grid-template-columns: 1fr;
  }

  .uma-contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .uma-contact-form-footer button {
    width: 100%;
  }

  .uma-contact-closing .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 24px;
  }
}

/* =========================================================
   GALERÍA ESPECTACULAR VILLAS UMA
   ========================================================= */

.uma-gallery-page {
  overflow: visible;
  background: #f4faf9;
}

.uma-gallery-editorial,
.uma-gallery-accommodations {
  padding: 78px 0;
}

.uma-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.uma-gallery-heading.centered {
  max-width: 900px;
  grid-template-columns: 1fr;
  gap: 15px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.uma-gallery-heading span,
.uma-gallery-carousel-header span,
.uma-gallery-closing span {
  display: block;
  margin-bottom: 10px;
  color: #ff7058;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.uma-gallery-heading h2,
.uma-gallery-carousel-header h2,
.uma-gallery-closing h2 {
  margin: 0;
  color: #073b4c;
  font-family: Georgia, serif;
  font-size: clamp(35px, 4.4vw, 58px);
  line-height: 1.02;
}

.uma-gallery-heading p {
  margin: 0;
  color: #647b84;
  font-size: 14px;
  line-height: 1.75;
}

/* MOSAICO */

.uma-gallery-mosaic {
  display: grid;
  grid-template-columns: 1.25fr .75fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}

.uma-gallery-mosaic-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  opacity: 0;
  transform: translateY(28px);
  box-shadow: 0 18px 50px rgba(7, 59, 76, .12);
  transition:
    opacity .7s ease,
    transform .7s ease,
    box-shadow .35s ease;
}

.uma-gallery-mosaic-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.uma-gallery-mosaic-item-1 {
  grid-row: span 2;
}

.uma-gallery-mosaic-item-4 {
  grid-column: span 2;
}

.uma-gallery-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.uma-gallery-mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(3, 35, 47, .78) 100%
    );
}

.uma-gallery-mosaic-item:hover {
  box-shadow: 0 28px 70px rgba(7, 59, 76, .22);
}

.uma-gallery-mosaic-item:hover img {
  transform: scale(1.075);
}

.uma-gallery-mosaic-item figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 19px;
  left: 20px;
  color: #fff;
}

.uma-gallery-mosaic-item figcaption span {
  display: block;
  margin-bottom: 5px;
  color: #79d0ca;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.uma-gallery-mosaic-item figcaption strong {
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.15;
}

/* VIDEO */

.uma-gallery-video-section {
  --uma-gallery-video-height: 100vh;
  --uma-gallery-video-scroll-space: clamp(320px, 58vh, 640px);
  position: relative;
  width: 100%;
  height: calc(
    var(--uma-gallery-video-height) + var(--uma-gallery-video-scroll-space)
  );
  min-height: 1080px;
  margin: 0;
  background: #073b4c;
}

.uma-gallery-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: var(--uma-gallery-video-height);
  min-height: 520px;
  overflow: hidden;
  background: #073b4c;
}

.uma-gallery-video video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.uma-gallery-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 38, 52, .88) 0%,
      rgba(3, 38, 52, .55) 42%,
      rgba(3, 38, 52, .08) 78%
    );
}

.uma-gallery-video-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
}

.uma-gallery-video-content > span {
  display: block;
  margin-bottom: 14px;
  color: #76cec8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.uma-gallery-video-content h2 {
  max-width: 800px;
  margin: 0;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
}

.uma-gallery-video-content p {
  max-width: 570px;
  margin: 22px 0 27px;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  line-height: 1.7;
}

.uma-gallery-video-content a {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  gap: 18px;
  padding: 0 21px;
  border-radius: 999px;
  background: #ff7058;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(255, 112, 88, .28);
  transition:
    transform .2s ease,
    background .2s ease;
}

.uma-gallery-video-content a:hover {
  transform: translateY(-3px);
  background: #e85e48;
}

.uma-gallery-video-control {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 30px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(3, 38, 52, .42);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    transform .2s ease,
    background .2s ease;
}

.uma-gallery-video-control:hover {
  transform: scale(1.08);
  background: rgba(255, 112, 88, .85);
}

/* GALERÍA EN PILA */

.uma-gallery-accommodations {
  position: relative;
  z-index: 2;
  background: #fff;
}

.uma-gallery-stack {
  display: grid;
  gap: 22px;
}

.uma-gallery-stack-card {
  display: grid;
  grid-template-columns: minmax(320px, .94fr) minmax(0, 1.06fr);
  min-height: 350px;
  overflow: hidden;
  border: 1px solid rgba(7, 59, 76, .08);
  border-radius: 28px;
  background: #f6fbfa;
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 0 18px 55px rgba(7, 59, 76, .08);
  transition:
    opacity .7s ease,
    transform .7s ease,
    box-shadow .3s ease;
}

.uma-gallery-stack-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
}

.uma-gallery-stack-card:nth-child(even) .uma-gallery-stack-image {
  order: 2;
}

.uma-gallery-stack-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.uma-gallery-stack-card:hover {
  box-shadow: 0 30px 75px rgba(7, 59, 76, .15);
}

.uma-gallery-stack-image {
  overflow: hidden;
}

.uma-gallery-stack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.uma-gallery-stack-card:hover .uma-gallery-stack-image img {
  transform: scale(1.06);
}

.uma-gallery-stack-content {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-content: center;
  padding: 45px;
}

.uma-gallery-stack-content > span {
  color: #63b6b0;
  font-size: 12px;
  font-weight: 900;
}

.uma-gallery-stack-content small {
  display: block;
  margin-bottom: 8px;
  color: #ff7058;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.uma-gallery-stack-content h3 {
  margin: 0 0 13px;
  color: #073b4c;
  font-family: Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.uma-gallery-stack-content p {
  max-width: 560px;
  margin: 0;
  color: #667d86;
  font-size: 13px;
  line-height: 1.7;
}

.uma-gallery-stack-content a {
  grid-column: 2;
  margin-top: 22px;
  color: #287d78;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease;
}

.uma-gallery-stack-content a:hover {
  transform: translateX(6px);
}

/* CARRUSEL */

.uma-gallery-carousel-section {
  padding: 82px 0 88px;
  background: #073b4c;
}

.uma-gallery-carousel-header {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.uma-gallery-carousel-header h2 {
  color: #fff;
}

.uma-gallery-carousel-controls {
  display: flex;
  gap: 9px;
}

.uma-gallery-carousel-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition:
    transform .2s ease,
    background .2s ease;
}

.uma-gallery-carousel-controls button:hover {
  transform: translateY(-2px);
  background: #ff7058;
}

.uma-gallery-carousel {
  display: flex;
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  padding: 0 max(4vw, calc((100vw - 1180px) / 2)) 20px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.uma-gallery-carousel::-webkit-scrollbar {
  display: none;
}

.uma-gallery-carousel-item {
  position: relative;
  flex: 0 0 min(420px, 78vw);
  height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  opacity: 0;
  transform: translateX(24px);
  scroll-snap-align: start;
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.uma-gallery-carousel-item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.uma-gallery-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .7s ease;
}

.uma-gallery-carousel-item:hover img {
  transform: scale(1.07);
}

.uma-gallery-carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 48%,
      rgba(3, 35, 47, .82) 100%
    );
  pointer-events: none;
}

.uma-gallery-carousel-item figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: #fff;
}

.uma-gallery-carousel-item figcaption span {
  display: block;
  margin-bottom: 7px;
  color: #72c9c3;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.uma-gallery-carousel-item figcaption strong {
  font-family: Georgia, serif;
  font-size: 22px;
}

/* CIERRE */

.uma-gallery-closing {
  padding: 75px 0;
  background: #eaf7f5;
}

.uma-gallery-closing .container {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.uma-gallery-closing h2 {
  max-width: 700px;
}

.uma-gallery-closing a {
  display: inline-flex;
  min-height: 50px;
  flex: 0 0 auto;
  align-items: center;
  gap: 17px;
  padding: 0 22px;
  border-radius: 999px;
  background: #073b4c;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform .2s ease,
    background .2s ease;
}

.uma-gallery-closing a:hover {
  transform: translateY(-3px);
  background: #ff7058;
}

/* LIGHTBOX */

.uma-gallery-lightbox {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(2, 24, 33, .94);
  backdrop-filter: blur(10px);
}

.uma-gallery-lightbox[hidden] {
  display: none;
}

.uma-gallery-lightbox img {
  max-width: min(1200px, 94vw);
  max-height: 88vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .45);
  animation: umaGalleryLightboxIn .3s ease;
}

.uma-gallery-lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
}

@keyframes umaGalleryLightboxIn {
  from {
    opacity: 0;
    transform: scale(.94);
  }

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

@media (max-width: 900px) {
  .uma-gallery-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .uma-gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 250px);
  }

  .uma-gallery-mosaic-item-1,
  .uma-gallery-mosaic-item-4 {
    grid-column: auto;
    grid-row: auto;
  }

  .uma-gallery-stack-card,
  .uma-gallery-stack-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .uma-gallery-stack-card:nth-child(even) .uma-gallery-stack-image {
    order: 0;
  }

  .uma-gallery-stack-image {
    height: 320px;
  }
}

@media (max-width: 760px) {
  .uma-gallery-video-section {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .uma-gallery-video {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    height: 78vh;
    min-height: 560px;
  }
}

@media (max-width: 620px) {
  .uma-gallery-editorial,
  .uma-gallery-accommodations {
    padding: 52px 0;
  }

  .uma-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .uma-gallery-mosaic-item {
    height: 310px;
  }

  .uma-gallery-video {
    min-height: 580px;
    height: 78vh;
  }

  .uma-gallery-video-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(3, 38, 52, .25),
        rgba(3, 38, 52, .88)
      );
  }

  .uma-gallery-video-content {
    top: auto;
    bottom: 70px;
    transform: none;
  }

  .uma-gallery-video-content h2 br {
    display: none;
  }

  .uma-gallery-video-control {
    right: 18px;
    bottom: 18px;
  }

  .uma-gallery-stack-content {
    grid-template-columns: 35px 1fr;
    padding: 30px 22px;
  }

  .uma-gallery-stack-content a {
    grid-column: 1 / -1;
  }

  .uma-gallery-carousel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .uma-gallery-carousel-item {
    height: 400px;
  }

  .uma-gallery-closing .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .uma-gallery-lightbox {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .uma-gallery-mosaic-item,
  .uma-gallery-stack-card,
  .uma-gallery-carousel-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .uma-gallery-mosaic-item img,
  .uma-gallery-stack-image img,
  .uma-gallery-carousel-item img {
    transition: none;
  }
}

/* ===== PANORÁMICA SUBIDA DESDE EL ADMIN ===== */

.uma-junquillal-uploaded-panorama {
  width: 100%;
  margin: 0;
  background: #073b4c;
}

.uma-junquillal-uploaded-frame {
  position: relative;
  width: 100%;
  height: 520px;
  margin: 0;
  overflow: hidden;
  background: #073b4c;
}

.uma-junquillal-uploaded-frame > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 9s cubic-bezier(.2, .7, .2, 1),
    filter .6s ease;
}

.uma-junquillal-uploaded-frame:hover > img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.uma-junquillal-uploaded-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 32, 44, .84) 0%,
      rgba(3, 32, 44, .48) 44%,
      rgba(3, 32, 44, .05) 80%
    );
}

.uma-junquillal-uploaded-frame figcaption {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  color: #ffffff;
}

.uma-junquillal-uploaded-frame figcaption > span {
  display: block;
  margin-bottom: 13px;
  color: #79d0ca;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.uma-junquillal-uploaded-frame figcaption h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}

.uma-junquillal-uploaded-frame figcaption p {
  max-width: 560px;
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, .80);
  font-size: 14px;
  line-height: 1.7;
}

.uma-junquillal-uploaded-frame figcaption a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 16px;
  padding: 0 21px;
  border-radius: 999px;
  background: #ff7058;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform .2s ease,
    background .2s ease;
}

.uma-junquillal-uploaded-frame figcaption a:hover {
  transform: translateY(-3px);
  background: #e85d47;
}

@media (max-width: 680px) {
  .uma-junquillal-uploaded-frame {
    height: 590px;
  }

  .uma-junquillal-uploaded-shade {
    background:
      linear-gradient(
        180deg,
        rgba(3, 32, 44, .10) 10%,
        rgba(3, 32, 44, .88) 84%
      );
  }

  .uma-junquillal-uploaded-frame figcaption {
    top: auto;
    bottom: 65px;
    transform: none;
  }
}
