:root{
  --azul-escuro:#003B8E;
  --azul-medio:#0077D9;
  --azul-claro:#4DB8FF;
  --amarelo:#F4B400;
  --amarelo-hover:#d99800;
  --fundo:#F5F9FF;
  --branco:#FFFFFF;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Montserrat', Arial, Helvetica, sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--fundo);
  overflow-x:hidden;
}

header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:linear-gradient(180deg, rgba(0,59,142,.90), rgba(0,59,142,.15));
}

nav{
  width:100%;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  width:110px;
}

nav ul{
  display:flex;
  list-style:none;
  gap:30px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:700;
}

nav a:hover{
  color:var(--amarelo);
}

.hero-passeio{
    min-height:100svh;
    background:
      linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.55)),
      url("maracajau-banner.jpg") center center / cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:#fff;

    padding:220px 8% 80px;
}

.hero-content{
  max-width:950px;
}

.hero-content h1{
  font-size:76px;
  font-weight:900;
  text-transform:uppercase;
  color:rgba(255,255,255,0.88);
  text-shadow:0 4px 20px rgba(0,0,0,0.45);
}

.hero-content p{
  margin-top:15px;
  font-size:23px;
  line-height:1.5;
}

.badges{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin-top:25px;
}

.badges span{
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(8px);
  color:white;
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:600;
  border:1px solid rgba(255,255,255,.2);
}

.btn{
  display:inline-block;
  margin-top:28px;
  padding:15px 35px;
  background:var(--amarelo);
  color:white;
  text-decoration:none;
  border-radius:35px;
  font-weight:800;
  transition:0.3s;
}

.btn:hover{
  background:var(--amarelo-hover);
  transform:scale(1.05);
}

.intro,
.destaque,
.roteiro,
.atividades,
.experiencias,
.galeria,
.contato{
  padding:90px 8%;
}

.intro{
  background:white;
  text-align:center;
}

.intro h2,
.roteiro h2,
.atividades h2,
.experiencias h2,
.galeria h2{
  color:var(--azul-escuro);
  font-size:38px;
  margin-bottom:25px;
  text-align:center;
}

.intro p{
  max-width:900px;
  margin:0 auto;
  color:#444;
  font-size:18px;
  line-height:1.7;
}

.destaque{
  background:var(--fundo);
}

.destaque-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  align-items:center;
  background:white;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,0.12);
}

.destaque-img{
  height:100%;
  min-height:420px;
}

.destaque-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  cursor:pointer;
}

.destaque-info{
  padding:45px;
}

.tag{
  display:inline-block;
  background:var(--amarelo);
  color:white;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  font-weight:800;
  margin-bottom:15px;
}

.destaque-info h2{
  color:var(--azul-escuro);
  font-size:36px;
  margin-bottom:15px;
}

.destaque-info p{
  color:#444;
  line-height:1.7;
  font-size:17px;
}

.roteiro{
  background:white;
}

.roteiro-box{
  max-width:900px;
  margin:45px auto 0;
  display:grid;
  gap:22px;
}

.roteiro-item{
  display:flex;
  gap:20px;
  background:var(--fundo);
  padding:25px;
  border-radius:20px;
  border-left:5px solid var(--amarelo);
}

.roteiro-item span{
  min-width:55px;
  height:55px;
  background:linear-gradient(135deg, var(--azul-escuro), var(--azul-medio));
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.roteiro-item h3{
  color:var(--azul-escuro);
  margin-bottom:8px;
}

.roteiro-item p{
  color:#444;
  line-height:1.5;
}

.atividades{
  background:var(--fundo);
}

.subtitulo{
  text-align:center;
  max-width:750px;
  margin:0 auto 45px;
  color:#444;
  font-size:18px;
  line-height:1.6;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:30px;
}

.card{
  background:white;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.09);
  border-bottom:4px solid transparent;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
  border-bottom:4px solid var(--amarelo);
}

.card-img{
  position:relative;
  height:260px;
  overflow:hidden;
}

.card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  cursor:pointer;
  transition:0.5s;
}

.card:hover .card-img img{
  transform:scale(1.08);
}

.badge-premium{
  position:absolute;
  top:18px;
  left:18px;
  z-index:20;
  padding:9px 20px;
  border-radius:999px;
  background:linear-gradient(135deg,#FFC928 0%,#F4B400 55%,#E39A00 100%);
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.3px;
  box-shadow:0 8px 18px rgba(244,180,0,.35), inset 0 1px 2px rgba(255,255,255,.35);
}

.card-info{
  padding:26px;
}

.card-info h3{
  color:var(--azul-escuro);
  margin-bottom:12px;
  font-size:24px;
}

.card-info p{
  color:#444;
  line-height:1.6;
}

/* AVENTURE-SE ALÉM DO ROTEIRO */

.experiencias{
  background:white;
}

.experiencias h2{
  margin-bottom:15px;
}

.experiencias-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
}

.experiencia-card{
  max-width:850px;
  margin:0 auto;
  background:var(--fundo);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  border-bottom:4px solid transparent;
  transition:0.3s;
}

.experiencia-card:hover{
  transform:translateY(-8px);
  border-bottom:4px solid var(--amarelo);
}

.midia{
  width:100%;
  height:420px;
  overflow:hidden;
  background:#ddd;
}

.midia img,
.midia video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  cursor:pointer;
}

.experiencia-info{
  padding:28px;
}

.experiencia-info h3{
  color:var(--azul-escuro);
  font-size:28px;
  margin-bottom:15px;
}

.experiencia-info p{
  color:#444;
  line-height:1.6;
}

.galeria{
  background:white;
}

.galeria-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:18px;
}

.galeria-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:18px;
  cursor:pointer;
  box-shadow:0 8px 25px rgba(0,0,0,0.10);
  transition:0.3s;
}

.galeria-grid img:hover{
  transform:scale(1.04);
}

.contato{
  background:var(--fundo);
}

.contato-box{
  max-width:850px;
  margin:0 auto;
  padding:55px 30px;
  border-radius:28px;
  text-align:center;
  color:white;
  background:linear-gradient(135deg, var(--azul-escuro), var(--azul-medio));
  box-shadow:0 10px 35px rgba(0,0,0,0.15);
}

.contato-box h2{
  font-size:36px;
  margin-bottom:15px;
}

.contato-box p{
  font-size:18px;
}

.instagram{
  margin-top:25px;
  color:var(--amarelo);
  font-weight:800;
}

footer{
  background:var(--azul-escuro);
  color:white;
  text-align:center;
  padding:35px 20px;
  line-height:1.7;
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  background:linear-gradient(135deg, #25D366, #128C7E);
  color:white;
  padding:14px 18px;
  border-radius:50px;
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,0.28);
  z-index:999;
  transition:0.3s;
}

.whatsapp-float:hover{
  transform:translateY(-5px) scale(1.03);
}

.whatsapp-float span{
  font-size:28px;
}

.whatsapp-float strong{
  display:block;
  font-size:15px;
}

.whatsapp-float small{
  display:block;
  font-size:12px;
  opacity:0.9;
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.88);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:100;
  padding:30px;
}

.lightbox.ativo{
  display:flex;
}

.lightbox img{
  max-width:95%;
  max-height:90vh;
  border-radius:18px;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.fechar-lightbox{
  position:absolute;
  top:25px;
  right:35px;
  color:white;
  font-size:42px;
  cursor:pointer;
}

@media (max-width:768px){

header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

nav{
    padding:12px 5%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
}

.logo{
    width:85px;
}

nav ul{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px 18px;
}

nav a{
    font-size:14px;
}

.hero-passeio{
    min-height:100svh;
    padding:230px 5% 70px;
}

.hero-content{
    width:100%;
}

.hero-content h1{
    font-size:42px;
    line-height:1.05;
    margin-bottom:18px;
}

.hero-content p{
    font-size:18px;
    line-height:1.6;
}

.badges{
    gap:10px;
}

.badges span{
    font-size:12px;
    padding:8px 14px;
}

.btn{
    width:100%;
    max-width:320px;
}

.intro,
.destaque,
.roteiro,
.atividades,
.experiencias,
.galeria,
.contato{
    padding:70px 5%;
}

.intro h2,
.roteiro h2,
.atividades h2,
.experiencias h2,
.galeria h2{
    font-size:30px;
}

.destaque-card{
    grid-template-columns:1fr;
}

.destaque-img{
    min-height:260px;
}

.destaque-info{
    padding:30px;
}

.roteiro-item{
    flex-direction:column;
}

.cards{
    grid-template-columns:1fr;
}

.midia{
    height:260px;
}

.galeria-grid{
    grid-template-columns:1fr;
}

.contato-box{
    padding:40px 20px;
}

.whatsapp-float{
    width:64px;
    height:64px;
    right:16px;
    bottom:16px;
    padding:0;
    justify-content:center;
    border-radius:50%;
}

.whatsapp-float div{
    display:none;
}

.whatsapp-float span{
    font-size:30px;
}

}