:root{
  --blue:#0c365f;
  --red:#a82f33;
  --black:#150d0e;
  --gray:#78808d;

  /* VOLTOU PRO GRAFITE */
  --bg:#121417;        /* fundo geral grafite */
  --surface:#1a1d22;   /* cards */
  --surface2:#16191e;  /* blocos alternados */
  --text:#eef2f6;      /* texto principal */
  --muted:rgba(238,242,246,.72);

  --border:1px solid rgba(255,255,255,.10);
  --shadow:0 14px 35px rgba(0,0,0,.40);
  --radius:16px;

  --whats:#25D366;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:radial-gradient(1200px 700px at 15% 0%, rgba(43,136,211,.12), transparent 60%),
             radial-gradient(1100px 650px at 90% 10%, rgba(214,23,18,.10), transparent 58%),
             var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.container{width:min(1140px,92%); margin:0 auto;}
.muted{color:var(--muted);}

/* Header vermelho fixo */
.header{
  position:sticky; top:0; z-index:100;
  background:var(--red);
  border-bottom:1px solid rgba(0,0,0,.22);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{display:flex; gap:10px; align-items:center;}

.brand{
  display:flex;
  align-items:center;
}

.brand__img{
  height:100px;  
  width:auto;
  object-fit:contain;
}

.nav{display:flex; gap:16px; align-items:center; flex-wrap:wrap;}
.nav a{
  font-size:.95rem;
  color:rgba(255,255,255,.95);
  font-weight:500;
}
.nav a:hover{ text-decoration:underline; text-underline-offset:5px; }

.header__actions{display:flex; gap:10px; align-items:center;}
.hamb{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.12);
  cursor:pointer;
}
.hamb span{display:block;width:18px;height:2px;background:#fff;margin:5px auto;border-radius:2px;opacity:.95;}

/* Botões (tom único azul) */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 10px 22px rgba(0,0,0,.22);
  transition:transform .12s ease, filter .12s ease;
  font-weight:600;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px);}

.btn--primary{
  background:var(--blue);
  color:#fff;
  border:1px solid rgba(43,136,211,.35);
}
.btn--primary:hover{filter:brightness(1.06);}

.btn--ghost{
  background:rgba(255,255,255,.06);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}
.btn--ghost:hover{filter:brightness(1.06);}

.btn--whats{
  background:var(--whats);
  color:#fff; /* pedido: texto branco */
  border:1px solid rgba(0,0,0,.12);
}
.btn--whats:hover{filter:brightness(1.05);}

.btn--whatsBig{
  background:var(--whats);
  color:#fff;
  border:1px solid rgba(0,0,0,.12);
  padding:14px 18px;
  border-radius:999px;
  font-weight:600;
}

.btn--small{padding:10px 12px; border-radius:12px; font-size:.92rem;}
.btn--big{padding:14px 18px; border-radius:18px; font-size:1.02rem;}

/* Hero (mantém a pegada da foto + overlay) */
.hero{
  position:relative;
  padding:72px 0 62px;
  background:#0b0b0b;
}
.hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:.42;
  filter:contrast(1.02) saturate(1.02);
}
.hero__overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.52), rgba(0,0,0,.62));
}
.hero__content{
  position:relative;
  text-align:center;
  color:#fff;
}
.hero h1{
  margin:0 0 10px;
  font-size:clamp(2.0rem, 2.8vw, 3.1rem);
  line-height:1.05;
  font-weight:700;
}
.hero__sub{
  margin:0 auto 18px;
 max-width: min(93ch, 92%);
  color:rgba(255,255,255,.92);
  font-weight:400;
}


.hero__checklist{
  margin: 14px auto 18px;
  padding: 0;
  list-style: none;
  max-width: 780px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.hero__checklist li{
  position: relative;
  padding-left: 26px;
  color: rgba(255,255,255,.92);
  font-weight: 400;
  line-height: 1.35;
}

.hero__checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
}

.hero__cta{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Bloco vermelho extra */
.redStrip{
  background:var(--red);
  color:#fff;
  padding:28px 0;
}
.redStrip__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.redStrip__text h2{
  margin:0 0 6px;
  font-size:1.35rem;
  font-weight:700;
}
.redStrip__text p{
  margin:0;
  color:rgba(255,255,255,.92);
  font-weight:400;
}

/* Sections */
.section{padding:62px 0;}
.section--soft{
  background:var(--surface2);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section__head{
  margin-bottom: 28px;
}

.section__head h2{
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
}

.section__head h2::after{
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.25);
}
.section__head p{margin:0; color:var(--muted); font-weight:400;}

/* Grid */
.grid{display:grid; gap:14px;}
.grid--2{grid-template-columns: repeat(2, minmax(0,1fr));}

/* Cards com foto (estrutura) */
.photoCard{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  border:var(--border);
  background:#000;
  box-shadow:var(--shadow);
  min-height:260px;
}
.photoCard img{width:100%; height:100%; object-fit:cover; opacity:.95;}

.photoCard__overlay h3{margin:0 0 4px; font-weight:700; color: var(--red);}
.photoCard__overlay p{margin:0 0 12px; color:rgba(255,255,255,.92); font-weight:400;}

/* Cards de ambientes - imagem em cima e texto embaixo */
.photoCard{
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.photoCard__media{
  height: 160px;               /* controla tamanho da imagem */
  background: rgba(255,255,255,.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photoCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;           /* mantém bonito sem distorcer */
  object-position: center;     /* centraliza */
  display: block;
}

.photoCard__body{
  padding: 16px;
}

.photoCard__body h3{
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--red);
}

.photoCard__body p{
  margin: 0 0 12px;
  color: rgba(238,242,246,.85);
  font-weight: 400;
  line-height: 1.45;
}

.contactButtons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* botão mapa */
.btn--outline{
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.btn--outline:hover{
  background: var(--blue);
  color:#fff;
}

/* Modalidades */
.modalidades{display:grid; gap:14px;}
.modCard{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius:var(--radius);
  overflow:hidden;
  border:var(--border);
  background:var(--surface);
  box-shadow:var(--shadow);
}
.modCard__img img{
  width:100%;
  height:100%;
  min-height:260px;
  object-fit:cover;
}
.modCard__body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.modCard__body h3{margin:0; font-weight:700;}
.modCard__body p{margin:0; color:rgba(238,242,246,.90); font-weight:400; line-height:1.55;}
.modCard__meta{
  display:grid;
  gap:6px;
  color:rgba(238,242,246,.72);
  font-weight:400;
  font-size:.95rem;
}

/* Tabela */
.tableCard{
  border-radius:var(--radius);
  border:var(--border);
  background:var(--surface);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.tableCard__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
}
.tableCard__top h3{margin:0; font-weight:700;}
.tableCard__top p{margin:6px 0 0; color:var(--muted); font-weight:400;}

.tableWrap{overflow:auto;}
.tabela{
  width:100%;
  border-collapse:collapse;
  min-width:820px;
}
.tabela thead th{
  text-align:left;
  padding:14px 16px;
  background:rgba(43,136,211,.16);
  border-bottom:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-weight:600;
}
.tabela td{
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.06);
  color:rgba(238,242,246,.92);
  font-weight:400;
}
.tabela tbody tr:hover{background:rgba(255,255,255,.03);}
.tableNote{margin:0; padding:12px 18px; color:var(--muted); font-weight:400;}


@media (max-width: 768px){

  .tabela{
    min-width:unset;
    width:100%;
  }

  .tabela thead{
    display:none;
  }

  .tabela,
  .tabela tbody,
  .tabela tr,
  .tabela td{
    display:block;
    width:100%;
  }

  .tabela tr{
    margin-bottom:14px;
    padding:14px;
    background: var(--surface);
    border-radius:12px;
    border: var(--border);
  }

  .tabela td{
    border:none;
    padding:6px 0;
  }

  .tabela td::before{
    content: attr(data-label);
    display:block;
    font-weight:600;
    color:var(--blue);
    margin-bottom:2px;
    font-size:.85rem;
  }

}

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.review{
  background:var(--surface);
  border:var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}
.stars{color:#f59e0b; letter-spacing:2px; margin-bottom:8px;}
.review p{margin:0 0 12px; color:rgba(238,242,246,.90); font-weight:400; line-height:1.5;}
.review__who{display:flex; gap:10px; align-items:center;}
.avatar{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.10);}
.review__who strong{font-weight:600;}
.review__who small{display:block;color:var(--muted);margin-top:2px;}

/* Sobre */
.aboutCard{
  background:var(--surface);
  border:var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.aboutCard p{color:rgba(238,242,246,.90); font-weight:400; line-height:1.6;}
.aboutCard h3{margin:14px 0 8px; font-weight:700;}
.aboutCard ul{margin:0 0 14px; padding-left:18px; color:rgba(238,242,246,.90);}
.aboutCard li{margin:8px 0; font-weight:400;}

/* Contatos */
.contacts{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.contactCard{
  background:var(--surface);
  border:var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.contactCard h3{margin:0 0 10px; font-weight:700; color: var(--red);}
.contactCard p{margin:8px 0; color:rgba(238,242,246,.90); font-weight:400; line-height:1.5;}

/* FAQ azul */
.faqBlue{
  background:var(--blue);
  color:#fff;
  padding:44px 0;
}
.faqBlue h2{margin:0 0 12px; font-weight:700;}
.faq{
  border-top:1px solid rgba(255,255,255,.35);
  padding:10px 0;
}
.faq__q{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  padding:10px 0;
}
.faq__a{
  display:none;
  padding:0 0 10px;
  color:rgba(255,255,255,.95);
  font-weight:400;
  line-height:1.55;
}
.faqBlue__cta{margin-top:14px;}

/* Footer simples */
.footer{
  background:#0b0b0b;
  color:#fff;
  padding:18px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer__inner p{margin:0; font-weight:400;}

/* Whats flutuante */
.whatsFloat{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:999;
  background:var(--whats);
  border:1px solid rgba(0,0,0,.12);
  color:#fff;
  padding:12px 14px;
  border-radius:999px;
  font-weight:600;
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}

/* Responsivo */
@media (max-width: 980px){
  .nav{display:none;}
  .hamb{display:inline-block;}
  .grid--2{grid-template-columns:1fr;}
  .modCard{grid-template-columns:1fr;}
  .reviews{grid-template-columns:1fr;}
  .contacts{grid-template-columns:1fr;}
}

/* SOBRE - layout lateral */

.aboutLayout{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

.aboutLayout__content{
  max-width: 640px; /* deixa o texto mais estreito */
}

.aboutLayout__content h3{
  margin:0 0 12px;
  font-weight:700;
}

.aboutLayout__content h4{
  margin:18px 0 8px;
  font-weight:600;
}

.aboutLayout__content p{
  margin:0 0 14px;
  line-height:1.6;
}

.aboutLayout__content ul{
  margin:0 0 18px;
  padding-left:18px;
}

.aboutLayout__images{
  display:flex;
  justify-content:center;
}

.aboutLayout__images img{
  width:100%;
  max-width:250px;     /* controla o tamanho máximo */
  height:auto;
  border-radius:18px;
  object-fit:cover;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

/* BLOCO TURISTA */

.touristBlock{
  background: linear-gradient(135deg, var(--blue), #1f5f9e);
  padding: 70px 0;
  color: #fff;
  text-align: center;
}

.touristBlock__inner{
  max-width: 820px;
  margin: 0 auto;
}

.touristBlock h2{
  margin: 0 0 16px;
  font-size: 1.6rem;
  font-weight: 700;
}

.touristBlock p{
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}

.touristBlock__buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.btn--outlineLight{
  background: transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.6);
}

.btn--outlineLight:hover{
  background: rgba(255,255,255,.15);
}


/* RESPONSIVO */
@media (max-width: 980px){
  .aboutLayout{
    grid-template-columns: 1fr;
    gap:24px;
  }

  .aboutLayout__content{
    max-width:100%;
  }
}

@media (max-width: 768px){
  .brand__img{
    height:60px;
  }
}

@media (max-width: 768px){
  .brand__img{
    height: 64px !important;   /* força mesmo */
    width: auto !important;
    max-width: 220px;
  }

  .header__inner{
    padding: 10px 0;           /* dá espaço vertical */
  }
}

/* --- FIX: sem rolagem lateral + hamb sempre visível --- */
html, body{
  overflow-x: hidden;
}

.header__inner{
  position: relative;
}

.brand{
  display:flex;
  align-items:center;
  min-width: 0; /* permite encolher sem quebrar layout */
}

.brand__img{
  display:block;
  width:auto;
  max-width: 180px; /* impede estourar para o lado */
}

@media (max-width: 768px){

  .header__inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    padding:14px 0;
  }

  /* Logo centralizada */
  .brand{
    width:100%;
    display:flex;
    justify-content:center;
  }

  .brand__img{
    height:60px !important;
    max-width:160px;
  }

  /* Linha dos botões + hamb */
  .header__actions{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    width:100%;
  }

  .header__actions .btn{
    flex:1;
    padding:12px 8px;
    font-size:1rem;
    border-radius:16px;
  }

  /* Hamb ao lado */
  .hamb{
    position:relative;
    width:48px;
    height:48px;
    flex-shrink:0;
  }

}