@import url('assets/fonts/fonts.css');

:root {
  --mint: #84f3d4;
  --mint-dark: #5fd8b6;
  --green-primary: #2c5556;
  --green-secondary: #276868;
  --green-deep: #1d4848;
  --green-abyss: #132929;
  --green-teal: #4c8383;
  --night: #0a1713;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-border: #e8e8e8;
  --ink: #1f2124;
  --radius-card: 20px;
  --radius-pill: 50px;
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--green-abyss);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Abhaya Libre', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

section { padding: 88px 0; position: relative; }

/* ---------- Utilitários ---------- */

.mint { color: var(--mint); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(30px, 4.2vw, 44px);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.86;
  max-width: 760px;
}

.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

.divider {
  height: 1px;
  background: var(--mint);
  opacity: 0.35;
  border: 0;
  margin: 32px 0;
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--mint);
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  padding: 18px 34px;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 30px rgba(132, 243, 212, 0.18);
}

.btn:hover { background: var(--mint-dark); transform: translateY(-2px); }

.btn--sm { font-size: 14px; font-weight: 600; padding: 10px 20px; box-shadow: none; }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }

.btn-note {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.7;
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 23, 19, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(132, 243, 212, 0.14);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__logo img { height: 42px; width: auto; }

/* ---------- Fundo molecular ---------- */

.molecules {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.5;
}

.molecules svg { width: 100%; height: 100%; }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1100px 620px at 12% -10%, rgba(39, 104, 104, 0.7) 0%, rgba(19, 41, 41, 0) 70%),
    linear-gradient(120deg, var(--night) 0%, #10302e 55%, var(--green-primary) 100%);
  padding: 76px 0 92px;
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(132, 243, 212, 0.12);
  border: 1px solid rgba(132, 243, 212, 0.4);
  color: var(--mint);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(132, 243, 212, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(132, 243, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(132, 243, 212, 0); }
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 22px;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.88;
  max-width: 620px;
  margin-bottom: 26px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  padding: 14px 20px;
  border-left: 3px solid var(--mint);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 12px 12px 0;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

.hero__price {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.hero__price .from { font-size: 14px; opacity: 0.6; text-decoration: line-through; }
.hero__price .now { font-family: 'Abhaya Libre', serif; font-size: 34px; color: var(--mint); }

.hero__media { position: relative; }

.hero__media img {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.hero__media-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: rgba(10, 23, 19, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(132, 243, 212, 0.25);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.45;
}

.hero__media-tag strong { color: var(--mint); }

/* ---------- Faixa de credibilidade ---------- */

.strip {
  background: var(--green-abyss);
  border-top: 1px solid rgba(132, 243, 212, 0.12);
  border-bottom: 1px solid rgba(132, 243, 212, 0.12);
  padding: 26px 0;
}

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

.strip__item .num {
  font-family: 'Abhaya Libre', serif;
  font-size: 34px;
  color: var(--mint);
  line-height: 1.1;
}

.strip__item .lbl { font-size: 13px; opacity: 0.75; }

/* ---------- Seção problema / dados ---------- */

.problem { background: var(--green-deep); overflow: hidden; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 44px 0 40px;
}

.stat-card {
  background: var(--green-abyss);
  border: 1px solid rgba(132, 243, 212, 0.16);
  border-radius: var(--radius-card);
  padding: 30px;
}

.stat-card:nth-child(2) { background: var(--green-secondary); border-color: rgba(132, 243, 212, 0.24); }

.stat-card .big {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 7vw, 88px);
  color: var(--mint);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card p { font-size: 16px; opacity: 0.88; }

.problem__closing {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--mint);
  border-radius: 0 16px 16px 0;
  padding: 26px 30px;
  font-size: 18px;
  line-height: 1.65;
}

/* ---------- Oferta / o que está incluso ---------- */

.offer { background: var(--green-abyss); }

.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.offer-card {
  background: linear-gradient(180deg, rgba(39, 104, 104, 0.5) 0%, rgba(19, 41, 41, 0.6) 100%);
  border: 1px solid rgba(132, 243, 212, 0.18);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.offer-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-abyss);
  background: var(--mint);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.offer-card__tag--soft {
  background: rgba(132, 243, 212, 0.14);
  color: var(--mint);
  border: 1px solid rgba(132, 243, 212, 0.35);
}

.offer-card__visual {
  height: 190px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(10, 23, 19, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-card__visual img { max-height: 100%; width: auto; object-fit: contain; }

.offer-card h3 { font-size: 24px; margin-bottom: 12px; }

.offer-card p { font-size: 15px; opacity: 0.85; flex-grow: 1; }

.offer-card__value {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(132, 243, 212, 0.2);
  font-size: 14px;
  opacity: 0.9;
}

.offer-card__value strong { color: var(--mint); font-size: 18px; }

.icon-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(132, 243, 212, 0.12);
  border: 1px solid rgba(132, 243, 212, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg { width: 34px; height: 34px; stroke: var(--mint); fill: none; stroke-width: 1.6; }

/* ---------- Bloco de preço ---------- */

.pricebox {
  margin-top: 48px;
  background: linear-gradient(120deg, var(--night) 0%, #174848 100%);
  border: 1px solid rgba(132, 243, 212, 0.35);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
}

.pricebox h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }

.pricebox p { opacity: 0.85; max-width: 620px; margin: 0 auto 26px; }

.pricebox__old {
  font-size: 20px;
  opacity: 0.65;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricebox__now {
  font-family: 'Abhaya Libre', serif;
  font-size: clamp(60px, 9vw, 96px);
  color: var(--mint);
  line-height: 1;
  margin-bottom: 8px;
}

.pricebox__cond { font-size: 15px; opacity: 0.8; margin-bottom: 30px; }

/* ---------- Aprendizados ---------- */

.learn { background: var(--gray-light); color: var(--ink); }

.learn h2, .learn h3 { color: var(--green-primary); }

.learn .section-lead { opacity: 0.8; }

.learn__list { margin-top: 48px; display: flex; flex-direction: column; gap: 20px; }

.learn-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 8px 30px rgba(19, 41, 41, 0.07);
}

.learn-item__num {
  font-family: 'Abhaya Libre', serif;
  font-size: 62px;
  line-height: 1;
  color: var(--mint);
  -webkit-text-stroke: 1px var(--green-secondary);
}

.learn-item h3 { font-size: 26px; margin-bottom: 10px; }

.learn-item p { font-size: 16px; color: #43494a; }

/* ---------- Perguntas ---------- */

.questions {
  background:
    linear-gradient(rgba(10, 23, 19, 0.9), rgba(19, 41, 41, 0.96)),
    url('assets/img/summit-auditorio.jpg') center / cover no-repeat;
}

.questions__grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.question {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(132, 243, 212, 0.16);
  border-radius: 16px;
  padding: 20px 22px;
  font-size: 16px;
  line-height: 1.5;
}

.question svg { flex-shrink: 0; width: 22px; height: 22px; stroke: var(--mint); fill: none; stroke-width: 1.8; margin-top: 2px; }

/* ---------- Para quem ---------- */

.audience { background: var(--green-deep); }

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

.audience-card {
  background: var(--green-abyss);
  border: 1px solid rgba(132, 243, 212, 0.14);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.audience-card:hover { transform: translateY(-4px); border-color: rgba(132, 243, 212, 0.4); }

.audience-card .icon-circle { width: 56px; height: 56px; margin-bottom: 20px; }
.audience-card .icon-circle svg { width: 26px; height: 26px; }

.audience-card h3 { font-size: 22px; margin-bottom: 10px; }
.audience-card p { font-size: 15px; opacity: 0.82; }

/* ---------- Especialistas ---------- */

.expert { background: var(--green-abyss); }
.expert--alt { background: var(--green-primary); }

.expert__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.expert--alt .expert__grid { grid-template-columns: 1.15fr 0.85fr; }
.expert--alt .expert__media { order: 2; }

.expert__media img {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.expert__name { font-size: clamp(30px, 4vw, 42px); margin-bottom: 6px; }

.expert__crm {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 22px;
}

.expert__bio p { font-size: 16px; line-height: 1.7; opacity: 0.88; margin-bottom: 14px; }

.expert__creds { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }

.expert__creds li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  opacity: 0.88;
}

.expert__creds li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--mint);
}

/* ---------- Sobre a WeCann ---------- */

.about {
  background: linear-gradient(120deg, var(--night) 0%, #174848 100%);
  overflow: hidden;
}

.about__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.about__logo { height: 64px; width: auto; margin-bottom: 26px; }

.about p { font-size: 17px; line-height: 1.75; opacity: 0.88; margin-bottom: 16px; }

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

.about__num-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(132, 243, 212, 0.2);
  border-radius: var(--radius-card);
  padding: 26px;
}

.about__num-card .n {
  font-family: 'Abhaya Libre', serif;
  font-size: 44px;
  color: var(--mint);
  line-height: 1.1;
}

.about__num-card .d { font-size: 14px; opacity: 0.82; }

/* ---------- CTA final ---------- */

.final {
  background:
    linear-gradient(rgba(10, 23, 19, 0.92), rgba(10, 23, 19, 0.94)),
    url('assets/img/patricia-palco.jpg') center / cover no-repeat;
  text-align: center;
}

.final h2 { font-size: clamp(32px, 4.6vw, 52px); margin-bottom: 20px; }

.final p { font-size: 18px; line-height: 1.7; opacity: 0.88; max-width: 720px; margin: 0 auto 16px; }

.final__price {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin: 26px 0 30px;
}

.final__price .old { font-size: 22px; opacity: 0.6; text-decoration: line-through; }
.final__price .new { font-family: 'Abhaya Libre', serif; font-size: clamp(52px, 8vw, 80px); color: var(--mint); line-height: 1; }

/* ---------- Footer ---------- */

.footer {
  background: var(--green-abyss);
  border-top: 1px solid rgba(132, 243, 212, 0.14);
  padding: 44px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer img { height: 46px; width: auto; }

.footer p { font-size: 13px; opacity: 0.6; max-width: 560px; }

/* ---------- Barra fixa mobile ---------- */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(10, 23, 19, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(132, 243, 212, 0.25);
  padding: 12px 16px;
}

.sticky-cta .btn { width: 100%; font-size: 16px; padding: 15px 20px; }

/* ---------- Responsivo ---------- */

@media (max-width: 1024px) {
  .hero__grid,
  .expert__grid,
  .expert--alt .expert__grid,
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .expert--alt .expert__media { order: 0; }
  .expert__media img { aspect-ratio: 16 / 10; }
  .offer__grid,
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .header__cta { display: none; }
  .header__logo img { height: 34px; }
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .stats,
  .offer__grid,
  .audience__grid,
  .questions__grid,
  .about__numbers { grid-template-columns: 1fr; }
  .learn-item { grid-template-columns: 1fr; gap: 12px; padding: 26px; }
  .learn-item__num { font-size: 48px; }
  .pricebox { padding: 36px 24px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__price { align-items: center; }
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
}
