:root{
  --blue:#0062a8;
  --blue-dark:#064a84;
  --sky:#49a6e9;
  --green:#5fa532;
  --green-dark:#3f8e2c;
  --lime:#b8d42b;
  --wood:#c56e2d;
  --ink:#152236;
  --muted:#667085;
  --line:#e5eef7;
  --bg:#f6fbff;
  --white:#fff;
  --shadow:0 18px 45px rgba(0,56,105,.12);
  --radius:24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#fff 0%,var(--bg) 55%,#fff 100%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font:inherit}
.container{width:min(1180px,calc(100% - 32px));margin-inline:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px min(36px,4vw);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(0,98,168,.08);
}
.brand img{width:190px;height:auto}
.nav{display:flex;align-items:center;gap:24px;font-size:15px;font-weight:800}
.nav a:not(.nav-cta){position:relative}
.nav a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-10px;
  height:3px;
  border-radius:999px;
  background:var(--blue);
  transform:scaleX(0);
  transition:.25s ease;
}
.nav a:hover::after,.nav a:first-child::after{transform:scaleX(1)}
.nav-cta{
  background:var(--blue);
  color:white;
  padding:12px 20px;
  border-radius:999px;
  box-shadow:0 12px 24px rgba(0,98,168,.22);
}
.menu-toggle{display:none;background:none;border:0;gap:5px;flex-direction:column}
.menu-toggle span{width:26px;height:3px;border-radius:999px;background:var(--blue)}

.hero{position:relative;min-height:680px;overflow:hidden}
.hero-slides{position:absolute;inset:0}
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center right;
  opacity:0;
  transform:scale(1.03);
  transition:opacity 1s ease, transform 6s ease;
}
.hero-slide.active{opacity:1;transform:scale(1)}
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.88) 33%,rgba(255,255,255,.25) 58%,rgba(255,255,255,.02) 100%),
    linear-gradient(180deg,rgba(255,255,255,.2) 0%,rgba(255,255,255,.78) 100%);
}
.hero-grid{position:relative;z-index:1;display:grid;min-height:680px;align-items:center}
.hero-copy{max-width:600px;padding:76px 0 120px}
.eyebrow{
  display:inline-flex;
  color:var(--green-dark);
  background:rgba(95,165,50,.12);
  border:1px solid rgba(95,165,50,.2);
  padding:8px 14px;
  border-radius:999px;
  font-weight:900;
  margin:0 0 18px;
}
h1,h2,h3,p{margin-top:0}
h1{
  color:var(--blue-dark);
  font-size:clamp(42px,6vw,72px);
  line-height:1.03;
  letter-spacing:-.05em;
  margin-bottom:22px;
}
.lead{
  color:#374151;
  font-size:20px;
  line-height:1.55;
  max-width:530px;
  margin-bottom:30px;
}
.hero-actions,.cta-actions{display:flex;gap:16px;flex-wrap:wrap;align-items:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:56px;
  padding:0 24px;
  border-radius:14px;
  font-weight:900;
  border:1px solid transparent;
  transition:.25s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn svg{width:24px;height:24px;fill:currentColor}
.btn-whatsapp{
  color:#fff;
  background:linear-gradient(135deg,#5faf3b,#2ea644);
  box-shadow:0 16px 34px rgba(46,166,68,.25);
}
.btn-airbnb{
  color:#ef4c5c;
  background:#fff;
  border-color:rgba(239,76,92,.26);
  box-shadow:0 14px 28px rgba(239,76,92,.10);
}
.btn-airbnb::before{
  content:"⌂";
  font-weight:900;
  border:2px solid currentColor;
  width:22px;height:22px;
  border-radius:9px;
  display:grid;
  place-items:center;
  line-height:1;
}
.contact-line{
  display:flex;
  align-items:center;
  gap:18px;
  margin-top:24px;
  color:#344054;
  font-weight:800;
  flex-wrap:wrap;
}
.contact-line span{height:24px;width:1px;background:#ccd6e3}
.hero-dots{display:flex;gap:10px;margin-top:28px}
.hero-dots button{
  width:12px;height:12px;
  border-radius:50%;
  border:0;
  background:rgba(0,98,168,.25);
  cursor:pointer;
}
.hero-dots button.active{background:var(--blue);transform:scale(1.2)}

.feature-bar{
  position:relative;
  z-index:5;
  margin-top:-50px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:20px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  overflow:hidden;
}
.feature-bar article{
  min-height:100px;
  padding:22px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-weight:900;
  border-right:1px solid var(--line);
  text-align:center;
}
.feature-bar article:last-child{border-right:0}
.feature-bar span{color:var(--blue);font-size:34px;line-height:1}

.section{padding:78px 0}
.section.compact{padding-top:28px}
.section-title{text-align:center;margin-bottom:34px}
.section-title p{
  color:var(--green-dark);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:13px;
  margin-bottom:6px;
}
.section-title h2,.panel h2,.map-copy h2{
  color:var(--blue-dark);
  font-size:clamp(28px,3vw,40px);
  line-height:1.1;
  margin-bottom:0;
  letter-spacing:-.03em;
}
.section-title h2::after,.panel h2::after{
  content:"";
  display:block;
  width:72px;height:5px;
  margin:10px auto 0;
  border-radius:999px;
  background:linear-gradient(90deg,var(--green),var(--lime));
}
.panel h2{text-align:center;margin-bottom:26px}
.panel h2::after{margin-left:auto;margin-right:auto}

.experience-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.experience-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(15,36,61,.06);
  transition:.25s ease;
}
.experience-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.experience-card img{height:178px;width:100%;object-fit:cover}
.experience-card div{padding:16px}
.experience-card h3{font-size:16px;color:var(--blue-dark);margin-bottom:8px}
.experience-card p{font-size:13px;line-height:1.55;color:var(--muted);margin-bottom:0}

.gallery{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}
.gallery-item{
  border:0;
  padding:0;
  background:transparent;
  border-radius:18px;
  cursor:zoom-in;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(15,36,61,.09);
}
.gallery-item img{
  height:210px;
  width:100%;
  object-fit:cover;
  transition:.3s ease;
}
.gallery-item:hover img{transform:scale(1.06)}
.lightbox{
  position:fixed;
  inset:0;
  z-index:100;
  background:rgba(4,13,24,.88);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.lightbox.open{display:flex}
.lightbox img{
  max-height:88vh;
  max-width:92vw;
  border-radius:22px;
  box-shadow:0 24px 70px rgba(0,0,0,.45);
}
.lightbox-close{
  position:absolute;
  right:24px;
  top:18px;
  border:0;
  background:white;
  color:var(--blue-dark);
  width:46px;height:46px;
  border-radius:50%;
  font-size:32px;
  cursor:pointer;
}
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:58px;
  height:58px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:var(--blue-dark);
  font-size:44px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 12px 35px rgba(0,0,0,.22);
}
.lightbox-prev{left:28px}
.lightbox-next{right:28px}
.lightbox-nav:hover,.lightbox-close:hover{background:#fff;transform:translateY(-50%) scale(1.04)}
.lightbox-close:hover{transform:scale(1.04)}

.video-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow);
}
.video-panel iframe,.video-panel video{
  display:block;
  width:100%;
  aspect-ratio:16/9;
  border:0;
  border-radius:18px;
  background:#000;
}

.split{
  display:grid;
  grid-template-columns:1fr 1.35fr;
  gap:24px;
}
.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 12px 32px rgba(15,36,61,.07);
  padding:28px;
}
.amenities{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px 26px;
}
.amenities p{
  margin:0;
  display:flex;
  align-items:center;
  gap:12px;
  color:#334155;
  font-weight:800;
}
.amenities span{color:var(--blue);font-size:30px;width:34px;text-align:center}
.reviews-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.reviews-head h2{margin-bottom:8px}
.reviews-head p{color:var(--muted);font-weight:800;margin:0;text-align:center}
.mini-link{
  white-space:nowrap;
  font-weight:900;
  color:var(--blue);
  background:rgba(0,98,168,.08);
  padding:10px 14px;
  border-radius:999px;
}
.reviews{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.review{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 20px rgba(15,36,61,.06);
}
.review-source{
  display:inline-flex;
  color:var(--green-dark);
  background:rgba(95,165,50,.1);
  border-radius:999px;
  padding:5px 9px;
  font-size:12px;
  font-weight:900;
  margin-bottom:10px;
}
.stars{color:#ffbd2e;letter-spacing:2px;margin-bottom:12px}
.review p{font-size:14px;line-height:1.65;color:#475467}
.review strong{font-size:14px;color:#344054}

.info-layout{
  display:grid;
  grid-template-columns:1.45fr .95fr;
  gap:24px;
  align-items:stretch;
}
.info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.info-grid p{
  min-height:128px;
  margin:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:8px;
  text-align:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  font-size:13px;
  line-height:1.35;
  color:#344054;
  font-weight:800;
}
.info-grid span{font-size:28px}
.hours{
  background:
    radial-gradient(circle at bottom right,rgba(95,165,50,.18),transparent 38%),
    linear-gradient(135deg,#ffffff,#f2faef);
}
.hours h2{color:var(--green-dark);text-align:left;margin-bottom:24px}
.hours h2::after{margin-left:0}
.hour-row{
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-bottom:22px;
}
.hour-row span{font-size:32px;color:var(--green)}
.hour-row small{display:block;color:var(--green-dark);font-weight:900;margin-bottom:3px}
.hour-row strong{font-size:22px;color:#1f2937}
.note{
  color:#475467;
  line-height:1.65;
  background:rgba(255,255,255,.62);
  border-radius:16px;
  padding:16px;
  margin-bottom:0;
}

.map-section{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:24px;
  align-items:stretch;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
}
.map-copy{
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.map-copy p:not(.eyebrow){color:var(--muted);font-size:17px;line-height:1.7}
.map-frame iframe{
  width:100%;
  min-height:430px;
  border:0;
  border-radius:20px;
  display:block;
}

.final-cta{
  margin-top:26px;
  margin-bottom:28px;
  min-height:230px;
  border-radius:24px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:42px 52px;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(5,34,64,.88),rgba(5,34,64,.34)),
    url("../img/terraza-rio.jpg") center/cover no-repeat;
  box-shadow:var(--shadow);
}
.final-cta p{font-weight:900;color:#d8f5c9;margin-bottom:6px}
.final-cta h2{font-size:clamp(30px,4vw,52px);line-height:1.05;max-width:690px;margin:0}
.final-cta .white{background:white}
.final-cta .cta-actions{flex-direction:column;align-items:stretch;min-width:285px}

.floating-whatsapp{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:70;
  width:66px;height:66px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  box-shadow:0 18px 38px rgba(37,211,102,.35);
  border:5px solid rgba(255,255,255,.9);
  animation:pulse 2.4s ease infinite;
}
.floating-whatsapp svg{width:34px;height:34px;fill:currentColor}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.06)}}

.site-footer{
  background:linear-gradient(135deg,var(--blue-dark),var(--blue));
  color:white;
  padding:34px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:220px 1fr minmax(260px,auto);
  gap:30px;
  align-items:center;
}
.footer-grid img{
  width:190px;
  background:rgba(255,255,255,.08);
  border-radius:14px;
  padding:8px;
}
.socials{display:flex;justify-content:center;gap:10px;flex-wrap:wrap}
.social-pill{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.social-pill b{
  width:28px;height:28px;
  border-radius:50%;
  background:white;
  color:var(--blue);
  display:grid;
  place-items:center;
}
.footer-contact{display:flex;gap:12px;flex-wrap:wrap;font-weight:900;justify-content:flex-end}
.footer-contact a{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:rgba(255,255,255,.12);
  padding:10px 13px;
  border-radius:999px;
}
.footer-whatsapp{background:rgba(37,211,102,.22)!important}
.site-footer>p{text-align:center;margin:22px 0 0;color:#dceeff}

@media (max-width:1050px){
  .experience-grid{grid-template-columns:repeat(3,1fr)}
  .feature-bar{grid-template-columns:repeat(3,1fr)}
  .feature-bar article{border-bottom:1px solid var(--line)}
  .split,.info-layout,.map-section{grid-template-columns:1fr}
  .reviews{grid-template-columns:repeat(3,1fr)}
  .gallery{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:860px){
  .menu-toggle{display:flex}
  .nav{
    position:absolute;
    top:100%;
    left:16px;
    right:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:20px;
    background:white;
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:var(--shadow);
  }
  .nav.open{display:flex}
  .brand img{width:150px}
  .hero{min-height:760px}
  .hero-overlay{background:linear-gradient(180deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.86) 48%,rgba(255,255,255,.58) 100%)}
  .hero-slide{background-position:center}
  .hero-grid{min-height:760px;align-items:end}
  .hero-copy{padding:92px 0 105px}
  .lead{font-size:17px}
  .feature-bar{grid-template-columns:repeat(2,1fr);margin-top:-38px}
  .feature-bar article{min-height:84px}
  .experience-grid{grid-template-columns:repeat(2,1fr)}
  .gallery{grid-template-columns:1fr 1fr}
  .reviews{grid-template-columns:1fr}
  .info-grid{grid-template-columns:repeat(2,1fr)}
  .final-cta{flex-direction:column;align-items:flex-start;padding:34px 24px}
  .final-cta .cta-actions{width:100%;min-width:0}
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .footer-grid img{margin:auto}
  .footer-contact{justify-content:center}
  .reviews-head{flex-direction:column;align-items:center;text-align:center}
}
@media (max-width:540px){
  .container{width:min(100% - 24px,1180px)}
  h1{font-size:38px}
  .hero-actions .btn{width:100%}
  .contact-line{font-size:14px;gap:10px}
  .feature-bar,.experience-grid,.gallery,.amenities,.info-grid{grid-template-columns:1fr}
  .experience-card img,.gallery-item img{height:220px}
  .panel{padding:20px}
  .map-copy{padding:10px}
  .map-frame iframe{min-height:340px}
  .final-cta h2{font-size:31px}
  .floating-whatsapp{width:60px;height:60px;right:16px;bottom:16px}
  .lightbox-nav{width:46px;height:46px;font-size:34px}
  .lightbox-prev{left:12px}
  .lightbox-next{right:12px}
}
