* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #071223;
  --bg-soft: #0f1f35;
  --text: #0f172a;
  --muted: #64748b;
  --white: #ffffff;
  --light: #f8fafc;
  --green: #22c55e;
  --green-dark: #16a34a;
  --blue: #2563eb;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 18px 45px rgba(2, 8, 23, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  background: rgba(7, 18, 35, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-bar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--green);
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.92;
}

nav a:hover {
  color: var(--green);
}

.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,18,35,0.94), rgba(7,18,35,0.77)),
    url('images/banner.jpg') center/cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 42px;
  align-items: center;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 860px;
  margin-bottom: 24px;
}

.hero p {
  color: #dbeafe;
  font-size: clamp(18px, 2vw, 23px);
  max-width: 760px;
  margin-bottom: 32px;
}

.hero-card {
  background: rgba(255,255,255,0.96);
  color: var(--text);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-card p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 22px;
}

.buttons,
.section-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn,
.buttons a,
.contact-form button {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.buttons a:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-whatsapp,
.contact-form button {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(34,197,94,.25);
}

.btn-primary:hover,
.btn-whatsapp:hover,
.contact-form button:hover {
  background: var(--green-dark);
}

.btn-secondary,
.btn-call {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37,99,235,.22);
}

.trust-list {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: #dbeafe;
}

.trust-list li {
  padding-left: 20px;
  position: relative;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.section {
  padding: 92px 0;
  scroll-margin-top: 100px;
}

.alt-section {
  background: var(--light);
}

.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 52px;
}

.section-heading h2,
.two-col h2,
.cta-box h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-heading p,
.prose p,
.cta-box p {
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(2,8,23,.06);
}

.section:not(.alt-section) .card {
  background: #ffffff;
}

.card h3 {
  font-size: 23px;
  margin-bottom: 12px;
  color: #0f172a;
}

.card p {
  color: var(--muted);
  font-size: 16px;
}

.mini-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.mini-card strong {
  color: var(--green);
  font-size: 26px;
}

.mini-card span {
  color: var(--muted);
  font-weight: 700;
}

.two-col,
.cta-box,
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.prose p + p {
  margin-top: 18px;
}

.step-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,.12);
  color: var(--green);
  font-weight: 900;
  margin-bottom: 18px;
}

.unidade-card {
  display: flex;
  flex-direction: column;
}

.btn-link {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
  padding-top: 18px;
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 14px;
  padding: 22px 24px;
  box-shadow: 0 8px 24px rgba(2,8,23,.05);
}

.faq-list summary {
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

.gallery-section {
  padding-top: 82px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gallery-item {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e2e8f0;
  aspect-ratio: 4 / 3;
}

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

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-section .section-actions {
  justify-content: center;
  margin-top: 36px;
}

.cta-section {
  background: var(--bg);
  color: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  padding: 44px;
}

.cta-box p,
.cta-box .contact-list {
  color: #dbeafe;
}

.contact-list {
  list-style: none;
  margin-top: 24px;
}

.contact-list li {
  margin-bottom: 12px;
  font-size: 17px;
}

.contact-list a {
  color: var(--green);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  background: #020817;
  color: var(--white);
  padding: 56px 0 24px;
}

.footer-grid {
  grid-template-columns: 1.4fr .8fr 1.2fr;
  gap: 34px;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
  text-decoration: none;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
}

.float-whatsapp,
.float-call {
  position: fixed;
  right: 18px;
  z-index: 1000;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: 13px 17px;
  box-shadow: var(--shadow);
}

.float-whatsapp {
  bottom: 24px;
  background: var(--green);
}

.float-call {
  bottom: 82px;
  background: var(--blue);
}

.popup {
  position: fixed;
  right: 22px;
  top: 96px;
  z-index: 998;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  width: 270px;
  box-shadow: var(--shadow);
  display: none;
}

.popup p {
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 700;
}

.popup-btn {
  display: block;
  text-align: center;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 900;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero-grid,
  .two-col,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 118px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, 1180px);
  }

  .nav-bar {
    min-height: 68px;
  }

  .brand {
    font-size: 17px;
  }

  .hero {
    padding: 105px 0 62px;
  }

  .hero-card {
    padding: 24px;
  }

  .grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .cta-box {
    padding: 26px;
  }

  .buttons,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .buttons a {
    width: 100%;
  }

  .float-call {
    display: none;
  }

  .float-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .popup {
    display: none !important;
  }
}

/* Seções SEO adicionadas */
.seo-content .prose p { font-size: 19px; }
.section-actions { justify-content: center; margin-top: 34px; }
.footer-bottom a { color: #86efac; font-weight: 700; }
