/* ===== Design tokens (Figma — Costa do Lago) ===== */
:root {
  --azul: #004f65;
  --azul-escuro: #00293a;
  --verde: #3baf6e;
  --teal: #3bafbc;
  --cinza: #d9d9d9;
  --branco: #ffffff;
  --fonte: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte);
  color: var(--branco);
  background: var(--azul);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.container.narrow {
  max-width: 820px;
}

/* Divisores curvos entre seções */
.divider {
  display: block;
  width: 100%;
  height: clamp(60px, 10vw, 150px);
  margin-top: auto;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--verde);
  color: var(--branco);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  border-radius: 100px;
  padding: 17px 34px;
  font-size: 16px;
  line-height: 1.3;
  max-width: 320px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.btn-whatsapp {
  border: 6px solid var(--branco);
  padding: 20px 40px;
  font-size: 20px;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0, 79, 101, 0.25);
}

.btn-whatsapp img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* ===== Hero ===== */
.hero {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  background:
    linear-gradient(125deg, rgba(0, 79, 101, 0) 28%, rgba(0, 41, 58, 0.85) 78%),
    linear-gradient(160deg, #086179 0%, var(--azul) 55%, #013c4e 100%);
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 48px;
}

.nav-logo img {
  width: clamp(180px, 20vw, 281px);
}

.nav-links {
  display: flex;
  gap: clamp(40px, 7vw, 100px);
  list-style: none;
  font-size: 20px;
}

.nav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-end;
  max-width: 560px;
  width: 100%;
  padding: 80px 0 120px;
}

.hero h1 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 400;
}

.hero h1 strong {
  font-weight: 700;
  display: block;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  margin: 44px 0 60px;
  max-width: 400px;
}

/* ===== Sobre ===== */
.sobre {
  display: flex;
  flex-direction: column;
  background: var(--teal);
  text-align: center;
}

.sobre .container {
  padding: clamp(48px, 7vw, 96px) 0 clamp(32px, 5vw, 64px);
}

.sobre h2 {
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 640px;
  margin: 0 auto 40px;
}

.sobre p {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 500;
  max-width: 780px;
  margin-inline: auto;
}

/* ===== Benefícios ===== */
.beneficios {
  display: flex;
  flex-direction: column;
  background: var(--azul);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: minmax(0, 606px) minmax(0, 496px);
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  padding: clamp(48px, 6vw, 90px) 0;
}

.foto-placeholder {
  background: var(--cinza);
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 606 / 663;
}

.beneficios-lista {
  list-style: none;
}

.beneficios-lista li {
  padding: 40px 0;
  border-bottom: 1px solid var(--teal);
}

.beneficios-lista li:last-child {
  border-bottom: none;
}

.beneficios-lista h3 {
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.beneficios-lista p {
  font-size: clamp(16px, 1.6vw, 20px);
}

/* ===== Masterplan (placeholder) ===== */
.masterplan {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--cinza) center / cover no-repeat;
  min-height: clamp(380px, 60vw, 820px);
}

/* ===== Oportunidade ===== */
.oportunidade {
  display: flex;
  flex-direction: column;
  background: var(--branco);
  color: var(--azul);
  text-align: center;
}

.oportunidade .container {
  padding: clamp(48px, 6vw, 80px) 0 0;
}

.oportunidade h2 {
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 520px;
  margin: 0 auto 40px;
}

.oportunidade p {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 500;
  max-width: 750px;
  margin: 0 auto 56px;
}

/* ===== Chamada final ===== */
.chamada {
  display: flex;
  flex-direction: column;
  background: var(--teal);
  text-align: center;
}

.chamada .container {
  padding: clamp(40px, 5vw, 64px) 0 clamp(24px, 3vw, 40px);
}

.chamada h2 {
  font-size: clamp(22px, 3.4vw, 40px);
  line-height: 1.2;
  max-width: 640px;
  margin: 0 auto 32px;
}

.chamada p {
  font-size: clamp(18px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  max-width: 811px;
  margin-inline: auto;
}

/* ===== Footer ===== */
.footer {
  background: var(--azul);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 6vw, 96px) 0 56px;
}

.contatos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 1.3px solid var(--teal);
  border-radius: 55px;
  padding: 11px 22px;
  font-size: clamp(18px, 2vw, 22px);
  transition: background 0.2s ease;
}

.pill:hover {
  background: rgba(59, 175, 188, 0.15);
}

.pill .num {
  text-transform: uppercase;
}

.parceiros {
  margin-top: 72px;
  width: min(543px, 80vw);
}

.disclaimer {
  font-size: clamp(10px, 1.2vw, 14px);
  max-width: 1038px;
  margin-top: 80px;
  opacity: 0.9;
}

.logo-footer {
  margin-top: 72px;
  width: clamp(81px, 12vw, 151px);
}

.copyright {
  font-size: clamp(12px, 1.6vw, 22px);
  margin-top: 32px;
}

/* ===== Mobile (design iPhone 16 Pro Max — 440px) ===== */
@media (max-width: 768px) {
  .nav {
    justify-content: center;
    padding-top: 64px;
  }

  .nav-logo img {
    width: 217px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    align-self: center;
    text-align: center;
    align-items: center;
    padding: 56px 0 96px;
  }

  .hero h1 {
    font-size: 25px;
  }

  .hero-sub {
    font-size: 15px;
    margin: 28px 0 44px;
  }

  .btn {
    font-size: 15.5px;
    padding: 16px 32px;
    max-width: 300px;
  }

  .btn-whatsapp {
    border-width: 5px;
    font-size: 15.5px;
    max-width: 280px;
  }

  .btn-whatsapp img {
    width: 39px;
    height: 39px;
  }

  /* Benefícios viram cards teal centralizados, como no design mobile */
  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .foto-placeholder {
    display: none;
  }

  .beneficios-lista {
    display: grid;
    gap: 32px;
  }

  .beneficios-lista li,
  .beneficios-lista li:last-child {
    background: var(--teal);
    border: none;
    border-radius: 24px;
    text-align: center;
    padding: 32px 24px;
    max-width: 320px;
    width: 100%;
    margin-inline: auto;
  }

  .beneficios-lista h3 {
    font-size: 21.8px;
  }

  .beneficios-lista p {
    font-size: 17.8px;
    max-width: 240px;
    margin-inline: auto;
  }

  .chamada h2,
  .chamada p {
    font-size: 22px;
  }

  .pill {
    font-size: 20px;
  }
}
