/* ============================================================
   INTELIGÊNCIA FINANCEIRA NO AGRO — Micro-landings
   Estilos exclusivos das páginas de dor específica.
   Reutiliza variáveis e classes do style.css principal.
   ============================================================ */

body.micro-page {
  background: var(--branco);
}

/* ============================================================
   BREADCRUMB / VOLTAR
   ============================================================ */
.micro-breadcrumb {
  padding: 14px 0;
  background: var(--offwhite);
  border-bottom: 1px solid rgba(43, 43, 43, 0.06);
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--verde-musgo);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover { color: var(--terracota); }

/* ============================================================
   HERO da micro-landing
   ============================================================ */
.micro-hero {
  background:
    radial-gradient(ellipse at top left, rgba(196, 154, 63, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(184, 92, 60, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--offwhite) 0%, var(--bege-claro) 100%);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(43, 43, 43, 0.05);
}

.micro-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 154, 63, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.micro-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.micro-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--terracota);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(184, 92, 60, 0.1);
  border-radius: 4px;
  margin-bottom: 28px;
}

.micro-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--verde-musgo-escuro);
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}

.micro-hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--cinza-texto);
  margin-bottom: 36px;
  max-width: 720px;
}

.micro-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 620px) {
  .micro-hero { padding: 50px 0 70px; }
}

/* ============================================================
   Seções gerais da micro-landing
   ============================================================ */
.micro-section { padding: 80px 0; }

@media (max-width: 620px) {
  .micro-section { padding: 60px 0; }
}

/* ============================================================
   BLOCO DE DOR — lista numerada de pontos
   ============================================================ */
.micro-pain {
  background: var(--branco);
}

.pain-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pain-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px 30px;
  background: var(--offwhite);
  border-left: 4px solid var(--terracota);
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.pain-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--terracota);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pain-content h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--verde-musgo-escuro);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.pain-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cinza-texto);
}

@media (max-width: 620px) {
  .pain-item { grid-template-columns: 1fr; gap: 8px; padding: 22px 22px; }
  .pain-num { font-size: 28px; margin-bottom: 4px; }
}

/* ============================================================
   TESE — bloco educativo
   ============================================================ */
.micro-tese {
  background: linear-gradient(135deg, var(--verde-musgo-escuro) 0%, var(--verde-musgo) 100%);
  color: var(--offwhite);
  position: relative;
  overflow: hidden;
}

.micro-tese::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: var(--serif);
  font-size: 240px;
  color: rgba(196, 154, 63, 0.15);
  line-height: 1;
  pointer-events: none;
}

.micro-tese .section-head { position: relative; z-index: 1; }

.micro-tese .section-head h2 {
  color: var(--offwhite);
}

.micro-tese .kicker.light { color: var(--dourado); }

.micro-tese-text {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 32px auto 0;
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  color: rgba(245, 241, 232, 0.95);
  text-align: left;
  font-style: italic;
  letter-spacing: -0.005em;
}

/* ============================================================
   APRESENTAÇÃO DO VOLUME
   ============================================================ */
.micro-volume {
  background: var(--offwhite);
}

.micro-volume-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.micro-volume-cover {
  position: relative;
  text-align: center;
}

.micro-volume-cover img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-cover);
  transition: transform 0.35s ease;
  display: block;
}

.micro-volume-cover:hover img { transform: translateY(-6px); }

.micro-volume-num {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--dourado);
  color: var(--verde-musgo-escuro);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px 14px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  transform: rotate(4deg);
  z-index: 2;
}

.micro-volume-text .kicker {
  color: var(--terracota);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

.micro-volume-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--verde-musgo-escuro);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.micro-volume-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--cinza-texto);
  margin-bottom: 28px;
}

.micro-benef-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--verde-musgo-escuro);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.micro-benef-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.micro-benef-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--cinza-texto);
  border-bottom: 1px solid rgba(43, 43, 43, 0.06);
}

.micro-benef-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--terracota);
  font-weight: 700;
  font-size: 16px;
}

.micro-benef-list li:last-child { border-bottom: none; }

/* Bloco de compra individual */
.micro-buy-block {
  background: var(--branco);
  padding: 26px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--dourado);
  box-shadow: var(--shadow-md);
}

.micro-buy-price {
  text-align: center;
  margin-bottom: 18px;
}

.micro-buy-old {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cinza-claro);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.micro-buy-value {
  font-family: var(--serif);
  font-weight: 900;
  color: var(--terracota);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.micro-buy-symbol { font-size: 20px; vertical-align: super; }
.micro-buy-int { font-size: 56px; letter-spacing: -0.02em; }
.micro-buy-dec { font-size: 20px; }

.micro-buy-detail {
  display: block;
  font-size: 12px;
  color: var(--cinza-claro);
  margin-top: 6px;
}

.btn-vol-buy-micro {
  width: 100%;
  justify-content: center;
}

.micro-buy-guarantee {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--cinza-texto);
  line-height: 1.5;
}

@media (max-width: 820px) {
  .micro-volume-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .micro-volume-cover {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* ============================================================
   UPSELL — Edição Fundadora
   ============================================================ */
.micro-upsell {
  background: var(--branco);
  padding-top: 40px;
  padding-bottom: 100px;
}

.upsell-card {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FCFAF4 0%, var(--bege-claro) 100%);
  border-radius: 12px;
  padding: 56px 48px 52px;
  position: relative;
  border-top: 6px solid var(--dourado);
  box-shadow: 0 20px 60px rgba(43, 43, 43, 0.10);
  overflow: hidden;
}

.upsell-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196, 154, 63, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.upsell-ribbon {
  position: absolute;
  top: 24px;
  right: -32px;
  background: var(--terracota);
  color: var(--branco);
  padding: 6px 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transform: rotate(35deg);
  box-shadow: 0 4px 10px rgba(184, 92, 60, 0.3);
}

.upsell-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--verde-musgo-escuro);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  max-width: 700px;
}

.upsell-intro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--cinza-texto);
  margin-bottom: 36px;
  max-width: 760px;
}

.upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 32px;
  margin-bottom: 40px;
}

.upsell-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.upsell-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--verde-musgo);
  color: var(--offwhite);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.upsell-feature strong {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--verde-musgo-escuro);
  margin-bottom: 4px;
}

.upsell-feature span {
  font-size: 14px;
  line-height: 1.55;
  color: var(--cinza-texto);
}

.upsell-price-block {
  background: var(--branco);
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.upsell-price-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.upsell-old {
  font-size: 13px;
  color: var(--cinza-claro);
}

.upsell-old s { color: var(--cinza-claro); }

.upsell-now {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--carvao);
}

.upsell-now strong {
  color: var(--terracota);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.upsell-installments {
  font-size: 13px;
  color: var(--cinza-texto);
}

@media (max-width: 820px) {
  .upsell-card { padding: 40px 28px 36px; }
  .upsell-grid { grid-template-columns: 1fr; }
  .upsell-price-block { flex-direction: column; align-items: stretch; padding: 22px 22px; }
  .upsell-price-block .btn { width: 100%; justify-content: center; }
  .upsell-ribbon { font-size: 10px; right: -38px; }
}

/* ============================================================
   FAQ CURTO
   ============================================================ */
.micro-faq {
  background: var(--offwhite);
  padding-top: 70px;
  padding-bottom: 70px;
}

.micro-faq .faq-list { max-width: 760px; margin: 36px auto 0; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.micro-cta-final {
  background: linear-gradient(135deg, var(--verde-musgo-escuro) 0%, var(--verde-musgo) 100%);
  color: var(--offwhite);
  text-align: center;
  padding: 80px 0;
}

.micro-cta-final-inner {
  max-width: 820px;
}

.micro-cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--offwhite);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.micro-cta-final p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.9);
  margin-bottom: 36px;
}

.micro-cta-final p br { display: inline; }

@media (max-width: 620px) {
  .micro-cta-final p br { display: none; }
}

.micro-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ghost-light {
  background: transparent;
  color: var(--offwhite);
  border: 2px solid rgba(245, 241, 232, 0.4);
}

.btn-ghost-light:hover {
  background: rgba(245, 241, 232, 0.1);
  border-color: var(--dourado);
  color: var(--dourado);
}
