/* ========================
   BASE RESET
   ======================== */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }

:root {
  --navy: #0b0948;
  --footer-bg: #07063a;
  --star-yellow: #fcd535;
  --text: #f4f4f9;
  --glass: rgba(255, 255, 255, 0.05);
}

body { background: var(--navy); color: var(--text); overflow-x: hidden; }

.text-center { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* Textos de transição */
.container > p {
  padding: 55px 24px;
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.85;
  color: #ffffff;
  font-weight: 300;
  font-style: italic;
  text-align: center;
}

/* ========================
   NAVBAR
   ======================== */
.navbar-slim {
  position: fixed; top: 0; width: 100%; z-index: 9000;
  background: rgba(11, 9, 72, 0.97); backdrop-filter: blur(10px);
  padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-container-slim {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  position: relative; padding: 0 16px;
}
.brand-central { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 100px; object-fit: contain; }
.brand-text h1 { font-size: 18px; color: var(--star-yellow); text-transform: uppercase; letter-spacing: 2px; line-height: 1.2; font-weight: 700; }
.brand-text span { font-size: 11px; display: block; color: #aaa; letter-spacing: 1px; }
.hamburger { position: absolute; right: 16px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }

/* ========================
   SIDE MENU
   ======================== */
.side-menu {
  position: fixed; top: 0; right: -360px; width: 320px; height: 100vh;
  background: var(--navy); z-index: 9999; transition: right 0.4s ease;
  padding: 25px; border-left: 1px solid rgba(255,255,255,0.1); overflow-y: auto;
}
.side-menu.active { right: 0; }

.overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8); z-index: 9998; display: none;
}
.overlay.active { display: block; }

.side-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid var(--glass);
}
.close-btn { background: none; border: none; color: white; font-size: 20px; cursor: pointer; }

.nav-links-side { list-style: none; padding: 0; margin-bottom: 10px; }
.nav-links-side li { margin-bottom: 15px; }
.nav-links-side a { text-decoration: none; color: #fff; font-size: 17px; transition: 0.3s; display: block; }
.nav-links-side a:hover { color: var(--star-yellow); padding-left: 8px; }

.divider { height: 1px; background: var(--glass); margin: 20px 0; }

/* ========================
   BOTÃO DE SEÇÃO (Central / Endereços)
   ======================== */
.btn-secao {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--star-yellow);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  letter-spacing: 1px;
}

/* ========================
   BOX DE ESTADOS (acordeão)
   ======================== */
.box-estados {
  display: none;
  margin-top: 8px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 8px;
}
.box-estados.ativo { display: block; }

.estado-item { margin-bottom: 10px; }

.estado-btn {
  width: 100%;
  background: #14145f;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s;
}
.estado-btn:hover { background: #1c1c80; }

/* Lista de cidades (Endereços — só links) */
.cidades-lista { display: none; padding: 8px 0 0 8px; }
.cidades-lista.ativa { display: flex; flex-direction: column; gap: 6px; }

.cidades-lista > a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  transition: 0.3s;
}
.cidades-lista > a:hover { background: var(--star-yellow); color: #08101f; }

/* Linha de cidade com ícones (Central de Atendimento) */
.city-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 7px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
.city-icons { display: flex; gap: 14px; align-items: center; }
.city-icons a { background: none !important; padding: 0 !important; display: flex; align-items: center; }
.maps-icon { color: #EA4335 !important; font-size: 17px; }
.wpp-icon { color: #25D366 !important; font-size: 17px; }

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 60vh; margin-top: 92px;
  background: url('Imagens/PHOTO-2025-11-03-09-28-48.jpg') center/cover no-repeat;
}
.hero-overlay {
  background: rgba(0,0,0,0.7); width: 100%; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
}
.hero-text-box { max-width: 800px; padding: 40px 20px; text-align: center; }
.hero h2 { font-size: clamp(22px, 4vw, 38px); font-weight: 700; margin-bottom: 15px; line-height: 1.3; }
.hero p { font-size: clamp(14px, 2vw, 18px); color: #ccc; line-height: 1.7; }

/* ========================
   SEÇÕES
   ======================== */
.sobre, .destaques, .galeria { padding: 80px 20px; background-color: var(--navy); }
.sobre h2, .destaques h2, .galeria h2 { font-size: clamp(26px, 4vw, 40px); color: var(--star-yellow); font-weight: 700; }
.bar-yellow { width: 40px; height: 3px; background: var(--star-yellow); margin: 15px auto 35px; flex-shrink: 0; }
.text-elaborado { max-width: 800px; font-size: clamp(14px, 2vw, 17px); line-height: 1.8; color: #ccc; text-align: center; }

/* ========================
   CARDS ESPECIALIDADES
   ======================== */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px; width: 100%;
}
.feature-card {
  background: var(--glass); backdrop-filter: blur(10px);
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex; flex-direction: column;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.6); border-color: rgba(252,213,53,0.4); }
.feature-card img { width: 100%; height: 240px; object-fit: cover; transition: 0.6s ease; display: block; }
.feature-card:hover img { transform: scale(1.1); }
.card-txt { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; justify-content: center; text-align: center; }
.card-txt h3 { font-size: 22px; margin-bottom: 10px; color: var(--star-yellow); font-weight: 600; }
.card-txt p { font-size: 15px; color: #bbb; line-height: 1.6; }

/* ========================
   VÍDEO TRANSIÇÃO
   ======================== */
.transicao-video { position: relative; overflow: hidden; padding: 80px 20px; text-align: center; }
.transicao-bg-video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  object-fit: cover; opacity: 0.3; z-index: 0;
}
.transicao-conteudo { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

/* ========================
   GALERIA
   ======================== */
.filter-btns { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; width: 100%; }
.btn-f {
  background: none; border: 1px solid rgba(255,255,255,0.15);
  color: white; padding: 10px 20px; border-radius: 20px;
  cursor: pointer; transition: 0.3s; font-size: 15px; white-space: nowrap;
}
.btn-f.ativo { background: var(--star-yellow); color: #000; font-weight: 600; border-color: var(--star-yellow); }
.btn-f:hover { border-color: var(--star-yellow); }

.grid-compacto { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: 100%; }
.gal-item { position: relative; border-radius: 10px; overflow: hidden; height: 220px; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; display: block; }
.gal-item:hover img { transform: scale(1.12); }

/* ========================
   RODAPÉ
   ======================== */
.footer-final { background: var(--footer-bg); padding: 60px 20px 20px; border-top: 1px solid var(--glass); }
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 40px; }
.foot-logo { width: 120px; height: auto; margin-bottom: 20px; }

.footer-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 20px 0; }
.footer-btn { display: flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 30px; font-size: 15px; font-weight: 600; text-decoration: none; color: #fff; transition: 0.3s; }
.btn-wpp  { background: #25D366; }
.btn-insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.btn-maps  { background: #EA4335; }
.footer-btn:hover { transform: scale(1.05); opacity: 0.9; }

.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto 40px; text-align: center; align-items: start; }
.foot-col { display: flex; flex-direction: column; align-items: center; }
.foot-col h4 { color: var(--star-yellow); font-size: 20px; margin-bottom: 14px; }
.foot-col > p { font-size: 13px; color: #aaa; line-height: 1.6; }
.foot-col ul { list-style: none; padding: 0; }
.foot-col ul li { margin-bottom: 10px; }
.foot-col a { color: #ccc; text-decoration: none; font-size: 14px; transition: 0.3s; }
.foot-col a:hover { color: var(--star-yellow); }

.social-icons { display: flex; justify-content: center; gap: 16px; font-size: 24px; margin-top: 8px; }
.social-icons a { color: #fff; transition: 0.3s; }
.social-icons a:hover { color: var(--star-yellow); }

.copyright { text-align: center; padding-top: 20px; border-top: 1px solid var(--glass); font-size: 12px; color: #555; }

/* ========================
   BOTÕES FLUTUANTES
   ======================== */
.floating {
  position: fixed; bottom: 20px; right: 16px;
  z-index: 8000; display: flex; flex-direction: column; gap: 12px;
}
.f-btn {
  width: 56px; height: 56px; border-radius: 50%; border: none;
  font-size: 22px; color: white;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; cursor: pointer; transition: 0.3s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.f-whats { background: #25D366; }
.f-insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.f-maps  { background: #EA4335; }
.f-btn:hover { transform: scale(1.1); }

/* ========================
   ANIMAÇÕES
   ======================== */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 2s ease-out;
}
.reveal.visivel { opacity: 1; transform: translateY(0); }

.feature-card.reveal { transition: opacity 1.2s ease-out, transform 1.2s ease-out; }
.feature-card.reveal:nth-child(1) { transition-delay: 0s; }
.feature-card.reveal:nth-child(2) { transition-delay: 0.3s; }
.feature-card.reveal:nth-child(3) { transition-delay: 0.6s; }

.gal-item {
  opacity: 0; transform: translateY(50px);
  transition: opacity 1.5s ease-out, transform 2s ease-out;
}
.gal-item.visivel { opacity: 1; transform: translateY(0); }
.gal-item:nth-child(1)  { transition-delay: 0.00s; }
.gal-item:nth-child(2)  { transition-delay: 0.10s; }
.gal-item:nth-child(3)  { transition-delay: 0.20s; }
.gal-item:nth-child(4)  { transition-delay: 0.30s; }
.gal-item:nth-child(5)  { transition-delay: 0.40s; }
.gal-item:nth-child(6)  { transition-delay: 0.50s; }
.gal-item:nth-child(7)  { transition-delay: 0.60s; }
.gal-item:nth-child(8)  { transition-delay: 0.70s; }
.gal-item:nth-child(9)  { transition-delay: 0.80s; }
.gal-item:nth-child(10) { transition-delay: 0.90s; }
.gal-item:nth-child(11) { transition-delay: 1.00s; }
.gal-item:nth-child(12) { transition-delay: 1.10s; }

/* ========================
   RESPONSIVO — TABLET
   ======================== */
@media (max-width: 900px) {
  .grid-compacto { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* ========================
   RESPONSIVO — MOBILE
   ======================== */
@media (max-width: 600px) {
  .nav-logo { height: 60px; }
  .brand-text h1 { font-size: 15px; }
  .side-menu { width: 88vw; max-width: 320px; }

  .hero { min-height: 55vh; margin-top: 58px; }
  .hero-overlay { min-height: 55vh; }
  .hero-text-box { padding: 30px 16px; }

  .sobre, .destaques, .galeria { padding: 60px 16px; }
  .container > p { padding: 36px 16px; font-size: clamp(15px, 4vw, 18px); }

  .cards-wrapper { grid-template-columns: 1fr; }
  .grid-compacto { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gal-item { height: 160px; }

  .btn-f { padding: 8px 14px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .text-elaborado { font-size: 14px; }

  .f-btn { width: 48px; height: 48px; font-size: 20px; }
  .floating { bottom: 16px; right: 12px; gap: 10px; }
}
.city-icons a,
.city-icons a i {
  text-decoration: none !important;
  border: none;
}
.maps-icon {
  display: none !important;
}
.cidades-lista a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-maps {
  color: #ff3b3b;
  font-size: 16px;
  pointer-events: none; /* não interfere no clique */
}

.manual {
  padding: 80px 20px;
  background-color: var(--navy);
}

.manual h2 {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--star-yellow);
  font-weight: 700;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--star-yellow);
  color: #000;
  font-size: 17px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-download:hover {
  transform: scale(1.05);
  background: #e6bf00;
}