:root {
  --cream: #f2e8d3;
  --cream-dark: #e8dabf;
  --blue: #1d5fe0;
  --blue-dark: #16408f;
  --blue-navy: #123168;
  --gold: #c9a876;
  --gold-dark: #b3925e;
  --pink: #e85d9e;
  --text-dark: #1a2b4d;
  --white: #ffffff;
  --radius: 14px;
}

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

html { overflow-x: hidden; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
}

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

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin-bottom: 1.2rem;
}
.section-title--light { color: var(--white); }

.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--blue-navy);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  padding: 1.1rem 2rem;
  border-radius: 10px;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,0.2); }
.btn-cta--light { background: var(--white); color: var(--blue); }

/* ===== DOBRA 1 - HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0d1b2e url('../assets/Foto_hero-session-crop.jpg') center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,35,0.65) 0%, rgba(10,20,35,0.35) 40%, rgba(10,20,35,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem clamp(1.5rem, 6vw, 6rem);
}

.logo { display: flex; align-items: center; justify-content: center; }
.logo-img { height: 140px; width: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5)); }

.hero-headline { font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1.25; text-shadow: 0 2px 14px rgba(0,0,0,0.55); }

.hero-promise { font-size: 1.75rem; color: var(--white); opacity: 0.92; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }

.hero-content .btn-cta { font-size: 1.4rem; padding: 1.54rem 2.8rem; }

/* ===== DOBRA 2 - UNIQUE / 3 DIMENSÕES ===== */
.unique {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.5rem;
}
.unique-number {
  font-size: 6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  line-height: 1;
}
.unique-subtitle { font-size: 1.3rem; font-weight: 500; margin: 0.5rem auto 2rem; max-width: 500px; }

.circle-wrap { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.circle {
  position: relative;
  width: 380px; height: 380px;
  border-radius: 50%;
}
.circle-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.circle-segment {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  width: 42%;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transform: translate(-50%, -50%);
}
.circle-icon { width: 34px; height: 34px; }
.circle-segment--top   { top: 27%; left: 50%; }
.circle-segment--right { top: 61.5%; left: 69.9%; }
.circle-segment--left  { top: 61.5%; left: 30.1%; }

.badges-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem;
  margin-bottom: 2rem;
}
.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 30px;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
}

/* ===== DOBRA 4 - OFERTA / CONTEÚDO ===== */
.offer-content {
  background: var(--cream) url('../assets/icon_onda_crop.png') center bottom / 780px auto no-repeat;
  padding: 2.5rem 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--blue-navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
}
.offer-pill {
  display: inline-block;
  background: rgba(255,255,255,0.9);
  color: var(--blue-navy);
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 0.3rem;
}
.check-list { list-style: none; text-align: left; margin: 1.8rem 0; display: flex; flex-direction: column; gap: 0.9rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.95rem; }
.check-icon {
  background: var(--pink);
  color: var(--white);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== DOBRA 6 - PILLARS ===== */
.pillars { background: #006ef1; color: var(--white); padding: 3.5rem 1.5rem; }
.pillars-intro { text-align: center; max-width: 650px; margin: 0 auto 2.5rem; opacity: 0.9; }
.pillars-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.pillar-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.pillar-card h3 { font-size: 1.05rem; margin-bottom: 0.8rem; color: var(--gold); }
.pillar-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pillar-card li { font-size: 0.9rem; opacity: 0.9; padding-left: 1rem; position: relative; }
.pillar-card li::before { content: '—'; position: absolute; left: 0; opacity: 0.6; }

/* ===== DOBRA 7 - LEVELS ===== */
.levels { max-width: 800px; margin: 0 auto; padding: 3.5rem 1.5rem; }
.levels-list { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2rem; }
.level-item { display: flex; gap: 1.1rem; align-items: flex-end; }

.level-chart { display: flex; align-items: flex-end; gap: 3px; height: 30px; flex-shrink: 0; }
.level-chart .bar { display: block; width: 6px; border-radius: 2px; }
.bar-1 { height: 35%; background: #f2d94e; }
.bar-2 { height: 50%; background: #cfdb4e; }
.bar-3 { height: 65%; background: #a3d24a; }
.bar-4 { height: 80%; background: #78c944; }
.bar-5 { height: 100%; background: #4cbf3f; }

.level-item--1 .bar:nth-child(n+2),
.level-item--2 .bar:nth-child(n+3),
.level-item--3 .bar:nth-child(n+4),
.level-item--4 .bar:nth-child(n+5) { background: rgba(18,43,77,0.15); }

.level-item h3 { color: var(--blue); font-size: 1rem; margin-bottom: 0.2rem; }
.level-item p { font-size: 0.9rem; opacity: 0.85; }
.levels-note { font-size: 0.88rem; opacity: 0.75; border-top: 1px solid rgba(0,0,0,0.15); padding-top: 1.3rem; }

/* ===== DOBRA 10 - GUARANTEE ===== */
.guarantee { position: relative; background: var(--blue-navy); color: var(--white); text-align: center; padding: 3.5rem 1.5rem; }
.guarantee-seal {
  width: 130px; height: 130px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: var(--gold);
  text-align: center;
}
.guarantee-text { max-width: 600px; margin: 0 auto; opacity: 0.9; }

/* ===== DOBRA 11 - ABOUT ===== */
.about {
  background: #0d1b2e url('../assets/fundo_profile_crop.jpg') center / cover no-repeat;
  min-height: 630px;
  padding: 4rem clamp(1.5rem, 23vw, 19rem) 4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.about-content {
  max-width: 480px; width: 100%; margin: 0;
  background: rgba(18,49,104,0.87);
  border-radius: var(--radius);
  padding: 2rem clamp(1.25rem, 3vw, 2.25rem);
}
.about-content .section-title { color: var(--white); }
.about-content p { margin-bottom: 1rem; font-size: 0.92rem; color: var(--white); opacity: 0.92; }

/* ===== DOBRA 12 - MEDIA ===== */
.media { background: var(--white); padding: 3.5rem 1.5rem; }

.insta-grid {
  max-width: calc(5 * 300px + 4 * 1.2rem);
  margin: 2.5rem auto 0;
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  align-items: start;
  justify-content: center;
}
.insta-grid .instagram-media {
  flex: 0 0 300px;
  width: 300px !important;
  min-width: 0 !important;
  max-width: 300px !important;
  margin: 0 !important;
  overflow: hidden;
}
.insta-grid .instagram-media iframe {
  width: 100% !important;
}

/* ===== FINAL CTA ===== */
.final-cta { background: var(--blue); color: var(--white); text-align: center; padding: 4rem 1.5rem; }
.final-cta .section-title { margin-bottom: 1.8rem; }

/* ===== FOOTER ===== */
.footer { position: relative; background: var(--blue-navy); color: var(--white); text-align: center; padding: 2.5rem 1.5rem; }
.logo--footer { justify-content: center; margin-bottom: 0.8rem; }
.footer-text { font-size: 0.8rem; opacity: 0.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .hero { min-height: 70vh; }
  .hero-content { padding: 2rem 1.5rem; }
  .about { min-height: 520px; padding: 1.5rem; align-items: flex-end; justify-content: center; }
  .about-content { max-width: 92%; padding: 1.5rem; }
  .about-content .section-title { font-size: 1.3rem; }
  .about-content p { font-size: 0.85rem; margin-bottom: 0.8rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .insta-grid { max-width: 420px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.66rem; }
  .hero-promise { font-size: 1.47rem; }
  .hero-content .btn-cta { font-size: 1.2rem; padding: 1.3rem 2.2rem; }
  .logo-img { height: 96px; }
  .unique-number { font-size: 4rem; }
  .unique-subtitle { font-size: 1.1rem; }
  .circle { width: 253px; height: 253px; }
  .circle-icon { width: 30px; height: 30px; }
  .circle-segment { font-size: 0.62rem; width: 48%; }
  .offer-box { padding: 2rem 1.2rem; }
  .guarantee-seal { width: 110px; height: 110px; font-size: 0.8rem; }
  .section-title { font-size: 1.3rem; }
}
