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

html {
  scroll-behavior: smooth;
}

:root {
  --navy: #111827;
  --navy-soft: #141b3d;
  --navy-deep: #020617;
  --gold: #f4b63a;
  --gold-dark: #e29b13;
  --purple: #4f46e5;
  --purple-soft: #6366f1;
  --bg-light: #f9fafb;
  --bg-soft: #f3f4f6;
}

/* Fundo global + parallax */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e5e7eb;
  line-height: 1.6;
  background: #020617;
}

.parallax-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("img/background.jpeg");
  background-size: cover;
  background-position: center top;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  filter: brightness(2.0);
}

/* Container base */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.btn-solid {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 30px rgba(244, 182, 58, 0.3);
}

.btn-solid:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(244, 182, 58, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: rgba(244, 182, 58, 0.12);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(229, 231, 235, 0.3);
  border-width: 1px;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.6);
}

.btn.full-width {
  width: 100%;
}

/* Header / Navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(to bottom, rgba(15,23,42,0.96), rgba(15,23,42,0.85));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148,163,184,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 0;
}

.brand img {
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: #e5e7eb;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.18s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.12), transparent 55%),
              linear-gradient(to bottom, rgba(15,23,42,0.8), rgba(15,23,42,0.95));
  z-index: -1;
}

.hero-inner {
  padding: 5.5rem 0 4rem;
}

.hero-content {
  max-width: 620px;
}

.hero-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.05rem;
  color: #e5e7eb;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.4rem;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.hero-highlight .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--purple-soft));
}

/* Sections */
.section {
  position: relative;
  padding: 4rem 0;
}

.section-light {
  background: rgba(249,250,251,0.96);
  color: #111827;
}

.section-soft {
  background: rgba(243,244,246,0.95);
  color: #111827;
}

.section-dark-panel {
  background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(2,6,23,0.98));
  color: #e5e7eb;
}

.section-dark-split {
  background: radial-gradient(circle at top, rgba(30,64,175,0.35) 0, rgba(2,6,23,0.98) 55%, black 100%);
  color: #e5e7eb;
}

.section-glass {
  background: rgba(249,250,251,0.92);
  color: #111827;
  backdrop-filter: blur(12px);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.section-header p {
  color: #4b5563;
}

.section-header.center {
  text-align: center;
}

/* Grid 2 colunas */
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

/* Ajuste específico da seção do casal */
.grid-couple {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

/* Texto de seção */
.section-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-text .lead {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.section-dark-panel .section-text .lead,
.section-dark-panel .section-text p {
  color: #e5e7eb;
}

.section-text p {
  color: #4b5563;
}

/* Bullet list */
.bullet-list {
  list-style: none;
  margin-top: 1.3rem;
}

.bullet-list li + li {
  margin-top: 0.45rem;
}

.bullet-list li::before {
  content: "•";
  color: var(--gold);
  font-weight: 700;
  margin-right: 0.35rem;
}

/* Imagens de seção */
.section-image-wrapper.tall {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-image-wrapper.couple {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2.5rem;
}

.section-image {
  width: 100%;
  max-width: 380px;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.4);
}

.section-image.round {
  border-radius: 50%;
  max-width: 340px;
}

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

/* Cards de soluções */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.solution-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

.solution-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: #111827;
}

.solution-card p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.7rem;
}

.solution-card ul {
  list-style: disc;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Split section (propósito) */
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.split-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.split-text p {
  color: #e5e7eb;
  max-width: 520px;
  margin-bottom: 1.4rem;
}

/* Lista de valores */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(15,23,42,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon-symbol {
  font-size: 1.4rem;
}

.value-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.value-item p {
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* Imagem lado direito */
.split-image-wrapper {
  display: flex;
  justify-content: center;
}

.split-image {
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.9);
}

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

/* Cards de propósito */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.purpose-card {
  background: var(--gold);
  color: #111827;
  border-radius: 0.6rem;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 12px 24px rgba(180, 83, 9, 0.28);
}

/* CTA painel */
.cta-panel {
  background: linear-gradient(120deg, #111827, #1e293b);
  border-radius: 1.5rem;
  padding: 2rem 2.3rem;
  color: #e5e7eb;
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-panel h3 {
  font-size: 1.4rem;
}

.cta-panel p {
  max-width: 520px;
  color: #cbd5f5;
}

/* Parceiros */
.partners {
  text-align: center;
}

.partners-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.partners-text {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: #4b5563;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
}

.partners-logos img {
  height: 32px;
  object-fit: contain;
  filter: grayscale(0.1) contrast(1.1);
}

.partners {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

/* Contato */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-text .lead {
  color: #e5e7eb;
}

.contact-form-wrapper {
  background: rgba(15,23,42,0.9);
  padding: 1.8rem 1.6rem;
  border-radius: 1.25rem;
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
  border: 1px solid rgba(148,163,184,0.4);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.form-group input,
.form-group textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(148,163,184,0.6);
  padding: 0.7rem 0.8rem;
  background: rgba(15,23,42,0.9);
  color: #f9fafb;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(244,182,58,0.7);
}

/* Footer */
.footer {
  background: #020617;
  color: #9ca3af;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  max-width: 360px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
}

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

.footer-meta {
  font-size: 0.85rem;
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  z-index: 60;
}

/* LGPD / páginas internas */
.lgpd-wrapper {
  max-width: 900px;
}

.lgpd-header h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.lgpd-header p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.lgpd-section {
  margin-bottom: 1.5rem;
}

.lgpd-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.lgpd-section p {
  color: #4b5563;
}

.lgpd-section ul {
  margin-left: 1.1rem;
  color: #4b5563;
}

.lgpd-section ul li + li {
  margin-top: 0.3rem;
}

.page-header {
  padding: 4rem 0 2rem;
  text-align: left;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}

.page-header p {
  color: #4b5563;
}

/* Botão voltar */
.back-btn-wrapper {
  margin: 2rem 0 0;
}

/* Responsivo */
@media (max-width: 1024px) {
  .grid-2,
  .split-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purpose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-image {
    max-width: 320px;
  }

  .section-image-wrapper.couple {
    justify-content: center;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .nav {
    display: none; /* se quiser menu mobile depois, dá pra implementar */
  }

  .hero-inner {
    padding-top: 4.5rem;
  }

  .hero {
    min-height: 60vh;
  }

  .solutions-grid,
  .purpose-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-panel {
    padding: 1.7rem;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-brand p {
    max-width: none;
  }

  .partners-logos img {
    height: 28px;
  }
}


