:root {
  --bg: #091a31;
  --bg-deep: #11345e;
  --bg-dark: #071221;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.1);
  --cyan: #8ce6ff;
  --cyan-strong: #57b9ff;
  --lime: #8effc9;
  --red: #e23a45;
  --text: #f6fbff;
  --heading: #ffffff;
  --muted: rgba(221, 235, 248, 0.88);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(95, 175, 255, 0.2), transparent 18%),
    radial-gradient(circle at 82% 10%, rgba(142, 255, 201, 0.12), transparent 18%),
    radial-gradient(circle at 50% 20%, rgba(111, 176, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #0a1a31 0%, #0e2340 22%, #11345e 46%, #0c2444 72%, #081322 100%);
}

/* Ajuste da Logo na Navegação */
.logo-nav {
  height: 95px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  margin-top: -15px; 
  margin-bottom: -15px;
}

.logo-nav:hover {
  transform: scale(1.03); 
}

/* Opcional: Remova margens se necessário */
.brand a {
  text-decoration: none;
}

/* Ajuste específico da logo para telas de celular */
@media (max-width: 768px) {
  .logo-nav {
    height: 65px;
    margin-top: -5px;
    margin-bottom: -5px;
  }
}

.full-page-wrapper {
  width: 100%;
  margin: 0;
  padding: 0 0 48px;
}

.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 1rem max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(16, 33, 60, 0.82), rgba(10, 24, 44, 0.7));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(3, 10, 22, 0.26);
}

.brand {
  display: flex;
  flex-direction: column;
}

.moura {
  font-family: "Rajdhani", sans-serif;
  color: var(--cyan);
  letter-spacing: 3px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.tech {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--heading);
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: rgba(247, 254, 255, 0.82);
  transition: 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  font-size: 1.15rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(203, 237, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #0f5692;
  text-decoration: none;
  font-weight: 700;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 82vh;
  padding: 146px max(20px, calc((100vw - 1180px) / 2)) 88px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 18, 34, 0.28), rgba(8, 18, 34, 0.72)),
    radial-gradient(circle at 70% 24%, rgba(114, 182, 255, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(15, 34, 63, 0.85), rgba(5, 14, 28, 0.5));
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 74px;
  background: linear-gradient(90deg, rgba(183, 34, 38, 0.92), rgba(215, 55, 44, 0.9), rgba(183, 34, 38, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-content {
  max-width: 920px;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}

.kicker {
  margin: 0 0 14px;
  font-family: "Rajdhani", sans-serif;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5.2rem);
  line-height: 0.95;
  color: var(--heading);
  margin: 0;
}

.hero-lead {
  max-width: 800px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f53a55, #d52439);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(122, 14, 25, 0.28);
}

.hero-cta--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stats article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.hero-stats span {
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
}

.hero-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 42px rgba(2, 8, 18, 0.24);
  min-height: 210px;
  border-radius: 26px;
}

.hero-image--wide {
  min-height: 260px;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.systems-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.system-pill {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.18);
}

.content-flow {
  display: grid;
}

.glass-section {
  width: 100%;
  margin: 0;
  padding: 72px max(20px, calc((100vw - 1180px) / 2));
  position: relative;
  overflow: hidden;
}

.glass-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--line-soft);
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.95;
}

.section-services .section-bg,
.section-packages .section-bg,
.section-about .section-bg,
.section-contact .section-bg {
  background: linear-gradient(180deg, rgba(8, 18, 34, 0.62), rgba(8, 18, 34, 0.86));
}

.section-intro,
.contact-header,
.service-listing,
.principles-flow,
.contact-flow,
.package-grid {
  position: relative;
  z-index: 1;
}

.tag {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(238, 255, 255, 0.95);
  font-size: 0.82rem;
  margin-bottom: 0.7rem;
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1.7rem;
  max-width: 26ch;
  color: var(--heading);
}

.content-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px 0;
}

.content-row + .content-row {
  border-top: 1px solid var(--line-soft);
}

.idx,
.mini-tag {
  font-family: "Rajdhani", sans-serif;
  color: #ecffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.idx {
  font-size: 1.3rem;
  line-height: 1;
  padding-top: 4px;
}

.mini-tag {
  font-size: 0.78rem;
  padding-top: 4px;
}

.row-body {
  max-width: 74ch;
}

.row-body h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.row-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.row-body p + p {
  margin-top: 10px;
}

.service-points {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: linear-gradient(90deg, var(--lime), var(--cyan-strong));
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.package-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.package-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.package-card p {
  color: var(--muted);
  margin: 10px 0 10px;
}

.package-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.package-card li {
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}

.package-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  position: absolute;
  left: 0;
  top: 10px;
}

.package-card--featured {
  border-color: rgba(255, 121, 121, 0.58);
  box-shadow: 0 16px 32px rgba(226, 58, 69, 0.2);
}

.badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(226, 58, 69, 0.2);
  border: 1px solid rgba(255, 146, 146, 0.5);
}

.contact-flow .row-body strong {
  color: var(--heading);
  font-size: 1.28rem;
}

/* RODAPÉ PRINCIPAL (COMPUTADOR) - Corrigido */
.glass-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 28px 0 0;
  padding: 28px max(20px, calc((100vw - 1180px) / 2)) 28px; 
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.footer-info p {
  margin: 8px 0 0;
}

.social-links {
  display: flex;
  gap: 16px;
  color: var(--text);
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1200;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #1fbf75, #0d9a58);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(3, 53, 31, 0.36);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
    margin-top: 24px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .full-page-wrapper {
    padding: 0 0 36px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    right: 14px;
    left: 14px;
    flex-direction: column;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(8, 18, 34, 0.95);
  }

  .nav-links.open {
    display: flex;
  }

  .btn-whatsapp {
    display: none;
  }

  .glass-section {
    padding: 44px 18px;
  }

  .hero-section {
    min-height: 72vh;
    padding: 124px 18px 72px;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 30px;
  }

  .hero-image,
  .hero-image--wide {
    min-height: 180px;
    border-radius: 18px;
  }

  .content-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  /* RODAPÉ CELULAR - Corrigido */
  .glass-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 18px 36px;
  }
}

@media (max-width: 480px) {
  .glass-nav {
    padding: 0.9rem 14px;
  }

  .glass-section {
    padding: 36px 14px;
  }

  h2 {
    margin-bottom: 1.3rem;
  }

  .systems-strip {
    justify-content: flex-start;
    bottom: 12px;
  }

  .system-pill {
    font-size: 0.8rem;
  }

  .floating-whatsapp {
    right: 10px;
    bottom: 10px;
    padding: 10px 14px;
  }
}