
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap');

:root{
  --green-700: #0d7344;
  --green-800: #0a5c36;
  --green-900: #073a22;
  --dark-card: rgba(0,0,0,0.12);
  --glass-white: rgba(255,255,255,0.32);
  --glass-white-strong: rgba(255,255,255,0.55);
  --bg-gradient-start: #d8e6dd;
  --bg-gradient-mid: #cfe2d6;
  --bg-gradient-end: #e7f3ec;
  --text: #1d1d1d;
  --accent: #104d04;
}


*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: 'Fira Sans', sans-serif;
  background: linear-gradient(135deg,var(--bg-gradient-start),var(--bg-gradient-mid),var(--bg-gradient-end));
  color: var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  line-height:1.45;
  font-size:16px;
}



/* ===== LOGO ===== */
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e8f5e9;
}
/* ===== GLASS NAVBAR ===== */
.glass-nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(46, 125, 50, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px;
}

.glass-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.glass-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* ===== HEADER ===== */
header {
  height: 100vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("src/Noite1.jpeg")
      center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.btn {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.3);
}


/* ===== BOTÃO MENU MOBILE ===== */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* ===== MENU MOBILE ===== */
@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .header nav,
  .glass-nav nav {
    position: absolute;
    top: 100%;
    right: 20px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 14px;
    flex-direction: column;
    overflow: hidden;

    max-height: 0;
    transition: max-height 0.35s ease;
  }

  .header nav.open,
  .glass-nav nav.open {
    max-height: 240px;
  }

  .header nav a,
  .glass-nav nav a {
    padding: 14px 26px;
  }
}



/* ===========================================================
   SEÇÃO PADRÃO
   =========================================================== */
.section{padding:60px 40px;text-align:center}

/* ===========================================================
   FEATURES (SEÇÃO VERDE)
   =========================================================== */
.features-section{
  background:#0c412f;
  color:white;
  padding:60px 20px;
}
.features-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:35px;
  max-width:1300px;
  margin:0 auto;
  text-align:center;
}
.feature-item img{width:60px;filter:invert(1)}
.feature-item h3{font-size:1.1rem;margin-top:10px;font-weight:700}
.feature-item p{opacity:0.9;margin-top:5px}

/* ===========================================================
   GALERIA
   =========================================================== */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  margin-top:40px;
}
.gallery img{
  width:100%;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.2);
  transition:transform .28s;
}
.gallery img:hover{transform:scale(1.03)}

/* ===========================================================
   AVALIAÇÕES — CARDS GLASS
   =========================================================== */
.testimonials{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
  margin-top:40px;
}
.card{
  width:280px;
  padding:22px;
  border-radius:14px;
  background: var(--glass-white);          /* GLASS */
  backdrop-filter: blur(12px);
  border:1px solid rgba(255,255,255,0.3);
  box-shadow:0 5px 18px rgba(0,0,0,0.15);
}
.stars{color:#f4c430;font-size:1.4rem;margin-bottom:10px}
.card span{margin-top:12px;display:block;font-weight:700}

/* ===========================================================
   LOCALIZAÇÃO + CONTATO — CARD ESTILO RESORT
   =========================================================== */
.location-contact{padding:60px 40px;text-align:center}

/* contêiner único e organizado (merge das duplicatas) */
.loc-contact-container{
  max-width:1150px;
  margin:40px auto 0;
  display:flex;
  gap:35px;
  align-items:stretch;
  justify-content:center;
  flex-wrap:wrap;
  background:#ffffff;          /* card principal branco */
  padding:35px;
  border-radius:25px;
  box-shadow:0 10px 25px var(--dark-card);
}

/* MAPA */
.map-small{
  flex:1.2;
  min-width:320px;
  max-width:550px;
  border-radius:18px;
  overflow:hidden;
}
.map-small iframe{width:100%;height:330px;border:none;display:block}

/* COLUNA DO TEXTO E CONTATO */
.contact-card{
  flex:1;
  min-width:300px;
  max-width:450px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:left;
  padding-right:20px;
}
.contact-card h3{
  font-size:1.8rem;
  font-weight:700;
  margin-bottom:18px;
  color:#1a1a1a;
}
.contact-card p{font-size:1.1rem;margin:10px 0;color:#444}
.contact-card p strong{color:#01741e}

/* BOTÃO TRAÇAR ROTA */
.contact-btn{
  margin-top:25px;
  background:#088b3f;
  padding:14px 20px;
  color:white;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  font-size:1.05rem;
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:fit-content;
  transition:0.25s;
}
.contact-btn:hover{background:#086d11;transform:translateX(4px)}

/* ===========================================================
   LOCALIZAÇÃO + CONTATO — NOVO ESTILO (cartão map + contato)
   =========================================================== */
/* .loc-card e .contact-card-new são alternativas para visual diferenciado */
.loc-card{
  flex:1;
  min-width:350px;
  max-width:550px;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  border-radius:18px;
  padding:12px;
  box-shadow:0 6px 20px rgba(0,0,0,0.15);
}
.loc-card iframe{width:100%;height:330px;border:0;border-radius:14px;overflow:hidden;display:block}

/* cartão estilo resort para contato */
.contact-card-new{
  flex:1;
  min-width:300px;
  max-width:420px;
  background: var(--glass-white-strong);
  backdrop-filter: blur(10px);
  padding:35px 28px;
  border-radius:18px;
  box-shadow:0 6px 20px rgba(0,0,0,0.15);
  text-align:left;
  color:#222;
}
.contact-card-new h3{font-size:1.4rem;margin-bottom:20px;font-weight:700}
.contact-card-new p{font-size:1rem;margin:10px 0;line-height:1.4;display:flex;align-items:center;gap:8px}
.icon-img{width:22px;height:22px;object-fit:contain;opacity:0.85}

/* BOTÃO DE ROTA / AÇÃO */
.btn-route{
  display:inline-block;
  margin-top:22px;
  padding:14px 22px;
  background:var(--accent);
  color:white;
  text-decoration:none;
  font-weight:700;
  border-radius:50px;
  font-size:0.95rem;
  transition:0.3s;
}
.btn-route:hover{background:#118517;transform:translateY(-2px)}

/* ===========================================================
   ACOMODAÇÕES — ULTRA PREMIUM
   =========================================================== */
.acomodacoes-container{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
  margin-top:40px;
}

/* CARD PREMIUM */
.acomodacao-card{
  width:360px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.35);
  box-shadow:0 18px 45px rgba(0,0,0,0.22);
  transition:0.35s ease;
  position:relative;
}
.acomodacao-card:hover{
  transform:translateY(-8px) scale(1.04);
  box-shadow:0 25px 65px rgba(0,0,0,0.30);
  border-color: rgba(255,255,255,0.55);
}

/* IMAGEM COM GRADIENTE E ZOOM */
.acomodacao-img-wrapper{position:relative;height:230px;overflow:hidden}
.acomodacao-img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.acomodacao-card:hover .acomodacao-img{transform:scale(1.12)}
.acomodacao-img-wrapper::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.38));
}

/* CONTEÚDO */
.acomodacao-content{padding:25px;text-align:left}
.acomodacao-content h3{font-size:1.5rem;font-weight:700;margin-bottom:8px;color:#0c3d25}
.acomodacao-content p{font-size:1rem;margin-bottom:18px;opacity:0.9}

/* BOTÃO PREMIUM */
.acomodacao-btn{
  display:inline-block;
  padding:12px 20px;
  background: linear-gradient(135deg,var(--green-700),var(--green-800));
  color:white;
  font-weight:600;
  border-radius:12px;
  text-decoration:none;
  transition:0.3s ease;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
}
.acomodacao-btn:hover{
  background: linear-gradient(135deg,var(--green-800),var(--green-900));
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.28);
}

/* ===========================================================
   RODAPÉ
   =========================================================== */
.footer{
  padding:25px;
  background:#093524;
  color:white;
  text-align:center;
  margin-top:40px;
  letter-spacing:0.5px;
}

/* ===========================================================
   RESPONSIVIDADE (ajustes básicos)
   =========================================================== */
@media (max-width:1100px){
  .features-grid{grid-template-columns:repeat(3,1fr)}
  .loc-contact-container{padding:28px}
}

@media (max-width:820px){
  .features-grid{grid-template-columns:repeat(2,1fr);gap:20px}
  .header{padding:12px 20px}
  .hero{height:65vh;padding-left:20px}
  .hero-text h2{font-size:2.4rem}
  .hero-text p{font-size:1rem}
  .features-section{padding:40px 16px}
  .section{padding:40px 20px}
  .acomodacao-card{width:100%}
}

@media (max-width:480px){
  .features-grid{grid-template-columns:1fr;gap:16px}
  .loc-contact-container{flex-direction:column;padding:20px}
  .map-small,.loc-card{max-width:100%}
  .hero{height:60vh;padding-left:14px}
  .hero-text h2{font-size:1.8rem}
  .hero-text p{font-size:.95rem}
  .btn{padding:12px 18px;font-size:.98rem}
}

/* ===== GLASS NAVBAR ===== */
.glass-nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(46, 125, 50, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px;
}

.glass-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.glass-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* ===== HEADER ===== */
header {
  height: 100vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("src/Noite1.jpeg")
      center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}