:root {
  --azul-escuro: #0a1a3a;
  --azul-medio: #95b6ff;
  --azul-claro: #b3d6f7;
  --btn-whatsapp: #1fa33c;
  --azul-h2: #1575d0;
  --branco: #fff;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--azul-escuro);
  color: var(--azul-claro);
  margin: 0;
  padding: 0;
  padding-top: 70px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
header {
  background: var(--branco);
  color: var(--azul-escuro);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: var(--azul-claro);
  padding: 4px;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--azul-escuro);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--azul-medio);
}
.hero {
  background: linear-gradient(135deg, rgba(10,26,58,0.4) 0%, rgba(58,92,168,0.3) 100%), url('images/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--branco);
  text-align: center;
  padding: 4rem 1rem 3rem 1rem;
}
.hero-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--azul-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-logo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--azul-claro);
}
.cta-btn {
  background: var(--azul-claro);
  color: var(--azul-escuro);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(58,92,168,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.cta-btn:hover {
  background: var(--azul-medio);
  color: var(--branco);
  transform: scale(1.05);
}
/* Linha de CTAs em páginas internas */
.cta-row {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-whatsapp {
  background: #2cb25d; /* verde WhatsApp */
  color: white;
}

.cta-btn-whatsapp:hover {
  background: #1ebe5d;
  color: white;
}

section {
  padding: 4rem 0 2rem 0;
  scroll-margin-top: 100px;
}
h2 {
  color: var(--azul-h2);
  font-size: 28px !important;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  scroll-margin-top: 100px;
}
.servicos-list, .beneficios-list, .redes-sociais {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.servico, .beneficio {
  background: var(--branco);
  color: var(--azul-escuro);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  width: 280px;
  box-shadow: 0 2px 12px rgba(58,92,168,0.07);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
}
.servico:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(58,92,168,0.15);
}
.beneficio {
  background: var(--azul-claro);
  color: var(--azul-escuro);
}
.depoimentos {
  background: var(--azul-medio);
  color: var(--branco);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  margin: 2rem auto;
  max-width: 700px;
  box-shadow: 0 2px 12px rgba(58,92,168,0.07);
  text-align: center;
}
.contato {
  text-align: center;
  margin-top: 2rem;
}
.contato-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.contato-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--azul-medio);
  color: var(--branco);
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}
.contato-btn:hover {
  background: var(--azul-claro);
  color: var(--azul-escuro);
  transform: scale(1.05);
}
.redes-sociais a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--azul-medio);
  color: var(--branco);
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.redes-sociais a:hover {
  background: var(--azul-claro);
  color: var(--azul-escuro);
  transform: scale(1.1);
}
.redes-sociais-whatsapp {
  background: #075E54;
}
footer {
  background: var(--azul-escuro);
  color: var(--azul-claro);
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 1rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .nav {
    padding: 0.5rem 0.5rem;
  }
  .nav-links {
    display: none !important;
    position: absolute;
    right: 0;
    top: 70px;
    background: var(--branco);
    width: 100vw;
    left: 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 12px rgba(58,92,168,0.12);
  }
  .hero-title { font-size: 2rem; }
  section { padding: 2.5rem 0 1.5rem 0; }
  .servicos-list, .beneficios-list { gap: 1rem; }
  .menu-toggle {
    display: flex !important;
    z-index: 101;
  }
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  gap: 6px;
  z-index: 101;
}
.menu-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--azul-escuro);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-links.mobile-active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  left: 0;
  width: 100vw;
  background: var(--branco);
  box-shadow: 0 2px 12px rgba(58,92,168,0.12);
  border-radius: 0 0 12px 12px;
  padding: 1rem 2rem;
  gap: 1.5rem;
  z-index: 100;
  align-items: flex-start;
  text-align: left;
}
/* Lightbox styles */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(10,26,58,0.85);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  background: #fff;
  padding: 8px;
}
.lightbox-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.2s;
}
.lightbox-close:hover {
  color: var(--azul-claro);
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(10,26,58,0.4);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2100;
  transition: background 0.2s, color 0.2s;
}
.lightbox-arrow:hover {
  background: var(--azul-claro);
  color: var(--azul-escuro);
}
.lightbox-arrow.left { left: 32px; }
.lightbox-arrow.right { right: 32px; }

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

/* Map Modal (sem Tailwind) */
.hidden { display: none !important; }
.map-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.map-container {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 1024px;
  max-height: 90vh;
  overflow: hidden;
  color: #0a1a3a;
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(10,26,58,0.12);
}
.map-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}
.map-close {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #6b7280; /* cinza */
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.map-close:hover { color: #374151; }
.map-body { padding: 16px; }
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 50px;
    right: 15px;
  }
} 