:root {
  --primary: #0b2b4c;
  --accent: #ffb703;
  --text: #1f2933;
  --bg: #ffffff;
  --branco-2: #fefefe;
  --azul: #0a4fa6;
  --azure: #3688c2;
  --azul-claro: #c8cfd6;
  --azul-escuro: #142332;
  --azure-vivido: #2ad4f2;
  --azure-escuro: #040e16;
  --azure-acinzentado: #2b3c4b;
  --blue-metal-start: #4ea8ff; /* mais claro */
  --blue-metal-mid: #143b7a;
  --blue-metal-end: #0b2545;

  --gradient-metal: linear-gradient(
    135deg,
    var(--blue-metal-start),
    var(--blue-metal-mid),
    var(--blue-metal-end)
  );
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
}
h1,
h2,
h3 {
  background: var(--gradient-metal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.header {
  position: sticky;
  top: 0;
  background: var(--bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  align-items: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-width: 80px;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-oferta {
  background: var(--gradient-metal);
  color: #f8f9fa;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(11, 37, 69, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: fit-content;
}

/* TEXTO SEMPRE ACIMA */
.btn-oferta span {
  position: relative;
  z-index: 2;
}

/* BRILHO METÁLICO SUTIL (ATRÁS DO TEXTO) */
.btn-oferta::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -120%;
  width: 60%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.btn-oferta:hover::before {
  left: 140%;
}

.btn-oferta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11, 37, 69, 0.45);
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 24px;
    background: #fff;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}
/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  transition: transform 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header.hide {
  transform: translateY(-100%);
}

/* DESKTOP NAV */
.nav-desktop {
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 24px;
}

.nav-desktop a {
  text-decoration: none;
  color: #1f2933;
  font-weight: 500;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* SIDEBAR MENU */
.menu-mobile {
  text-align: right;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  padding: 40px 24px;
  z-index: 999;
  transition: right 0.4s ease;
  display: flex;
  align-items: center;
}

.menu-mobile.active {
  right: 0;
}

.menu-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.menu-mobile a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1f2933;
  text-decoration: none;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      to right,
      rgba(2, 10, 20, 0.55),
      rgba(64, 117, 180, 0)
    ),
    url("./assets/images/banner-hero.png") center/cover no-repeat;
  padding: 120px 24px 60px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  color: #fff;
}
.hero-content {
  max-width: 600px;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(
    to right,
    rgba(11, 37, 69, 0.55),
    rgba(11, 37, 69, 0)
  );
}

/* TEXTO */
.hero-content h1 {
  margin-bottom: 16px;

  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.hero-content h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #e5e7eb;
}

.hero-benefits {
  list-style: none;
  padding: 0;
}

.hero-benefits li {
  margin-bottom: 12px;
  font-size: 1rem;
}

/* FORM */
.hero-form {
  background: #ffffff;
  color: #1f2933;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-form h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form input,
.hero-form select {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border-color: #1e4fa3;
}

.form-info {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
  }
}
.services {
  padding: 80px 24px;
  background: #f9fafb;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.services-header p {
  margin-top: 16px;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* overlay escuro elegante */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 37, 69, 0.85),
    rgba(11, 37, 69, 0.45),
    rgba(11, 37, 69, 0.15)
  );
  z-index: 1;
}
.service-card h3,
.service-card p {
  position: relative;
  z-index: 2;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 95%;
  opacity: 0.95;
}
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.service-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(11, 37, 69, 0.95),
    rgba(11, 37, 69, 0.55)
  );
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

/* CTA */
.services-cta {
  margin-top: 48px;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.authority {
  padding: 90px 24px;
  background: #ffffff;
}

.authority-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.authority-content p {
  margin: 18px 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}

.authority-highlights {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}

.authority-highlights li {
  margin-bottom: 10px;
  font-weight: 500;
}

.authority-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .authority-container {
    grid-template-columns: 1fr;
  }
}
.gallery {
  padding: 90px 24px;
  background: #f9fafb;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.gallery-header p {
  margin-top: 14px;
  color: #4b5563;
  line-height: 1.7;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* hover elegante */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* CTA */
.gallery-cta {
  margin-top: 48px;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-item::after {
  content: "Projeto WMA";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: #fff;
  font-size: 0.9rem;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.35s ease;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.oferta-section {
  padding: 100px 24px;
  background: linear-gradient(rgba(11, 37, 69, 0.92), rgba(11, 37, 69, 0.92)),
    url("./assets/images/banner-wma.jpeg") center/cover no-repeat;
}

.oferta-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: #f8f9fa;
}

.oferta-badge {
  display: inline-block;
  background: var(--gradient-metal);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.oferta-container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.oferta-container p {
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  opacity: 0.95;
}

.oferta-beneficios {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
  padding: 0;
}

.oferta-beneficios li {
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.area-section {
  padding: 100px 24px;
  background: #f8f9fa;
}

.area-container {
  max-width: 1200px;
  margin: 0 auto;
}

.area-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.area-container > p {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: #444;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}

.area-text h3 {
  margin-bottom: 18px;
}

.area-text ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.area-text ul li {
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}

.area-observacao {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #666;
}

.area-mapa img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.faq-section {
  padding: 100px 24px;
  background: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 16px;
}

.faq-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 1.05rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: #f9fafb;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background: #eef2f7;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fff;
}

.faq-answer p {
  padding: 18px 20px;
  margin: 0;
  color: #444;
  line-height: 1.6;
}
.cta-section {
  padding: 100px 24px;
  background: linear-gradient(rgba(11, 37, 69, 0.95), rgba(11, 37, 69, 0.95)),
    url("./assets/images/banner-hero.png") center/cover no-repeat;
  background-attachment: fixed;
  color: #f8f9fa;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.cta-text h2 {
  margin-bottom: 16px;
}

.cta-text p {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-social {
  display: flex;
  gap: 18px;
}

.cta-social img {
  width: 36px;
  transition: transform 0.3s ease;
}

.cta-social img:hover {
  transform: scale(1.15);
}

/* FORM */
.cta-form form {
  background: rgba(255, 255, 255, 0.06);
  padding: 32px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
}

.cta-form textarea {
  min-height: 90px;
  resize: vertical;
}

/* MAPA */
.cta-mapa iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.form-whatsapp {
  background: rgba(255, 255, 255, 0.06);
  padding: 32px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(6px);
}

.form-whatsapp input,
.form-whatsapp select,
.form-whatsapp textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  width: 100%;
}

.form-whatsapp textarea {
  min-height: 90px;
  resize: vertical;
}

.form-whatsapp button {
  margin-top: 10px;
}
.site-footer {
  background: #0b2545;
  color: #f1f5f9;
  padding: 80px 24px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 16px;
}

.footer-col h3 {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-col a {
  color: #e2e8f0;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}

.footer-social img {
  width: 28px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.15);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}
