


*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --ocean:#1a6b8a;
  --ocean-dark:#0e4a63;
  --ocean-light:#e8f4f9;
  --terra:#b5461e;
  --cream:#faf7f2;
  --dark:#1c1c1c;
  --muted:#6b6b6b;
  --sand:#f5efe6;
}

html{scroll-behavior:smooth}

body{
    font-family:'DM Sans',sans-serif;
    background:var(--cream);
    color:var(--dark);
    overflow-x:hidden
}

nav {
  position:fixed;
 
  top:0;left:0;right:0;
  z-index:200;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.85rem 1rem;
  background:rgba(10,35,50,0.65);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  transition:all .4s cubic-bezier(0.4,0,0.2,1);
}
/* NAV */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Mantém os extremos separados */
  padding: 0.85rem 2.5rem; /* Ajuste o 2.5rem se quiser mais ou menos espaço nas bordas */
  background: rgba(10, 35, 50, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: .02em;
  text-decoration: none;
  margin-right: auto; /* Força a logo para a esquerda total */
  text-align: left;    /* Garante o alinhamento do texto */
}
h1.nav-logo {
    margin-left: 0; 
}
.nav-btns{display:flex;gap:.6rem;align-items:center}
.btn{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.5rem 1.1rem;border-radius:100px;
  font-family:'DM Sans',sans-serif;font-size:.8rem;font-weight:500;
  cursor:pointer;text-decoration:none;transition:all .2s;border:none;white-space:nowrap
}
.btn-wa{background:#25D366;color:#fff}
.btn-wa:hover{background:#1ebe5c;transform:translateY(-1px);box-shadow:0 4px 16px rgba(37,211,102,.4)}
.btn-ab{background:#FF5A5F;color:#fff}
.btn-ab:hover{background:#e84d52;transform:translateY(-1px);box-shadow:0 4px 16px rgba(255,90,95,.4)}

/* HERO */
.hero{
  position:relative;height:100vh;min-height:640px;
  display:flex;align-items:flex-end;overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background: url('./imgs/piscina-vertical.jpeg') no-repeat;
    background-size: cover;      
    background-position: center;
  transform:scale(1.04);
  animation:heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom{from{transform:scale(1.04)}to{transform:scale(1.12)}}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(
    to top,
    rgba(5,20,30,.92) 0%,
    rgba(5,20,30,.55) 40%,
    rgba(5,20,30,.12) 100%
  );
}
.hero-content{
  position:relative;z-index:2;
  padding:3rem 3rem 5rem 3.5rem;
  max-width:720px;
}
.hero-tag{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(255,255,255,.12);backdrop-filter:blur(10px);
  color:rgba(255,255,255,.95);font-size:.72rem;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  padding:.4rem 1rem;border-radius:100px;margin-bottom:1.5rem;
  border:1px solid rgba(255,255,255,.2);
}
.tag-dot{width:6px;height:6px;background:#7dd3f0;border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.4)}}
.hero-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3rem,7vw,5.5rem);line-height:1.06;
  color:#fff;margin-bottom:1.1rem;font-weight:600;
}
.hero-title em{color:#7dd3f0;font-style:italic;font-weight:400}
.hero-sub{
  font-size:1rem;color:rgba(255,255,255,.78);line-height:1.75;
  max-width:520px;margin-bottom:2rem;
}
.hero-btns{display:flex;gap:.85rem;flex-wrap:wrap}
.btn-hero{padding:.9rem 1.85rem;font-size:.92rem;border-radius:100px}
.btn-ghost{
  background:rgba(255,255,255,.1);color:#fff;
  border:1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover{background:rgba(255,255,255,.2);border-color:rgba(255,255,255,.6)}

/* HERO BADGES BOTTOM RIGHT */
.hero-badges{
  position:absolute;bottom:2.5rem;right:2.5rem;z-index:2;
  display:flex;flex-direction:column;gap:.5rem;align-items:flex-end;
}
.hero-badge{
  background:rgba(255,255,255,.12);backdrop-filter:blur(10px);
  color:rgba(255,255,255,.9);font-size:.72rem;padding:.35rem .8rem;
  border-radius:100px;border:1px solid rgba(255,255,255,.18);
}

/* STATS */
.stats{
  background:var(--ocean-dark);
  display:flex;justify-content:center;flex-wrap:wrap;
}
.stat{
  flex:1;min-width:120px;max-width:200px;
  text-align:center;padding:1.4rem 1rem;
  border-right:1px solid rgba(255,255,255,.1);
}
.stat:last-child{border-right:none}
.stat-num{font-family:'Cormorant Garamond',serif;font-size:2rem;color:#fff;display:block;line-height:1}
.stat-label{font-size:.7rem;color:rgba(255,255,255,.6);letter-spacing:.06em;margin-top:.2rem;display:block;text-transform:uppercase}

/* SECTIONS */
.section{padding:5rem 2.5rem;max-width:1100px;margin:0 auto}
.section-label{
  display:inline-block;color:var(--ocean);font-size:.7rem;font-weight:500;
  letter-spacing:.14em;text-transform:uppercase;margin-bottom:.6rem;
}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.9rem,3vw,2.8rem);color:var(--dark);
  margin-bottom:.4rem;line-height:1.2;
}
.section-sub{color:var(--muted);font-size:.93rem;margin-bottom:2.5rem;line-height:1.65}

/* GALLERY MOSAIC */
.gallery{
  display:grid;
  grid-template-columns:1.7fr 1fr 1fr;
  grid-template-rows:280px 200px;
  gap:10px;border-radius:20px;overflow:hidden;
}
.g{overflow:hidden;cursor:pointer;position:relative;background:#ddd}
.g img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .55s cubic-bezier(.25,.46,.45,.94);
}
.g:hover img{transform:scale(1.07)}
.g-big{grid-row:1/3}
.g::after{
  content:'';position:absolute;inset:0;
  background:rgba(14,74,99,0);transition:background .3s;pointer-events:none;
}
.g:hover::after{background:rgba(14,74,99,.12)}

/* POOL HIGHLIGHT */
.pool-section{
  background:#fff;
  padding:5rem 0;
}
.pool-inner{
  max-width:1100px;margin:0 auto;padding:0 2.5rem;
  display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:center;
}
.pool-img{
  border-radius:20px;overflow:hidden;
  height:400px;position:relative;
}
.pool-img img{width:100%;height:100%;object-fit:cover;display:block}
.pool-img-badge{
  position:absolute;top:1.25rem;left:1.25rem;
  background:rgba(255,255,255,.9);backdrop-filter:blur(8px);
  border-radius:100px;padding:.4rem 1rem;
  font-size:.75rem;font-weight:500;color:var(--ocean-dark);
  border:1px solid rgba(26,107,138,.15);
}
.pool-features{display:flex;flex-direction:column;gap:1rem;margin-top:1.5rem}
.pool-feat{
  display:flex;align-items:flex-start;gap:.85rem;
  padding:1rem 1.25rem;
  background:var(--ocean-light);
  border-radius:12px;
  border-left:3px solid var(--ocean);
}
.pool-feat-icon{font-size:1.2rem;flex-shrink:0;margin-top:.1rem}
.pool-feat-title{font-weight:500;font-size:.9rem;margin-bottom:.15rem}
.pool-feat-desc{font-size:.8rem;color:var(--muted);line-height:1.5}

/* AMENITIES */
.amenities-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;
}
.amenity{
  background:#fff;border:1px solid rgba(0,0,0,.06);
  border-radius:14px;padding:1.5rem;
  transition:box-shadow .25s,transform .25s;
}
.amenity:hover{box-shadow:0 8px 28px rgba(26,107,138,.1);transform:translateY(-2px)}
.amenity-icon{font-size:1.5rem;margin-bottom:.75rem}
.amenity-title{font-weight:500;font-size:.93rem;margin-bottom:.3rem}
.amenity-desc{font-size:.8rem;color:var(--muted);line-height:1.6}

/* LOCATION */
.loc-wrap{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.loc-list{list-style:none;margin-top:1.25rem}
.loc-list li{
  display:flex;align-items:flex-start;gap:.75rem;
  font-size:.9rem;padding:.65rem 0;
  border-bottom:1px solid rgba(0,0,0,.06);line-height:1.5;
}
.loc-list li:last-child{border-bottom:none}
.loc-dot{
  width:8px;height:8px;min-width:8px;background:var(--ocean);
  border-radius:50%;margin-top:6px;
}
.loc-img{border-radius:20px;overflow:hidden;position:relative}
.loc-img img{width:100%;height:340px;object-fit:cover;display:block}
.loc-badge{
  position:absolute;bottom:1.25rem;left:50%;transform:translateX(-50%);
  background:rgba(255,255,255,.95);backdrop-filter:blur(8px);
  border-radius:100px;padding:.45rem 1.1rem;
  font-size:.78rem;font-weight:500;color:var(--ocean-dark);
  border:1px solid rgba(26,107,138,.15);white-space:nowrap;
}
.loc-contact{
  margin-top:1.75rem;padding:1.25rem;
  background:var(--ocean-light);border-radius:12px;
  display:flex;align-items:center;gap:1rem;
}
.loc-contact-text h4{font-size:.9rem;font-weight:500;margin-bottom:.15rem}
.loc-contact-text p{font-size:.8rem;color:var(--muted)}

/* CTA */
.cta-section{
  background:var(--ocean-dark);
  padding:6rem 2.5rem;text-align:center;
}
.cta-section h2{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3rem);color:#fff;margin-bottom:.75rem;
}
.cta-section p{color:rgba(255,255,255,.7);margin-bottom:2.5rem;font-size:.95rem;line-height:1.7}
.cta-btns{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap;margin-bottom:3rem}
.btn-cta{padding:1rem 2.1rem;font-size:.95rem;font-weight:500;border-radius:100px}
.host-card{
  display:inline-flex;align-items:center;gap:1.25rem;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);
  border-radius:16px;padding:1.5rem 2rem;text-align:left;
}
.host-av{
  width:58px;height:58px;border-radius:50%;
  background:rgba(125,211,240,.18);
  display:flex;align-items:center;justify-content:center;
  font-family:'Cormorant Garamond',serif;font-size:1.5rem;color:#7dd3f0;flex-shrink:0;
}
.host-name{font-size:1rem;font-weight:500;color:#fff;margin-bottom:.15rem}
.host-info{font-size:.8rem;color:rgba(255,255,255,.6);margin-bottom:.7rem}

/* FOOTER */
footer{
  text-align:center;padding:1.75rem;
  font-size:.76rem;color:var(--muted);
  border-top:1px solid rgba(0,0,0,.06);background:var(--cream);
}

@media(max-width:768px){
    .nav-logo{display: none;}
  nav{padding:.75rem 1.25rem}
  .hero-content{padding:2rem 1.5rem 3.5rem}
  .hero-badges{display:none}
  .stat{border-right:none;border-bottom:1px solid rgba(255,255,255,.1)}
  .section{padding:3.5rem 1.25rem}
  .gallery{grid-template-columns:1fr 1fr;grid-template-rows:auto}
  .g-big{grid-row:auto}
  .pool-inner{grid-template-columns:1fr}
  .amenities-grid{grid-template-columns:1fr}
  .loc-wrap{grid-template-columns:1fr}
  .host-card{flex-direction:column;text-align:center}
  .btn{padding:.42rem .8rem;font-size:.76rem}
}
@media(max-width:1024px){
        .nav-logo{display: none;}
}