*{
  box-sizing:border-box;
}
:root{
  --bg:#ffffff;
  --soft:#f5fafb;
  --ink:#18313a;
  --muted:#60767d;
  --brand:#0b6f84;
  --brand-dark:#075264;
  --sand:#e6c994;
  --white:#fff;
  --radius:18px;
  --shadow:0 14px 40px rgba(17,54,66,.10);
}
html{
  scroll-behavior:smooth;
}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}
img{
  max-width:100%;
  display:block;
}
a{
  color:inherit;
  text-decoration:none;
}
button{
  font:inherit;
}
.container{
  width:min(1160px, calc(100% - 40px));
  margin:auto;
}
.topo{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(20,62,74,.08);
}
.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.marca img{
  width:172px;
  height:auto;
}
.menu{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  font-weight:700;
}
.menu a:not(.btn):hover,
.text-link:hover{
  color:var(--brand);
}
.menu-btn{
  display:none;
  border:0;
  background:transparent;
  padding:8px;
  cursor:pointer;
}
.menu-btn span{
  width:28px;
  height:2px;
  background:var(--ink);
  display:block;
  margin:6px 0;
}
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:.2s ease;
}
.btn:hover{
  transform:translateY(-1px);
}
.btn-menu,
.btn-primary{
  background:var(--brand);
  color:var(--white);
}
.btn-menu:hover,
.btn-primary:hover{
  background:var(--brand-dark);
}
.btn-ghost{
  border-color:rgba(255,255,255,.55);
  color:var(--white);
  background:rgba(255,255,255,.08);
}
.btn-outline{
  border-color:var(--brand);
  color:var(--brand);
}
.btn-light{
  background:var(--white);
  color:var(--brand-dark);
}
.btn-outline-light{
  border-color:rgba(255,255,255,.75);
  color:var(--white);
}
.hero{
  position:relative;
  min-height:690px;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:var(--white);
}
.hero-bg,
.hero-overlay{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.hero-bg{
  object-fit:cover;
}
.hero-overlay{
  z-index:1;
  background:linear-gradient(90deg, rgba(5,39,49,.83) 0%, rgba(5,39,49,.62) 45%, rgba(5,39,49,.16) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  padding:90px 0 70px;
}
.eyebrow{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  font-weight:800;
  color:#dff7fb;
  margin-bottom:12px;
}
.eyebrow.dark{
  color:var(--brand);
}
.hero h1{
  max-width:760px;
  margin:0 0 18px;
  font-size:clamp(42px, 6vw, 72px);
  line-height:1.03;
  letter-spacing:-.035em;
}
.hero p{
  max-width:650px;
  font-size:19px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}
.hero-points{
  margin-top:55px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 160px));
  gap:30px;
}
.hero-points div{
  display:flex;
  flex-direction:column;
}
.hero-points strong{
  font-size:18px;
}
.hero-points span{
  font-size:13px;
  color:rgba(255,255,255,.72);
}
.section{
  padding:88px 0;
}
.section-soft{
  background:var(--soft);
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:64px;
}
h2{
  margin:0 0 18px;
  font-size:clamp(32px, 4vw, 48px);
  line-height:1.08;
  letter-spacing:-.025em;
}
.lead{
  font-size:19px;
  color:#415d66;
}
.text-link{
  display:inline-block;
  margin-top:12px;
  color:var(--brand);
  font-weight:800;
}
.image-card{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.image-card img{
  width:100%;
  min-height:460px;
  object-fit:cover;
}
.section-head{
  max-width:700px;
  margin-bottom:38px;
}
.section-head p{
  color:var(--muted);
}
.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.room-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.card-body{
  padding:24px;
}
.card h3{
  margin:0 0 10px;
  font-size:23px;
}
.card p{
  color:var(--muted);
}
.clean-list{
  list-style:none;
  padding:0;
  margin:18px 0;
  display:grid;
  gap:8px;
}
.clean-list li::before{
  content:"✓";
  color:var(--brand);
  font-weight:900;
  margin-right:9px;
}
.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.feature{
  padding:26px 22px;
  border:1px solid #e2ecef;
  border-radius:var(--radius);
}
.feature-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#e8f5f7;
  color:var(--brand);
  font-weight:900;
  margin-bottom:18px;
}
.feature h3{
  margin:0 0 8px;
}
.feature p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.gallery{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:240px 240px;
  gap:14px;
}
.gallery-item{
  padding:0;
  border:0;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  background:#dbe7ea;
}
.gallery-item:first-child{
  grid-row:1 / span 2;
}
.gallery-item.tall{
  grid-row:1 / span 2;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}
.gallery-item:hover img{
  transform:scale(1.03);
}
.location-grid{
  align-items:stretch;
}
.address-box{
  display:flex;
  flex-direction:column;
  gap:5px;
  padding:18px 0 24px;
  color:var(--muted);
}
.address-box strong{
  color:var(--ink);
}
.map-placeholder{
  min-height:390px;
  border-radius:var(--radius);
  background:
    linear-gradient(rgba(255,255,255,.15),rgba(255,255,255,.15)),
    url("../images/mapa.svg") center/cover no-repeat;
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.map-placeholder div{
  max-width:260px;
  padding:22px;
  text-align:center;
  background:rgba(255,255,255,.92);
  border-radius:14px;
}
.map-placeholder strong,
.map-placeholder span{
  display:block;
}
.map-placeholder span{
  margin-top:5px;
  color:var(--muted);
  font-size:13px;
}
.cta{
  background:var(--brand);
  color:var(--white);
  padding:72px 0;
}
.cta-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}
.cta h2{
  margin-bottom:10px;
}
.cta p{
  margin:0;
  max-width:650px;
  color:rgba(255,255,255,.82);
}
.contact-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  flex-shrink:0;
}
.footer{
  padding:34px 0;
  background:#092c35;
  color:#dce9ec;
}
.footer-wrap{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:22px;
  align-items:center;
}
.footer img{
  width:120px;
  filter:brightness(0) invert(1);
}
.footer p{
  margin:4px 0 0;
  font-size:13px;
  color:#9db4ba;
}
.footer-copy{
  font-size:12px;
  color:#8fa7ad;
}
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:40;
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#1fad68;
  color:white;
  font-size:26px;
  box-shadow:0 12px 25px rgba(0,0,0,.22);
}
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.86);
  z-index:100;
  display:none;
  place-items:center;
  padding:30px;
}
.lightbox.open{
  display:grid;
}
.lightbox img{
  max-width:min(1100px,94vw);
  max-height:88vh;
  border-radius:12px;
}
.lightbox-close{
  position:absolute;
  top:20px;
  right:28px;
  border:0;
  background:transparent;
  color:white;
  font-size:42px;
  cursor:pointer;
}

@media (max-width: 900px){
  .menu-btn{
    display:block;
  }
  .menu{
    position:absolute;
    left:0;
    right:0;
    top:78px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:white;
    border-top:1px solid #edf2f3;
    box-shadow:0 16px 30px rgba(0,0,0,.08);
    padding:8px 20px 20px;
  }
  .menu.open{
    display:flex;
  }
  .menu a{
    padding:13px 4px;
  }
  .menu .btn{
    margin-top:7px;
  }
  .split,
  .cards{
    grid-template-columns:1fr;
  }
  .split{
    gap:34px;
  }
  .features{
    grid-template-columns:repeat(2,1fr);
  }
  .gallery{
    grid-template-columns:1fr 1fr;
    grid-template-rows:240px 240px 240px;
  }
  .gallery-item:first-child{
    grid-row:auto;
    grid-column:1 / span 2;
  }
  .gallery-item.tall{
    grid-row:auto;
  }
  .cta-wrap{
    align-items:flex-start;
    flex-direction:column;
  }
  .footer-wrap{
    grid-template-columns:auto 1fr;
  }
  .footer-copy{
    grid-column:1 / -1;
  }
}

@media (max-width: 620px){
  .container{
    width:min(100% - 28px, 1160px);
  }
  .nav-wrap{
    min-height:70px;
  }
  .marca img{
    width:145px;
  }
  .menu{
    top:70px;
  }
  .hero{
    min-height:620px;
  }
  .hero-overlay{
    background:linear-gradient(180deg,rgba(5,39,49,.58),rgba(5,39,49,.88));
  }
  .hero-content{
    padding:72px 0 48px;
  }
  .hero h1{
    font-size:43px;
  }
  .hero p{
    font-size:17px;
  }
  .hero-actions,
  .contact-actions{
    flex-direction:column;
  }
  .hero-actions .btn,
  .contact-actions .btn{
    width:100%;
  }
  .hero-points{
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:38px;
  }
  .hero-points strong{
    font-size:15px;
  }
  .hero-points span{
    font-size:11px;
  }
  .section{
    padding:64px 0;
  }
  .image-card img{
    min-height:300px;
  }
  .features{
    grid-template-columns:1fr;
  }
  .gallery{
    display:grid;
    grid-template-columns:1fr;
    grid-template-rows:none;
  }
  .gallery-item,
  .gallery-item:first-child,
  .gallery-item.tall{
    grid-column:auto;
    grid-row:auto;
    aspect-ratio:4/3;
  }
  .map-placeholder{
    min-height:320px;
  }
  .footer-wrap{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
  }
  .footer-copy{
    grid-column:auto;
  }
}

.map-real{
  position:relative;
  min-height:390px;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#e8f0f2;
}
.map-real iframe{
  display:block;
  width:100%;
  height:390px;
  border:0;
}
.map-open{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:2;
  padding:11px 17px;
  border-radius:999px;
  background:#fff;
  color:var(--brand-dark);
  font-size:13px;
  font-weight:800;
  box-shadow:0 7px 20px rgba(0,0,0,.18);
}
@media (max-width:620px){
  .map-real,
  .map-real iframe{
    min-height:320px;
    height:320px;
  }
}

.hotel-highlight{
  background:#0a5f72;
  color:#fff;
  padding:24px 0;
}
.highlight-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.highlight-grid div{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.highlight-grid strong{
  font-size:16px;
}
.highlight-grid span{
  margin-top:3px;
  font-size:12px;
  color:rgba(255,255,255,.72);
}
@media(max-width:700px){
  .highlight-grid{
    grid-template-columns:repeat(2,1fr);
    row-gap:20px;
  }
}

/* Galeria com fotos reais */
.gallery.gallery-real{
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:220px 220px;
}
.gallery.gallery-real .gallery-item{
  grid-column:auto;
  grid-row:auto;
}
.gallery.gallery-real .gallery-item.featured{
  grid-column:span 2;
  grid-row:span 2;
}
.gallery.gallery-real img{
  width:100%;
  height:100%;
  object-fit:cover;
}
@media(max-width:900px){
  .gallery.gallery-real{
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:repeat(4,220px);
  }
  .gallery.gallery-real .gallery-item.featured{
    grid-column:span 2;
    grid-row:span 1;
  }
}
@media(max-width:620px){
  .gallery.gallery-real{
    grid-template-columns:1fr;
    grid-template-rows:none;
  }
  .gallery.gallery-real .gallery-item,
  .gallery.gallery-real .gallery-item.featured{
    grid-column:auto;
    grid-row:auto;
    aspect-ratio:4/3;
  }
  .gallery.gallery-real .gallery-item:nth-child(2){
    aspect-ratio:3/4;
  }
}

/* Logo oficial Hotel Ondas do Mar */
.official-logo,
.brand img,
.logo img,
.site-logo img,
header img[src*="logo-ondas-do-mar"]{
  width:min(230px, 48vw);
  height:auto;
  object-fit:contain;
  display:block;
}
@media(max-width:620px){
  .official-logo,
  .brand img,
  .logo img,
  .site-logo img,
  header img[src*="logo-ondas-do-mar"]{
    width:155px;
  }
}

/* Redes sociais flutuantes */
.social-float-wrap{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:45;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
}
.social-float-wrap .whatsapp-float{
  position:static;
  right:auto;
  bottom:auto;
}
.instagram-float{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:29px;
  font-weight:700;
  background:radial-gradient(circle at 30% 110%, #ffd600 0 10%, #ff7a00 28%, #ff0169 52%, #d300c5 72%, #7638fa 100%);
  box-shadow:0 12px 25px rgba(0,0,0,.22);
  transition:transform .2s ease;
}
.instagram-float:hover,
.social-float-wrap .whatsapp-float:hover{
  transform:translateY(-2px);
}
.instagram-icon{
  line-height:1;
  transform:translateY(-1px);
}
.footer-social a{
  color:#dce9ec;
  font-size:13px;
  font-weight:700;
}
.footer-social a:hover{
  color:#fff;
  text-decoration:underline;
}
@media(max-width:620px){
  .social-float-wrap{
    right:14px;
    bottom:14px;
    gap:10px;
  }
  .instagram-float,
  .social-float-wrap .whatsapp-float{
    width:54px;
    height:54px;
  }
}

.instagram-float{
  background:transparent !important;
  overflow:hidden;
  padding:0 !important;
}
.instagram-gif{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}
