/* ─── RESET & BASE ───────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: #333;
}

/* ─── CONTAINER ──────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1140px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #071c2e 0%, #0b3352 60%, #0a2a43 100%);
  padding: 80px 20px;
  color: white;
}

/* grade de pontos no fundo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26, 188, 156, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* brilho lateral decorativo */
.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 188, 156, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ─── HERO TEXTO ─────────────────────────────────── */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeUp 0.8s ease both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1abc9c;
  opacity: 0.9;
}

.brand::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #1abc9c;
  border-radius: 2px;
}

.title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #f0f9ff;
  letter-spacing: -0.5px;
}

.title em {
  font-style: normal;
  color: #1abc9c;
}

.subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: #94b8cc;
  max-width: 460px;
}

/* ─── BOTÕES ─────────────────────────────────────── */
.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

.btn-primary {
  background: #1abc9c;
  color: #071c2e;
  box-shadow: 0 4px 20px rgba(26, 188, 156, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(26, 188, 156, 0.5);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp::before {
  content: '💬';
  font-size: 16px;
}

/* ─── HERO IMAGEM ────────────────────────────────── */
.hero-image {
  position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(26, 188, 156, 0.2),
    0 30px 80px rgba(0, 0, 0, 0.5);
}

.image-frame img {
  width: 100%;
  display: block;
  border-radius: 20px;
  filter: brightness(0.9) saturate(1.1);
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(to bottom right, rgba(26, 188, 156, 0.08), transparent 60%);
  pointer-events: none;
}

/* ─── BADGE ──────────────────────────────────────── */
.badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #0f3a54;
  border: 1px solid rgba(26, 188, 156, 0.3);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.badge-icon {
  font-size: 26px;
  line-height: 1;
}

.badge-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #e2f5f0;
}

.badge-text span {
  font-size: 12px;
  color: #1abc9c;
  font-weight: 500;
}

/* ─── BENEFÍCIOS ─────────────────────────────────── */
.benefits {
  padding: 80px 20px;
}

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

.card {
  background: #f4f4f4;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

/* ─── COMO FUNCIONA ──────────────────────────────── */
.how {
  background: #eee;
  padding: 80px 20px;
  text-align: center;
}

.how h2 {
  margin-bottom: 25px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.steps div {
  background: white;
  padding: 25px;
  border-radius: 10px;
}

/* ─── PARCEIROS ──────────────────────────────────── */
.partners {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

.partners h2 {
  margin-bottom: 40px;
}

.logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.logo {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.logo span {
  font-size: 30px;
}

.logo p {
  margin-top: 10px;
  font-weight: bold;
}

.logo:hover {
  transform: translateY(-5px);
}

.disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: #777;
}

/* ─── CTA ────────────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, #0B3C5D, #06273a);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  margin-bottom: 20px;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  text-align: center;
  padding: 25px;
  font-size: 14px;
  background: #111;
  color: white;
}

.dev {
  margin-top: 5px;
  font-size: 13px;
  color: #aaa;
}

/* ─── ANIMAÇÃO ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVO ─────────────────────────────────── */
@media (max-width: 860px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .brand {
    justify-content: center;
  }

  .subtitle {
    margin: 0 auto;
  }

  .buttons {
    justify-content: center;
  }

  .badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
    white-space: nowrap;
  }

  .hero-image {
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .title { font-size: 28px; }
  .buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}