/* ============================================================
   Ranas Porongo — Portada / landing (basada en el diseño de Claude Design)
   ============================================================ */
.rp {
  --bg:#F6F1E8; --bg2:#EFE6D6; --card:#FBF8F1; --ink:#24211B; --muted:#6E665A;
  --line:rgba(36,33,27,.13); --green:#3C5A43; --green-d:#2f4835; --green2:#5C7A5A;
  --clay:#B06A43; --gold:#C0964E;
  background:var(--bg); color:var(--ink);
  font-family:-apple-system,BlinkMacSystemFont,'Helvetica Neue',Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
.rp *{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; }
.rp img{ display:block; max-width:100%; }
.rp ::selection{ background:#3c5a4333; color:#24211b; }

@keyframes rp-fade{ from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }
@keyframes rp-pop{ from{opacity:0;transform:translateY(14px) scale(.98)} to{opacity:1;transform:none} }
@keyframes rp-up{ from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }

/* ---------- Animaciones de scroll (revelado estilo Apple) ---------- */
/* Solo se ocultan si hay JS (progressive enhancement: sin JS todo se ve). */
.rp-js .rp-reveal{ opacity:0; transform:translateY(30px);
  transition:opacity .85s cubic-bezier(.22,.61,.36,1), transform .85s cubic-bezier(.22,.61,.36,1);
  will-change:opacity, transform; }
.rp-js .rp-reveal.is-visible{ opacity:1; transform:none; }
.rp-reveal.rp-d1{ transition-delay:.09s } .rp-reveal.rp-d2{ transition-delay:.18s }
.rp-reveal.rp-d3{ transition-delay:.27s } .rp-reveal.rp-d4{ transition-delay:.36s }
.rp-reveal.rp-d5{ transition-delay:.45s }

/* Hero: entrada suave al cargar (siempre termina visible) */

@media (prefers-reduced-motion: reduce){
  .rp-js:not([data-rp-motion-preview-override="true"]) .rp-reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  .rp-gal-item, .rp-gal-item img, .rp-gal-zoom, .rp-lb, .rp-lb-img,
  .rp-lb-nav, .rp-lb-thumb, .rp-srv-arrow{
    transition:none !important; }
  .rp-srv-card{ transition:border-color .15s ease, box-shadow .15s ease !important; }
  .rp-srv-img img{ transition:filter .15s ease !important; }
  .rp-srv-cta{ transition:background .15s ease, box-shadow .15s ease !important; }
  .rp-srv-card:hover{ transform:none !important; }
  .rp-srv-card:hover .rp-srv-img img{ transform:none !important; }
  .rp-lb-img{ opacity:1 !important; transform:none !important; }
  html{ scroll-behavior:auto; }
}

/* ---------- Tipografía / helpers ---------- */
.rp-h2{ margin:0; font-family:'Cormorant Garamond',serif; font-weight:600;
  font-size:clamp(30px,5vw,52px); line-height:1.08; letter-spacing:-.01em; }
.rp-eyebrow{ margin:0 0 16px; font-size:12.5px; font-weight:600; letter-spacing:.2em;
  text-transform:uppercase; }
.rp-clay{ color:var(--clay); }
.rp-white{ color:#fff; }
.rp-eyebrow-light{ color:rgba(255,255,255,.9); }
.rp-wrap{ max-width:1400px; margin:0 auto; padding:0 clamp(20px,5vw,64px); }
.rp-sec{ padding:clamp(52px,7vw,96px) 0; }
.rp-bg1{ background:var(--bg); }
.rp-bg2{ background:var(--bg2); }
.rp-dot{ width:7px; height:7px; border-radius:50%; background:var(--green2); flex:none; }

/* ---------- Botones ---------- */
.rp-btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:11px 22px; border-radius:999px; border:none; cursor:pointer;
  font-family:inherit; font-size:14px; font-weight:600; text-decoration:none;
  transition:background .18s ease, transform .18s ease, opacity .18s ease; }
.rp-btn-lg{ padding:16px 30px; font-size:15.5px; }
.rp-btn-block{ width:100%; padding:16px; border-radius:14px; font-size:16px; }
.rp-btn-green{ background:var(--green); color:#fff; }
.rp-btn-green:hover{ background:var(--green-d); }
.rp-intro-cta .rp-btn-green{ box-shadow:0 10px 26px rgba(60,90,67,.22); }
.rp-btn-outline{ background:transparent; border:1px solid var(--green); color:var(--green); }
.rp-btn-outline:hover{ background:#f0ece2; }
.rp-btn-glass{ background:rgba(255,255,255,.12); backdrop-filter:blur(6px); color:#fff;
  border:1px solid rgba(255,255,255,.55); }
.rp-btn-glass:hover{ background:rgba(255,255,255,.22); }
.rp-btn-gold{ background:var(--gold); color:#20281f; border-radius:12px; font-weight:700; }
.rp-btn-gold:hover{ opacity:.9; }

/* ---------- Header ---------- */
.rp-header{ position:sticky; top:0; z-index:40; background:rgba(246,241,232,.82);
  backdrop-filter:saturate(1.4) blur(14px); border-bottom:1px solid var(--line); }
.rp-header-inner{ max-width:1400px; margin:0 auto; padding:14px clamp(18px,4vw,48px);
  display:flex; align-items:center; justify-content:space-between; gap:20px; }
.rp-brand{ display:flex; align-items:center; gap:11px; text-decoration:none; }
.rp-logo{ height:40px; width:auto; }
.rp-nav{ display:flex; align-items:center; gap:26px; }
.rp-nav-link{ text-decoration:none; color:var(--ink); font-size:14px; letter-spacing:.01em;
  opacity:.82; transition:opacity .15s, color .15s; }
.rp-nav-link:hover{ opacity:1; color:var(--green); }
.rp-header-right{ display:flex; align-items:center; gap:14px; flex:none; }
.rp-lang{ display:flex; align-items:center; gap:2px; font-size:13px; font-weight:600;
  letter-spacing:.05em; color:var(--muted); }
/* Contraste >=4.5:1 (era #B6AD9E, casi invisible) y objetivo táctil ~40px:
   es el control clave del visitante extranjero. */
.rp-lang-btn{ background:none; border:none; cursor:pointer; padding:12px 9px;
  color:var(--muted); font:inherit; }
.rp-lang-btn.is-active{ color:var(--ink); text-decoration:underline;
  text-underline-offset:4px; text-decoration-thickness:2px;
  text-decoration-color:var(--gold); }
.rp-lang-sep{ opacity:.4; }
.rp-burger{ width:42px; height:42px; border:1px solid var(--line); border-radius:12px;
  background:var(--card); cursor:pointer; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:4px; }
.rp-burger span{ width:18px; height:2px; background:var(--ink); border-radius:2px; }

/* Desktop / mobile toggles */
.rp-mobile{ display:none; }
@media (max-width:860px){
  .rp-desktop{ display:none !important; }
  .rp-mobile{ display:flex; }
}

/* ---------- Menú móvil ---------- */
.rp-mobile-menu{ position:fixed; inset:0; z-index:60; background:var(--bg);
  animation:rp-fade .25s ease; display:flex; flex-direction:column;
  padding:22px clamp(20px,6vw,40px); }
.rp-mobile-menu[hidden]{ display:none; }
.rp-mobile-menu-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; }
.rp-close-sq{ width:42px; height:42px; border:1px solid var(--line); border-radius:12px;
  background:var(--card); cursor:pointer; font-size:20px; color:var(--ink);
  display:flex; align-items:center; justify-content:center; }
.rp-mobile-nav{ display:flex; flex-direction:column; gap:4px; }
.rp-mobile-nav a{ text-decoration:none; color:var(--ink); font-family:'Cormorant Garamond',serif;
  font-size:30px; font-weight:500; padding:11px 0; border-bottom:1px solid var(--line); }
.rp-mobile-cta{ display:flex; flex-direction:column; gap:12px; margin-top:auto; padding-top:24px; }
.rp-mobile-booking-link{ align-self:center; padding:7px 10px; color:var(--green); font-size:14px;
  font-weight:600; text-decoration:none; }
.rp-mobile-booking-link:hover{ text-decoration:underline; text-underline-offset:3px; }

/* ---------- Hero ---------- */
.rp-hero{ position:relative; min-height:min(calc(100vh - 69px),1080px); overflow:hidden; }
.rp-hero-bg{ position:absolute; inset:0; z-index:0; }
.rp-hero-bg picture{ display:contents; }
.rp-hero-slide{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition:opacity 1.6s ease; }
.rp-hero-slide.is-active{ opacity:1; }
.rp-hero-arrows{ position:absolute; z-index:3; right:clamp(88px,8vw,118px);
  bottom:clamp(20px,4vw,40px); display:flex; gap:10px; }
.rp-hero-arrow{ width:46px; height:46px; border-radius:50%; border:1px solid rgba(255,255,255,.4);
  background:rgba(24,33,26,.32); backdrop-filter:blur(6px); color:#fff; cursor:pointer;
  font-size:20px; display:flex; align-items:center; justify-content:center; transition:background .15s; }
.rp-hero-arrow:hover{ background:rgba(24,33,26,.6); }
.rp-hero-arrow:focus-visible{ outline:2px solid #fff; outline-offset:3px; }
@media (max-width:700px){
  .rp-hero{ min-height:calc(100svh - 69px); }
  .rp-hero-arrows{ left:20px; right:auto; bottom:24px; }
  .rp-hero-arrow{ width:40px; height:40px; }
}

/* ---------- Presentacion: el texto va DEBAJO de la foto, centrado (la foto
   queda limpia, sin velo ni texto encima) ---------- */
.rp-intro{ background:var(--bg); text-align:center;
  padding:clamp(52px,6.5vw,92px) clamp(20px,5vw,64px) clamp(44px,5.5vw,80px); }
.rp-intro-inner{ max-width:1040px; margin:0 auto; }
.rp-intro-title{ margin:0; font-family:'Cormorant Garamond',serif; font-weight:500; color:var(--ink);
  font-size:clamp(50px,7vw,104px); line-height:.98; letter-spacing:-.01em; }
.rp-intro-sub{ margin:18px auto 0; max-width:860px; font-family:'Cormorant Garamond',serif; font-style:italic;
  font-weight:500; font-size:clamp(22px,2.4vw,36px); line-height:1.25; color:var(--ink); opacity:.82; }
.rp-intro-cta{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px; margin-top:30px; }
@media (max-width:700px){
  .rp-intro-title{ font-size:clamp(46px,14vw,68px); }
  .rp-intro-sub{ font-size:22px; margin-top:12px; }
  .rp-intro-cta{ display:grid; grid-template-columns:1fr; gap:10px; margin:22px auto 0; max-width:330px; }
  .rp-intro-cta .rp-btn{ width:100%; }
}

/* ---------- Tranquilidad ---------- */
.rp-calm{ max-width:960px; margin:0 auto; padding:0 clamp(20px,5vw,64px); text-align:center; }
.rp-calm-title{ margin:0; font-family:'Cormorant Garamond',serif; font-weight:500;
  font-size:clamp(30px,5.4vw,54px); line-height:1.12; letter-spacing:-.01em; text-wrap:balance; }
.rp-calm-text{ margin:26px auto 0; max-width:620px; font-size:clamp(16px,2vw,18px);
  line-height:1.7; color:var(--muted); }

/* "Un respiro": el mapa de Porongo es el FONDO de toda la seccion (mosaico de
   OpenStreetMap suavizado a la paleta, Ranas Porongo exactamente al centro de
   la imagen y por eso la marca va al centro de la seccion). Un velo crema deja
   legible el texto arriba y transparenta el mapa abajo, donde van las fotos
   pinchadas. La atribucion va abajo a la derecha. */
.rp-respiro{ position:relative; overflow:hidden; padding:clamp(44px,5vw,60px) 0;
  background:var(--bg) url(../img/portada/mapa-porongo.webp) center/cover no-repeat; }
.rp-respiro::before{ content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg,var(--bg) 0%,rgba(246,241,232,.9) 18%,rgba(246,241,232,.42) 40%,rgba(246,241,232,.28) 100%); }
.rp-respiro > *{ position:relative; }
.rp-respiro-campo{ position:relative; max-width:1400px; height:clamp(400px,27vw,500px);
  margin:clamp(22px,3vw,34px) auto 0; padding:0 clamp(20px,5vw,64px); }
.rp-mapa-marca{ position:absolute; left:50%; top:50%; transform:translate(-50%,-100%); z-index:4;
  filter:drop-shadow(0 4px 8px rgba(24,33,26,.3)); }
.rp-mapa-marca svg{ display:block; }
.rp-mapa-etiqueta{ position:absolute; left:50%; top:50%; transform:translate(-50%,10px); z-index:4;
  padding:5px 11px; border-radius:999px; background:#fff; color:var(--ink); white-space:nowrap;
  font-size:11.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  box-shadow:0 4px 12px rgba(24,33,26,.15); }
.rp-respiro-campo figure{ margin:0; position:absolute; width:clamp(170px,23%,340px); aspect-ratio:4/3;
  border-radius:8px; box-shadow:0 18px 44px rgba(24,33,26,.22); }
.rp-respiro-campo figure img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; border-radius:8px; }
.rp-respiro-campo figure:nth-child(1){ left:4%;  top:0;   transform:rotate(-5deg);   z-index:1; }
.rp-respiro-campo figure:nth-child(2){ right:4%; top:0;   transform:rotate(3deg);    z-index:3; width:clamp(180px,25%,370px); }
.rp-respiro-campo figure:nth-child(3){ left:15%; top:42%; transform:rotate(-2.5deg); z-index:2; }
.rp-respiro-campo figure:nth-child(4){ right:14%; top:40%; transform:rotate(2deg);   z-index:4; }
.rp-respiro-campo figure:nth-child(5){ left:40%; top:52%; transform:rotate(-3deg);   z-index:1; }
/* Chinche de cada foto */
.rp-pin{ position:absolute; top:-8px; left:50%; width:16px; height:16px; margin-left:-8px; border-radius:50%; z-index:5;
  background:radial-gradient(circle at 35% 35%, #e3b96b, var(--gold) 55%, #8d6a2f);
  box-shadow:0 3px 6px rgba(24,33,26,.35); }
.rp-respiro-campo figure:nth-child(2) .rp-pin,
.rp-respiro-campo figure:nth-child(5) .rp-pin{ background:radial-gradient(circle at 35% 35%, #d9906c, var(--clay) 55%, #7a4527); }
.rp-respiro-campo figure:nth-child(3) .rp-pin{ background:radial-gradient(circle at 35% 35%, #7f9d7c, var(--green2) 55%, #2f4835); }
/* Pie con el lugar, como etiqueta sobre la foto */
.rp-respiro-campo figcaption{ position:absolute; left:10px; bottom:10px; display:flex; align-items:center; gap:5px;
  padding:5px 10px; border-radius:999px; background:rgba(255,255,255,.93); color:var(--ink);
  font-family:'Cormorant Garamond',serif; font-style:italic; font-size:15.5px; line-height:1; }
.rp-respiro-campo figcaption svg{ flex:none; color:var(--clay); }
.rp-mapa-credito{ position:absolute; right:12px; bottom:8px; z-index:4; font-size:9.5px; color:var(--muted); opacity:.75; }
@media (max-width:640px){
  .rp-respiro-campo{ height:auto; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px 14px; padding-top:12px; }
  .rp-respiro-campo figure{ position:static; width:auto; transform:rotate(-2deg) !important; }
  .rp-respiro-campo figure:nth-child(even){ transform:rotate(2deg) !important; margin-top:14px; }
  .rp-respiro-campo figure:nth-child(5){ grid-column:1/-1; width:70%; margin:8px auto 0; }
  .rp-mapa-marca,.rp-mapa-etiqueta{ display:none; }
  .rp-respiro-campo figcaption{ font-size:13px; padding:3px 8px; }
}

/* ---------- Nosotros ---------- */
.rp-about{ max-width:1400px; margin:0 auto; padding:0 clamp(20px,5vw,64px);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:clamp(32px,5vw,72px); align-items:center; }
.rp-about-text{ margin:22px 0 0; font-size:16.5px; line-height:1.75; color:var(--muted); }
.rp-about-text + .rp-about-text{ margin-top:16px; }
.rp-about-img{ position:relative; aspect-ratio:4/5; border-radius:18px; overflow:hidden;
  box-shadow:0 20px 60px rgba(24,33,26,.14); }
.rp-about-img img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

/* ---------- Banda del restaurante ---------- */
.rp-resto{ max-width:1400px; margin:0 auto; padding:0 clamp(20px,5vw,64px);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:clamp(32px,5vw,56px); align-items:center; }
.rp-resto-img{ position:relative; aspect-ratio:1/1; border-radius:18px; overflow:hidden;
  box-shadow:0 20px 60px rgba(24,33,26,.14); }
.rp-resto-img img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.rp-resto-text{ margin:20px 0 0; font-size:16.5px; line-height:1.75; color:var(--muted); }
.rp-resto-platos{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:24px; }
.rp-resto-plato{ position:relative; aspect-ratio:1/1; border-radius:12px; overflow:hidden; background:var(--bg); }
.rp-resto-plato img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.rp-resto-hours{ margin:22px 0 24px; display:flex; align-items:center; gap:9px;
  font-size:13.5px; color:var(--ink); opacity:.85; }

.rp-respiro .rp-calm-text{ margin-top:18px; }

/* Nosotros: titulo mas grande, primer parrafo como entrada en cursiva (misma voz
   que el subtitulo del hero), filete dorado y una segunda foto pequena que se
   superpone a la grande, en la linea del tablero de fotos. */
.rp-about-title{ font-size:clamp(34px,4.2vw,64px); }
.rp-about-filete{ width:46px; height:2px; margin:20px 0 22px; background:var(--gold); border-radius:2px; }
.rp-about-lead{ margin:0; font-family:'Cormorant Garamond',serif; font-style:italic; font-weight:500;
  font-size:clamp(20px,1.7vw,27px); line-height:1.35; color:var(--ink); max-width:520px; }
.rp-about-text{ font-size:clamp(16.5px,1.15vw,18.5px); max-width:520px; }
.rp-about-lead + .rp-about-text{ margin-top:18px; }
.rp-about-media{ position:relative; }
.rp-about-media .rp-about-img{ aspect-ratio:4/5; }
.rp-about-extra{ position:absolute; aspect-ratio:1/1; border-radius:12px; overflow:hidden; z-index:2;
  box-shadow:0 18px 44px rgba(24,33,26,.24); border:5px solid #fff; background:var(--bg2); }
.rp-about-extra img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
/* Tres fotos chicas "pinchadas" alrededor de la grande: abajo-izquierda, arriba-derecha y abajo-derecha */
.rp-about-extra-1{ left:-9%;  bottom:10%; width:36%; transform:rotate(-4deg); }
.rp-about-extra-2{ right:-8%; top:-5%;    width:31%; transform:rotate(3deg); }
.rp-about-extra-3{ right:-7%; bottom:-6%; width:29%; transform:rotate(-2deg); z-index:3; }
@media (max-width:640px){
  .rp-about-extra-1{ left:-3%; width:40%; }
  .rp-about-extra-2{ right:-3%; width:34%; }
  .rp-about-extra-3{ right:-2%; bottom:-4%; width:32%; }
}

/* ---------- Servicios ---------- */
.rp-sec-head{ text-align:center; max-width:640px; margin:0 auto 48px; }
.rp-services{ display:grid; grid-template-columns:repeat(12,minmax(0,1fr)); gap:26px; }
.rp-srv-card{ background:var(--card); border:1px solid var(--line); border-radius:20px;
  overflow:hidden; display:flex; flex-direction:column; cursor:pointer; color:inherit; text-decoration:none;
  grid-column:span 4;
  box-shadow:0 8px 24px rgba(24,33,26,.04);
  transition:box-shadow .35s cubic-bezier(.22,.61,.36,1), transform .35s cubic-bezier(.22,.61,.36,1), border-color .35s ease; }
.rp-srv-card--featured{ grid-column:span 6; border-color:rgba(60,90,67,.24);
  box-shadow:0 18px 44px rgba(24,33,26,.09); }
.rp-srv-card--featured .rp-srv-title{ font-size:clamp(29px,3vw,38px); }
.rp-srv-card--featured .rp-srv-desc{ max-width:520px; }
.rp-srv-card:hover{ border-color:rgba(60,90,67,.28); box-shadow:0 24px 54px rgba(24,33,26,.14);
  transform:translateY(-7px); }
.rp-srv-card:active{ transform:translateY(-2px) scale(.995); }
.rp-srv-card:focus-visible{ outline:3px solid var(--green); outline-offset:4px; }
.rp-srv-img{ position:relative; aspect-ratio:3/2; overflow:hidden; background:var(--bg2); }
.rp-srv-img::after{ content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg,transparent 62%,rgba(24,33,26,.14)); opacity:.35;
  transition:opacity .35s ease; }
.rp-srv-img img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:transform .65s cubic-bezier(.22,.61,.36,1), filter .4s ease; }
.rp-srv-card:hover .rp-srv-img img{ transform:scale(1.055); filter:saturate(1.06); }
.rp-srv-card:hover .rp-srv-img::after{ opacity:.7; }
.rp-srv-body{ padding:26px 26px 28px; display:flex; flex-direction:column; flex:1; }
.rp-srv-tag{ font-size:11.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--green2); }
.rp-srv-title{ margin:9px 0 0; font-family:'Cormorant Garamond',serif; font-weight:600;
  font-size:27px; line-height:1.1; }
.rp-srv-desc{ margin:12px 0 0; font-size:15px; line-height:1.65; color:var(--muted); }
.rp-srv-hours{ margin:18px 0 22px; display:flex; align-items:center; gap:9px;
  font-size:13.5px; color:var(--ink); opacity:.85; }
.rp-srv-cta{ margin-top:auto; align-self:flex-start; pointer-events:none;
  transition:background .25s ease, box-shadow .25s ease; }
.rp-srv-arrow{ display:inline-block; transition:transform .3s cubic-bezier(.22,.61,.36,1); }
.rp-srv-card:hover .rp-srv-cta{ background:var(--green-d); box-shadow:0 8px 22px rgba(47,72,53,.2); }
.rp-srv-card:hover .rp-srv-arrow{ transform:translateX(5px); }

@media (max-width:980px){
  .rp-srv-card--featured{ grid-column:1/-1; }
  .rp-srv-card:not(.rp-srv-card--featured){ grid-column:span 6; }
}
@media (max-width:640px){
  .rp-services{ grid-template-columns:1fr; }
  .rp-srv-card,.rp-srv-card--featured,.rp-srv-card:not(.rp-srv-card--featured){ grid-column:1; }
}

@media (hover:none){
  .rp-srv-card:active{ border-color:rgba(60,90,67,.28); box-shadow:0 14px 34px rgba(24,33,26,.12); }
}

/* ---------- Galería (carrusel infinito) ---------- */
.rp-gal-head{ display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between;
  gap:16px; margin-bottom:40px; }
.rp-gal-lead{ margin:0; max-width:360px; font-size:15px; line-height:1.6; color:var(--muted); }
.rp-gal-marquee{ position:relative; overflow:hidden; cursor:grab; touch-action:pan-y;
  -webkit-user-select:none; user-select:none;
  /* Full-bleed: la banda ocupa todo el ancho de la pantalla, no solo el
     contenedor. Un difuminado sutil en las orillas hace que las fotos
     "salgan" y "se escondan" suavemente. */
  margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 clamp(28px,4vw,72px),#000 calc(100% - clamp(28px,4vw,72px)),transparent);
          mask-image:linear-gradient(90deg,transparent,#000 clamp(28px,4vw,72px),#000 calc(100% - clamp(28px,4vw,72px)),transparent); }
.rp-gal-marquee.rp-grabbing{ cursor:grabbing; }
/* Banda-collage: 2 filas que se desplazan en horizontal. Las fotos toman
   tamaños variados (grande, verticales, pequeñas apiladas) para dar aire de
   collage, tejiendo en columnas sin huecos (patrón cada 4 por posición).
   El movimiento lo controla el JS (funciona aun con "reducir movimiento"). */
.rp-gal-track{ --rp-band:clamp(520px,62vw,940px);
  display:grid; grid-template-rows:repeat(2,1fr); grid-auto-flow:column;
  grid-auto-columns:calc(var(--rp-band) * 0.66); gap:14px;
  height:var(--rp-band); width:max-content; will-change:transform; }
/* Tamaños del mosaico (por posición, para que teja siempre):
   t0 = grande (2×2) · t1 = vertical alta (1×2) · t2 y t3 = pequeñas (1×1). */
.rp-gal-item.rp-t0{ grid-column:span 2; grid-row:span 2; }
.rp-gal-item.rp-t1{ grid-row:span 2; }
.rp-gal-item{ position:relative; margin:0; padding:0; border:0; border-radius:14px; overflow:hidden;
  cursor:pointer; background:var(--bg2); font:inherit; color:inherit; -webkit-tap-highlight-color:transparent;
  transition:transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s cubic-bezier(.22,.61,.36,1); }
.rp-gal-item img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .7s cubic-bezier(.22,.61,.36,1); }
@media (max-width:600px){ .rp-gal-track{ --rp-band:clamp(260px,70vw,340px); gap:10px; } }
.rp-gal-item::after{ content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  background:linear-gradient(to top, rgba(36,33,27,.42), rgba(36,33,27,0) 46%);
  opacity:0; transition:opacity .5s ease; }
.rp-gal-item:focus-visible{ outline:2px solid var(--green); outline-offset:3px; }
.rp-gal-zoom{ position:absolute; right:12px; bottom:12px; z-index:2; width:40px; height:40px;
  border-radius:50%; display:grid; place-items:center; color:var(--ink);
  background:rgba(251,248,241,.94); box-shadow:0 6px 18px -6px rgba(36,33,27,.45);
  opacity:0; transform:translateY(10px) scale(.9);
  transition:opacity .45s ease, transform .45s cubic-bezier(.22,.61,.36,1); }
.rp-gal-zoom svg{ width:18px; height:18px; }
@media (hover:hover){
  .rp-gal-item:hover{ transform:scale(1.05); box-shadow:0 26px 50px -22px rgba(36,33,27,.6); z-index:3; }
  .rp-gal-item:hover img{ transform:scale(1.08); }
  .rp-gal-item:hover::after{ opacity:1; }
  .rp-gal-item:hover .rp-gal-zoom{ opacity:1; transform:none; }
}
.rp-gal-item:active{ transform:scale(.99); }

/* ---------- Lightbox / visor de galería ---------- */
.rp-lb{ position:fixed; inset:0; z-index:130; display:flex; align-items:center; justify-content:center;
  padding:clamp(16px,4vw,56px); background:rgba(24,33,26,.9);
  -webkit-backdrop-filter:blur(12px) saturate(1.15); backdrop-filter:blur(12px) saturate(1.15);
  opacity:0; transition:opacity .4s ease; }
.rp-lb[hidden]{ display:none; }
.rp-lb.is-open{ opacity:1; }
.rp-lb-stage{ position:relative; margin:0; max-width:min(1080px,100%); display:flex;
  align-items:center; justify-content:center; }
.rp-lb-img{ max-width:100%; max-height:76vh; display:block; object-fit:contain; border-radius:14px;
  box-shadow:0 34px 90px -24px rgba(0,0,0,.75); opacity:0; transform:scale(.94);
  transition:opacity .45s ease, transform .6s cubic-bezier(.22,.61,.36,1); }
.rp-lb-img.is-in{ opacity:1; transform:none; }
.rp-lb-close{ position:absolute; top:clamp(14px,3vw,26px); right:clamp(14px,3vw,26px); z-index:3;
  background:rgba(251,248,241,.94); border:0; }
.rp-lb-nav{ position:absolute; top:50%; transform:translateY(-50%); z-index:2; width:52px; height:52px;
  border-radius:50%; border:0; cursor:pointer; display:grid; place-items:center; color:var(--ink);
  background:rgba(251,248,241,.92); box-shadow:0 8px 24px -8px rgba(0,0,0,.5);
  transition:background .3s ease, transform .3s cubic-bezier(.22,.61,.36,1), opacity .3s ease; }
.rp-lb-nav:hover{ background:#fff; }
.rp-lb-prev{ left:clamp(10px,3vw,36px); }
.rp-lb-next{ right:clamp(10px,3vw,36px); }
.rp-lb-prev:hover{ transform:translateY(-50%) translateX(-3px); }
.rp-lb-next:hover{ transform:translateY(-50%) translateX(3px); }
.rp-lb-nav svg{ width:24px; height:24px; }
.rp-lb-count{ position:absolute; top:clamp(16px,3vw,28px); left:50%; transform:translateX(-50%); z-index:3;
  font-size:13px; letter-spacing:.12em; font-weight:600; color:rgba(251,248,241,.92);
  background:rgba(24,33,26,.4); padding:7px 15px; border-radius:999px;
  border:1px solid rgba(251,248,241,.16); }
.rp-lb-thumbs{ position:absolute; left:0; right:0; bottom:clamp(14px,3vw,24px); z-index:3;
  display:flex; gap:10px; justify-content:center; padding:2px 16px; overflow-x:auto;
  scrollbar-width:none; }
.rp-lb-thumbs::-webkit-scrollbar{ display:none; }
.rp-lb-thumb{ flex:none; width:58px; height:44px; border-radius:9px; overflow:hidden; padding:0; cursor:pointer;
  border:2px solid transparent; background:none; opacity:.5;
  transition:opacity .3s ease, border-color .3s ease, transform .3s cubic-bezier(.22,.61,.36,1); }
.rp-lb-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.rp-lb-thumb:hover{ opacity:.85; }
.rp-lb-thumb.is-active{ opacity:1; border-color:var(--gold); transform:translateY(-3px); }
@media (max-width:640px){
  .rp-lb-nav{ width:42px; height:42px; }
  .rp-lb-nav svg{ width:20px; height:20px; }
  .rp-lb-img{ max-height:64vh; }
  .rp-lb-thumb{ width:48px; height:38px; }
}

/* ---------- Descubre Porongo ---------- */
.rp-green-bg{ background:var(--green); color:#fff; }
.rp-por-head{ max-width:660px; margin:0 auto 52px; text-align:center; }
.rp-por-eyebrow{ color:rgba(255,255,255,.72); }
.rp-por-lead{ margin:24px auto 0; max-width:560px; font-size:16.5px; line-height:1.7; color:rgba(255,255,255,.82); }
.rp-por-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.rp-por-img{ position:relative; aspect-ratio:4/3; border-radius:16px; overflow:hidden;
  box-shadow:0 16px 44px rgba(0,0,0,.28); }
.rp-por-img img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.rp-por-title{ margin:20px 0 0; font-family:'Cormorant Garamond',serif; font-weight:600; font-size:25px; color:#fff; }
.rp-por-desc{ margin:9px 0 0; font-size:14.5px; line-height:1.65; color:rgba(255,255,255,.78); }
/* Tarjetas clicables (abren el detalle del atractivo) */
.rp-por-clickable{ cursor:pointer; }
.rp-por-clickable .rp-por-img img{ transition:transform .55s cubic-bezier(.22,.61,.36,1); }
.rp-por-clickable:hover .rp-por-img img{ transform:scale(1.06); }
.rp-por-more{ display:inline-block; margin:14px 0 0; font-size:14px; font-weight:600;
  color:var(--gold); transition:transform .2s ease; }
.rp-por-clickable:hover .rp-por-more{ transform:translateX(4px); }
.rp-por-clickable:focus-visible{ outline:2px solid rgba(255,255,255,.75); outline-offset:5px; border-radius:16px; }

/* ---------- Reservas ---------- */
.rp-res-wrap{ max-width:1120px; margin:0 auto; padding:0 clamp(20px,5vw,64px); }
.rp-res-card{ background:var(--card); border:1px solid var(--line); border-radius:26px;
  padding:clamp(36px,5vw,64px); text-align:center; box-shadow:0 24px 70px rgba(24,33,26,.10); }
.rp-res-text{ margin:20px auto 0; max-width:520px; font-size:16.5px; line-height:1.65; color:var(--muted); }
.rp-res-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:34px auto 0;
  max-width:760px; }
.rp-res-opt{ display:flex; flex-direction:column; align-items:center; gap:8px; padding:22px 16px;
  border-radius:16px; background:var(--card); border:1px solid var(--green); color:var(--green);
  cursor:pointer; font-family:inherit; font-size:15px; font-weight:600; text-decoration:none;
  transition:background .15s; }
.rp-res-opt:hover{ background:#f0ece2; }
.rp-res-opt::after{ content:'→'; font-size:16px; font-weight:500; transition:transform .18s ease; }
.rp-res-opt:hover::after{ transform:translateX(3px); }
.rp-res-opt--primary{ background:var(--green); border-color:var(--green); color:#fff;
  box-shadow:0 10px 28px rgba(47,72,53,.18); }
.rp-res-opt--primary:hover{ background:var(--green-d); }

/* ---------- Ubicación ---------- */
.rp-loc{ max-width:1400px; margin:0 auto; padding:0 clamp(20px,5vw,64px);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:clamp(28px,4vw,56px); align-items:center; }
.rp-loc-text{ margin:18px 0 0; font-size:16.5px; line-height:1.7; color:var(--muted); }
.rp-loc-addr{ margin:24px 0 0; padding-left:14px; border-left:2px solid var(--green2); }
.rp-loc-addr-1{ font-weight:600; font-size:16px; }
.rp-loc-addr-2{ font-size:14px; color:var(--muted); margin-top:2px; }
.rp-hours{ margin:26px 0 0; padding-top:24px; border-top:1px solid var(--line); }
.rp-hours-title{ font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--green2); margin-bottom:14px; }
.rp-hours-row{ display:flex; justify-content:space-between; gap:16px; font-size:14.5px;
  border-bottom:1px dotted var(--line); padding-bottom:10px; margin-bottom:11px; }
.rp-hours-row span:first-child{ font-weight:600; color:var(--ink); }
.rp-hours-row span:last-child{ color:var(--muted); text-align:right; }
.rp-map{ position:relative; aspect-ratio:1/1; max-height:520px; border-radius:20px; overflow:hidden;
  border:1px solid var(--line); box-shadow:0 18px 50px rgba(24,33,26,.12); }
.rp-map iframe{ width:100%; height:100%; border:0; filter:saturate(.9); }
.rp-visitor-callout{ max-width:1072px; margin:clamp(28px,4vw,44px) auto 0;
  padding:18px 22px; display:flex; align-items:center; justify-content:space-between; gap:20px;
  color:var(--ink); background:rgba(251,248,241,.66); border:1px solid var(--line);
  border-radius:16px; text-decoration:none;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.rp-visitor-callout strong{ display:block; font-family:'Cormorant Garamond',serif;
  font-size:clamp(22px,3vw,29px); line-height:1.1; }
.rp-visitor-callout small{ display:block; margin-top:5px; color:var(--muted); font-size:14px; line-height:1.5; }
.rp-visitor-arrow{ width:40px; height:40px; flex:none; display:grid; place-items:center;
  color:#fff; background:var(--green); border-radius:50%; transition:transform .2s ease; }
.rp-visitor-callout:hover{ transform:translateY(-2px); border-color:rgba(60,90,67,.35);
  box-shadow:0 14px 32px rgba(47,72,53,.09); }
.rp-visitor-callout:hover .rp-visitor-arrow{ transform:translateX(3px); }

/* ---------- Footer / contacto ---------- */
.rp-footer{ background:#20281f; color:#fff; }
.rp-footer-inner{ max-width:1400px; margin:0 auto; padding:clamp(56px,8vw,96px) clamp(20px,5vw,64px); }
.rp-footer-head{ max-width:520px; margin-bottom:36px; }
.rp-footer-eyebrow{ color:rgba(255,255,255,.55); }
.rp-footer-lead{ margin:16px 0 0; font-size:16px; line-height:1.6; color:rgba(255,255,255,.7); }
.rp-form-card{ max-width:640px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12);
  border-radius:20px; padding:clamp(22px,3vw,32px); margin-bottom:40px; }
.rp-form-heading{ font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:600; color:#fff; margin-bottom:6px; }
.rp-form-sub{ margin:0 0 18px; font-size:14.5px; line-height:1.55; color:rgba(255,255,255,.65); }
.rp-field{ display:flex; flex-direction:column; gap:7px; font-size:12.5px; font-weight:600;
  color:rgba(255,255,255,.8); }
.rp-field input, .rp-field select, .rp-field textarea{ border:1px solid rgba(255,255,255,.18);
  border-radius:11px; padding:12px 13px; font-size:15px; font-family:inherit;
  background:rgba(255,255,255,.06); color:#fff; outline:none; }
.rp-field textarea{ resize:vertical; }
.rp-field select option{ color:#20281f; }
.rp-form-row2{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:14px; margin-bottom:14px; }
.rp-form-row-phone{ display:grid; grid-template-columns:minmax(140px,1fr) 1.4fr; gap:14px; margin-bottom:14px; }
.rp-form-card .rp-field:last-of-type{ margin-bottom:0; }
.rp-form-send{ margin-top:16px; }
.rp-form-msg{ margin:14px 0 0; font-size:14px; line-height:1.5; }
.rp-form-ok{ color:#8fd19e; }
.rp-form-err{ color:#e8a89a; }
.rp-footer-cols{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:32px; }
.rp-footer-col-title{ font-size:12px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(255,255,255,.5); margin-bottom:14px; }
.rp-footer-contact{ display:inline-flex; align-items:center; gap:10px; color:#fff; text-decoration:none;
  font-size:19px; font-weight:600; }
.rp-footer-contact:hover{ color:var(--gold); }
.rp-footer-mail{ display:inline-flex; align-items:center; gap:9px; margin-top:12px;
  color:rgba(255,255,255,.85); text-decoration:none; font-size:15px; font-weight:600; }
.rp-footer-mail:hover{ color:var(--gold); }
.rp-footer-addr{ margin:12px 0 0; font-size:14px; color:rgba(255,255,255,.6); }
.rp-footer-social{ display:block; color:rgba(255,255,255,.85); text-decoration:none; font-size:15px; margin-bottom:10px; }
.rp-footer-social:hover{ color:#fff; }
.rp-footer-link{ display:block; text-align:left; background:none; border:none; padding:0 0 10px;
  cursor:pointer; font-family:inherit; color:rgba(255,255,255,.85); font-size:15px; }
.rp-footer-link:hover{ color:#fff; }
.rp-footer-rights{ margin-top:56px; padding-top:22px; border-top:1px solid rgba(255,255,255,.14);
  font-size:13px; color:rgba(255,255,255,.5); }
.rp-field-label{ font-size:13px; font-weight:600; color:var(--ink); margin-bottom:9px; }

/* ---------- WhatsApp flotante ---------- */
.rp-wa-float{ position:fixed; right:clamp(16px,3vw,28px); bottom:clamp(16px,3vw,28px); z-index:80;
  display:flex; align-items:center; justify-content:center; width:54px; height:54px;
  border-radius:50%; background:#25D366; box-shadow:0 12px 34px rgba(37,211,102,.42);
  text-decoration:none; transition:transform .15s; }
.rp-wa-float:hover{ transform:scale(1.06); }

/* ---------- Overlays de detalle ---------- */
.rp-detail{ position:fixed; inset:0; z-index:95; background:var(--bg); overflow-y:auto;
  animation:rp-fade .25s ease; }
.rp-detail[hidden]{ display:none; }
.rp-detail-bar{ position:sticky; top:0; z-index:5; display:flex; align-items:center; gap:14px;
  padding:11px clamp(16px,4vw,44px); background:rgba(246,241,232,.85);
  backdrop-filter:saturate(1.4) blur(14px); border-bottom:1px solid var(--line); }
.rp-detail-bar .rp-close-sq{ flex:none; width:38px; height:38px; border-radius:10px; font-size:18px; }
.rp-detail-bar-title{ flex:1; min-width:0; font-family:'Cormorant Garamond',serif; font-weight:600;
  font-size:19px; line-height:1; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.rp-detail-bar .rp-btn{ flex:none; }
.rp-detail-hero-wrap{ max-width:1080px; margin:0 auto; padding:clamp(38px,6vw,76px) clamp(20px,5vw,64px) 0; text-align:center; }
.rp-detail-title{ margin:0; font-family:'Cormorant Garamond',serif; font-weight:600;
  font-size:clamp(34px,6vw,62px); line-height:1.03; letter-spacing:-.01em; }
.rp-detail-tagline{ margin:18px auto 0; max-width:600px; font-size:clamp(17px,2.2vw,21px); line-height:1.5; color:var(--muted); }
.rp-detail-hero{ position:relative; margin:34px 0 0; border-radius:22px; overflow:hidden; aspect-ratio:16/9;
  box-shadow:0 24px 70px rgba(24,33,26,.16); }
.rp-detail-hero img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.rp-detail-intro{ max-width:720px; margin:0 auto; padding:clamp(46px,7vw,86px) clamp(20px,5vw,64px); text-align:center; }
.rp-detail-intro p{ margin:0; font-family:'Cormorant Garamond',serif; font-size:clamp(24px,3.4vw,34px);
  line-height:1.35; color:var(--ink); text-wrap:balance; }
/* Cuerpo de texto de los atractivos de Porongo (intro + párrafos) */
.rp-detail-body{ max-width:720px; margin:0 auto; padding:clamp(40px,6vw,72px) clamp(20px,5vw,64px); }
.rp-detail-body .rp-detail-lead{ margin:0 0 24px; font-family:'Cormorant Garamond',serif;
  font-size:clamp(24px,3.4vw,34px); line-height:1.35; color:var(--ink); text-align:center; text-wrap:balance; }
.rp-detail-body p{ margin:0 0 18px; font-size:16.5px; line-height:1.75; color:var(--muted); }
.rp-detail-body p:last-child{ margin-bottom:0; }
.rp-detail-feats{ max-width:1080px; margin:0 auto; padding:0 clamp(20px,5vw,64px);
  display:flex; flex-direction:column; gap:20px; }
.rp-detail-feat{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  background:var(--card); border:1px solid var(--line); border-radius:22px; overflow:hidden; }
.rp-detail-feat-img{ aspect-ratio:4/3; position:relative; overflow:hidden; }
.rp-detail-feat-img img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.rp-detail-feat-body{ padding:clamp(28px,4vw,48px); display:flex; flex-direction:column; justify-content:center; }
.rp-detail-feat-body h3{ margin:0; font-family:'Cormorant Garamond',serif; font-weight:600;
  font-size:clamp(24px,3vw,32px); line-height:1.1; }
.rp-detail-feat-body p{ margin:14px 0 0; font-size:16px; line-height:1.65; color:var(--muted); }
.rp-detail-info-wrap{ max-width:1080px; margin:0 auto; padding:clamp(46px,7vw,86px) clamp(20px,5vw,64px); }
.rp-detail-info{ display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1px;
  background:var(--line); border:1px solid var(--line); border-radius:20px; overflow:hidden; }
.rp-detail-info-cell{ background:var(--bg2); padding:26px 24px; }
.rp-detail-info-label{ font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--clay); margin-bottom:8px; }
.rp-detail-info-value{ font-size:16px; color:var(--ink); line-height:1.4; }
.rp-detail-cta{ text-align:center; margin-top:clamp(40px,6vw,68px); }

/* ---------- Modal evento ---------- */
.rp-modal{ position:fixed; inset:0; z-index:90; background:rgba(24,33,26,.55);
  backdrop-filter:blur(4px); display:flex; align-items:center; justify-content:center;
  padding:20px; animation:rp-fade .2s ease; }
.rp-modal[hidden]{ display:none; }
.rp-modal-box{ width:min(96vw,560px); max-height:92vh; overflow-y:auto; background:var(--bg);
  border-radius:22px; box-shadow:0 30px 80px rgba(24,33,26,.4); animation:rp-pop .24s ease; }
.rp-modal-head{ display:flex; align-items:flex-start; gap:14px; padding:26px 28px 18px; }
.rp-modal-title{ margin:0; font-family:'Cormorant Garamond',serif; font-weight:600; font-size:30px; line-height:1.05; }
.rp-modal-sub{ margin:8px 0 0; font-size:14.5px; line-height:1.55; color:var(--muted); }
.rp-modal-head .rp-close-sq{ flex:none; width:34px; height:34px; border-radius:10px; font-size:19px; }
.rp-modal-body{ padding:4px 28px 28px; display:flex; flex-direction:column; gap:16px; }
.rp-modal-body .rp-field{ color:var(--ink); font-size:13px; }
.rp-modal-body .rp-field input, .rp-modal-body .rp-field select, .rp-modal-body .rp-field textarea{
  border:1px solid var(--line); background:var(--card); color:var(--ink); }
.rp-modal-body .rp-form-row2, .rp-modal-body .rp-form-row-phone{ margin-bottom:0; }
.rp-chips{ display:flex; flex-wrap:wrap; gap:10px; }
.rp-chip{ padding:11px 18px; border-radius:999px; border:1px solid var(--line); background:var(--card);
  color:var(--ink); cursor:pointer; font-family:inherit; font-size:14px; font-weight:600; }
.rp-chip.is-on{ background:var(--green); border-color:var(--green); color:#fff; }
.rp-modal-actions{ display:flex; gap:12px; margin-top:4px; }
.rp-modal-actions .rp-btn-outline{ flex:none; border-radius:12px; padding:14px 22px; }
.rp-modal-submit{ flex:1; border-radius:12px; padding:14px 22px; }

/* ---------- Body scroll-lock cuando hay overlay ---------- */
body.rp-lock{ overflow:hidden; }

/* ---------- Ajustes responsive ---------- */
@media (max-width:620px){
  .rp-res-grid{ grid-template-columns:1fr; }
  .rp-form-row-phone{ grid-template-columns:1fr; }
}
