.elementor-6673 .elementor-element.elementor-element-f4f5354{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6673 .elementor-element.elementor-element-5c39c6e.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(max-width:1024px){.elementor-6673 .elementor-element.elementor-element-5c39c6e{width:var( --container-widget-width, 788.267px );max-width:788.267px;--container-widget-width:788.267px;--container-widget-flex-grow:0;}}/* Start custom CSS for html, class: .elementor-element-5c39c6e *//* Fuente Poppins para títulos de OME Spa (debe ir hasta arriba del todo) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* ===== The Reef Playacar – Fichas informativas (estilo claro) ===== */
:root{
  --reef-bg:#f7fafc;
  --reef-surface:#ffffff;
  --reef-text:#0f172a;
  --reef-sub:#475569;
  --reef-accent:#0ea5e9;
  --reef-border:#e2e8f0;
  --reef-soft:#eef2f7;
  --reef-shadow:0 10px 30px rgba(15,23,42,.10);
  --reef-r-lg:20px;
  --reef-r-md:14px;
  --reef-gap:1.2rem;
  --reef-max:1200px;
}

.reef-info{
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Noto Sans";
  color:var(--reef-text);
  background:var(--reef-bg);
  padding:0 1rem 2rem;
  line-height:1.65;
}

/* ===== Banner ===== */
.reef-banner{
  position:relative;
  height:clamp(220px,40vw,440px);
  border-radius:var(--reef-r-lg);
  margin:1rem auto 1.2rem;
  background-size:cover;
  background-position:center;
  overflow:hidden;
  box-shadow:var(--reef-shadow);
}
.reef-banner__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(2,6,23,.15),rgba(2,6,23,.55));
}
.reef-banner__inner{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:1rem 1rem 1.2rem;
  color:#fff;
}
.reef-banner__title{
  margin:0 0 .2rem;
  font-weight:800;
  letter-spacing:.2px;
  font-size:clamp(1.4rem,3.4vw,2.2rem);
  text-shadow:0 2px 12px rgba(0,0,0,.35);
  color:#fff;
}
.reef-banner__subtitle{
  margin:0;
  opacity:.95;
  font-size:clamp(.95rem,2vw,1.05rem);
}

/* ===== Aviso ===== */
.reef-callout{
  background:#eaf6ff;
  border:1px solid #cfeaff;
  color:#063a52;
  padding:.9rem 1rem;
  border-radius:var(--reef-r-md);
  margin:0 auto 1.25rem;
  max-width:var(--reef-max);
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
}

/* ===== Layout ===== */
.reef-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:var(--reef-gap);
  max-width:var(--reef-max);
  margin:0 auto;
}
@media (min-width:700px){
  .reef-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* ===== Tarjeta ===== */
.reef-card{
  background:var(--reef-surface);
  border:1px solid var(--reef-border);
  border-radius:var(--reef-r-lg);
  overflow:hidden;
  box-shadow:var(--reef-shadow);
  display:grid;
  grid-template-rows:auto 1fr;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.reef-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(15,23,42,.14);
  border-color:#d7e3ee;
}
.reef-media{
  aspect-ratio:16/10;
  background:#e2e8f0;
}
.reef-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.reef-card__body{
  padding:1rem 1rem 1.15rem;
}
.reef-card__title{
  margin:0 0 .35rem;
  font-size:clamp(1.08rem,2.1vw,1.35rem);
  line-height:1.25;
  text-wrap:balance;
}
.reef-paragraph{
  margin:.2rem 0 .9rem;
  color:var(--reef-sub);
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
}

/* ===== Ficha (lista de datos) ===== */
.reef-specs{
  display:grid;
  gap:.5rem;
  background:var(--reef-soft);
  border:1px solid var(--reef-border);
  border-radius:12px;
  padding:.75rem .8rem;
}
.reef-specs__row{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:.6rem;
  align-items:start;
}
.reef-specs__row:not(:last-child){
  border-bottom:1px dashed #d9e1ea;
  padding-bottom:.55rem;
}
.reef-specs__row:not(:first-child){
  padding-top:.55rem;
}
.reef-specs dt{
  margin:0;
  font-weight:700;
  color:#0b2741;
  font-size:.95rem;
}
.reef-specs dd{
  margin:0;
  color:var(--reef-text);
  font-size:.98rem;
}

/* Accesibilidad y detalles */
.reef-info *::selection{
  background:#dbeafe;
}
.reef-card:focus-within{
  outline:2px solid var(--reef-accent);
  outline-offset:2px;
}
@media (prefers-color-scheme:dark){
  .reef-info{
    background:#f6f7fb;
  }
}

/* ===== Mejoras MÓVIL ===== */
@media (max-width:480px){
  .reef-banner{
    height:300px;
    border-radius:16px;
  }
  .reef-banner__overlay{
    background:linear-gradient(180deg, rgba(2,6,23,.25), rgba(2,6,23,.65));
  }
  .reef-banner__inner{
    padding:.9rem .9rem 1rem;
    text-align:center;
  }
  .reef-banner__title{
    font-size:1.6rem;
    line-height:1.2;
  }
  .reef-banner__subtitle{
    font-size:.95rem;
    opacity:.95;
  }

  .reef-callout{
    padding:.8rem .9rem;
    font-size:.95rem;
  }

  .reef-card{
    border-radius:16px;
  }
  .reef-media{
    aspect-ratio:4/3;
  }
  .reef-card__body{
    padding:.85rem .9rem 1rem;
  }
  .reef-card__title{
    font-size:1.12rem;
  }
  .reef-paragraph{
    font-size:.98rem;
  }

  .reef-specs{
    padding:.7rem .75rem;
    gap:.35rem;
  }
  .reef-specs__row{
    grid-template-columns:1fr;
    gap:.25rem;
  }
  .reef-specs dt{
    font-size:.93rem;
  }
  .reef-specs dd{
    font-size:.96rem;
  }

  .reef-grid{
    gap:.9rem;
  }
  .reef-info{
    padding:0 .8rem 1.5rem;
  }
}

/* Teléfonos muy pequeños (<=360px) */
@media (max-width:360px){
  .reef-banner{
    height:260px;
  }
  .reef-banner__title{
    font-size:1.45rem;
  }
  .reef-banner__subtitle{
    font-size:.9rem;
  }
  .reef-card__title{
    font-size:1.05rem;
  }
}

/* === Botón global The Reef (turquesa) === */
.reef-info .reef-cta{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-top:1rem;
}
.reef-info .reef-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;

  padding:.7rem 1.1rem;
  min-width:200px;
  max-width:90%;

  border-radius:999px;
  background:linear-gradient(135deg, var(--reef-accent), #0284c7);
  color:#fff;
  border:1px solid rgba(15,23,42,.08);

  font-size:.95rem;
  font-weight:600;
  letter-spacing:.02em;
  text-decoration:none;
  white-space:nowrap;
  cursor:pointer;

  box-shadow:0 8px 22px rgba(15,23,42,.18);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.reef-info .reef-btn svg{
  width:18px;
  height:18px;
  flex:0 0 auto;
}
.reef-info .reef-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 28px rgba(15,23,42,.22);
  filter:brightness(1.03);
}
.reef-info .reef-btn:active{
  transform:translateY(0);
  box-shadow:0 6px 16px rgba(15,23,42,.18);
}
.reef-info .reef-btn:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(14,165,233,.35), 0 8px 22px rgba(15,23,42,.18);
}
@media (max-width:1024px){
  .reef-info .reef-btn{
    font-size:.9rem;
    padding:.65rem .95rem;
    min-width:190px;
  }
}
@media (max-width:768px){
  .reef-info .reef-btn{
    font-size:.88rem;
    padding:.6rem .9rem;
    min-width:170px;
  }
}

/* =========================================================
   OME Spa – ajustes ESPECÍFICOS (todo blanco + acentos café)
   ========================================================= */

.reef-info--ome{
  /* Fondo del bloque OME Spa completamente blanco */
  background:#ffffff;
  color:#2d2217;
}

/* Overlay del banner en tonos oscuros/café para buen contraste */
.reef-info--ome .reef-banner__overlay{
  background:
    radial-gradient(1000px 320px at 12% 0%, rgba(176,122,74,.30), transparent 60%),
    radial-gradient(800px 260px at 88% 100%, rgba(107,74,47,.28), transparent 60%),
    linear-gradient(180deg, rgba(36,24,16,.55), rgba(36,24,16,.28) 40%, rgba(0,0,0,.28));
}

/* Título Ome Spa: Poppins y más delgado */
.reef-info--ome .reef-banner__title{
  font-family:'Poppins', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight:500;
}

/* Aviso: fondo blanco, solo borde suave en café */
.reef-info--ome .reef-callout{
  background:#ffffff;
  border:1px solid #e2d2bd;
  color:#3a2a1a;
}

/* Tarjeta totalmente blanca con borde café suave */
.reef-info--ome .reef-card{
  background:#ffffff;
  border:1px solid #e2d2bd;
  box-shadow:0 10px 30px rgba(84,60,40,.10);
}

/* Textos en gama café */
.reef-info--ome .reef-card__title{
  color:#3a2a1a;
}
.reef-info--ome .reef-paragraph{
  color:#7b6756;
}

/* OME Spa: siempre UNA columna (tarjeta a ancho completo) */
.reef-info--ome .reef-grid{
  grid-template-columns:1fr !important;
}

/* Ficha de datos en blanco (adiós rectángulo azul) */
.reef-info--ome .reef-specs{
  background:#ffffff;
  border:1px solid #e2d2bd;
}
.reef-info--ome .reef-specs__row:not(:last-child){
  border-bottom:1px dashed #e2d2bd;
}
.reef-info--ome .reef-specs dt{
  color:#3a2a1a;
}
.reef-info--ome .reef-specs dd{
  color:#4b3a2a;
}

/* Vestimenta justificada solo en OME */
.reef-info--ome .reef-specs__dd--vestimenta{
  text-align:justify;
  text-justify:inter-word;
  hyphens:auto;
  line-height:1.55;
}

/* Botón en café sobre fondo blanco */
.reef-info--ome .reef-btn{
  background:linear-gradient(135deg, #b07a4a, #6b4a2f);
  box-shadow:0 8px 22px rgba(84,60,40,.18);
}
.reef-info--ome .reef-btn:focus-visible{
  box-shadow:0 0 0 3px rgba(176,122,74,.35), 0 8px 22px rgba(84,60,40,.18);
}
:root{
  --reef-bg:#f7fafc;
  --reef-surface:#ffffff;
  --reef-text:#0f172a;
  --reef-sub:#475569;
  --reef-accent:#0ea5e9;
  --reef-border:#e2e8f0;
  --reef-soft:#eef2f7;
  --reef-shadow:0 10px 30px rgba(15,23,42,.10);
  --reef-r-lg:20px;
  --reef-r-md:14px;
  --reef-gap:1.2rem;
  --reef-max:1200px;
}

.reef-info{
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Noto Sans";
  color:var(--reef-text);
  background:var(--reef-bg);
  padding:0 1rem 2rem;
  line-height:1.65;
}

/* ===== Banner ===== */
.reef-banner{
  position:relative;
  height:clamp(220px,40vw,440px);
  border-radius:var(--reef-r-lg);
  margin:1rem auto 1.2rem;
  background-size:cover;
  background-position:center;
  overflow:hidden;
  box-shadow:var(--reef-shadow);
}
.reef-banner__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(2,6,23,.15),rgba(2,6,23,.55));}
.reef-banner__inner{position:absolute;left:0;right:0;bottom:0;padding:1rem 1rem 1.2rem;color:#fff;}
.reef-banner__title{
  margin:0 0 .2rem;
  font-weight:800;
  letter-spacing:.2px;
  font-size:clamp(1.4rem,3.4vw,2.2rem);
  text-shadow:0 2px 12px rgba(0,0,0,.35);
  color:#fff; /* << Título en blanco */
}

.reef-banner__subtitle{margin:0;opacity:.95;font-size:clamp(.95rem,2vw,1.05rem);}

/* ===== Aviso ===== */
.reef-callout{
  background:#eaf6ff;border:1px solid #cfeaff;color:#063a52;
  padding:.9rem 1rem;border-radius:var(--reef-r-md);
  margin:0 auto 1.25rem;max-width:var(--reef-max);
  text-align:justify;text-justify:inter-word;hyphens:auto;
}

/* ===== Layout ===== */
.reef-grid{
  display:grid;grid-template-columns:1fr;gap:var(--reef-gap);
  max-width:var(--reef-max);margin:0 auto;
}
@media (min-width:700px){.reef-grid{grid-template-columns:repeat(2,1fr);}}

/* ===== Tarjeta ===== */
.reef-card{
  background:var(--reef-surface);
  border:1px solid var(--reef-border);
  border-radius:var(--reef-r-lg);
  overflow:hidden;box-shadow:var(--reef-shadow);
  display:grid;grid-template-rows:auto 1fr;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.reef-card:hover{transform:translateY(-2px);box-shadow:0 14px 32px rgba(15,23,42,.14);border-color:#d7e3ee;}
.reef-media{aspect-ratio:16/10;background:#e2e8f0;}
.reef-media img{width:100%;height:100%;object-fit:cover;display:block;}

.reef-card__body{padding:1rem 1rem 1.15rem;}
.reef-card__title{margin:0 0 .35rem;font-size:clamp(1.08rem,2.1vw,1.35rem);line-height:1.25;text-wrap:balance;}
.reef-paragraph{margin:.2rem 0 .9rem;color:var(--reef-sub);text-align:justify;text-justify:inter-word;hyphens:auto;}

/* ===== Ficha (lista de datos) ===== */
.reef-specs{
  display:grid;gap:.5rem;background:var(--reef-soft);
  border:1px solid var(--reef-border);border-radius:12px;
  padding:.75rem .8rem;
}
.reef-specs__row{
  display:grid;grid-template-columns:140px 1fr;gap:.6rem;align-items:start;
}
.reef-specs__row:not(:last-child){border-bottom:1px dashed #d9e1ea;padding-bottom:.55rem;}
.reef-specs__row:not(:first-child){padding-top:.55rem;}
.reef-specs dt{
  margin:0;font-weight:700;color:#0b2741;font-size:.95rem;
}
.reef-specs dd{
  margin:0;color:var(--reef-text);font-size:.98rem;
}

/* Accesibilidad y detalles */
.reef-info *::selection{background:#dbeafe;}
.reef-card:focus-within{outline:2px solid var(--reef-accent);outline-offset:2px;}
@media (prefers-color-scheme:dark){.reef-info{background:#f6f7fb;}}
/* ===== Mejoras MÓVIL (añadir al final) ===== */
@media (max-width: 480px){
  /* Banner: más legible y compacto */
  .reef-banner{
    height: 300px; /* antes usaba clamp; aquí fijamos una altura agradable en móvil */
    border-radius: 16px;
  }
  .reef-banner__overlay{
    /* un poco más de contraste para leer el título sobre la foto */
    background: linear-gradient(180deg, rgba(2,6,23,.25), rgba(2,6,23,.65));
  }
  .reef-banner__inner{
    padding: .9rem .9rem 1rem;
    text-align: center; /* centra títulos en móvil */
  }
  .reef-banner__title{
    font-size: 1.6rem;   /* tamaño cómodo en pantallas chicas */
    line-height: 1.2;
  }
  .reef-banner__subtitle{
    font-size: .95rem;
    opacity: .95;
  }

  /* Aviso: respiración y lectura */
  .reef-callout{
    padding: .8rem .9rem;
    font-size: .95rem;
  }

  /* Cards: más compactas y legibles */
  .reef-card{
    border-radius: 16px;
  }
  .reef-media{
    aspect-ratio: 4/3; /* fotos más altas para móvil (mejor contexto visual) */
  }
  .reef-card__body{
    padding: .85rem .9rem 1rem;
  }
  .reef-card__title{
    font-size: 1.12rem;
  }
  .reef-paragraph{
    font-size: .98rem;
  }

  /* Ficha de datos: de 2 columnas -> 1 columna apilada */
  .reef-specs{
    padding: .7rem .75rem;
    gap: .35rem;
  }
  .reef-specs__row{
    grid-template-columns: 1fr;  /* apilar etiqueta/valor */
    gap: .25rem;
  }
  .reef-specs dt{
    font-size: .93rem;
  }
  .reef-specs dd{
    font-size: .96rem;
  }

  /* Ajuste de espacios globales */
  .reef-grid{
    gap: .9rem; /* un poco menos de gap en móvil */
  }
  .reef-info{
    padding: 0 .8rem 1.5rem; /* márgenes laterales un pelín menores */
  }
}

/* Teléfonos muy pequeños (<=360px) */
@media (max-width: 360px){
  .reef-banner{ height: 260px; }
  .reef-banner__title{ font-size: 1.45rem; }
  .reef-banner__subtitle{ font-size: .9rem; }
  .reef-card__title{ font-size: 1.05rem; }
}/* End custom CSS */