/* Shared between oferta.html, oferta-empresas.html (and any future funnel pages) */

/* HERO */
.offer-hero { padding: 56px 0 40px; position: relative; overflow: hidden; }
.offer-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(46,182,188,.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 60%, rgba(46,182,188,.10), transparent 60%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; color: var(--teal-deep);
  text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--teal-soft);
  border: 1px solid rgba(46,182,188,.3);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(46,182,188,.6);
  animation: funnelPulse 1.8s infinite;
}
@keyframes funnelPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,182,188,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(46,182,188,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,182,188,0); }
}

.lede { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 540px; margin: 0 0 32px; }
.lede b { color: var(--ink); font-weight: 600; }
.lede em { font-style: italic; color: var(--teal-deep); font-weight: 500; }

.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
  padding-top: 24px; border-top: 1px solid var(--line);
}
.hero-meta b { color: var(--ink); font-weight: 500; }

/* SUMMARY CARD */
.summary-card {
  background: var(--ink); color: var(--white);
  border-radius: 28px; padding: 32px;
  box-shadow: 0 32px 80px -20px rgba(31,138,143,.35);
  position: relative; overflow: hidden;
}
.summary-card::before {
  content: ""; position: absolute; top: -40%; right: -20%;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.22; pointer-events: none;
}
.summary-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,.55);
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 22px;
}
.summary-head .ok,
.summary-head .tag {
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px;
}
.summary-head .tag {
  background: rgba(46,182,188,.12);
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(46,182,188,.3);
}
.summary-rows { display: flex; flex-direction: column; gap: 14px; position: relative; }
.sr { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.sr .k {
  color: rgba(255,255,255,.6);
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.sr .v { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.sr.h .v { font-size: 28px; color: var(--teal); }
.sr .v.mono { font-family: var(--mono); font-size: 14px; font-weight: 400; }
.sr.compare .old {
  color: rgba(255,255,255,.45); text-decoration: line-through;
  font-size: 16px; margin-right: 10px; font-family: var(--mono);
}
.sr.compare .new { color: var(--teal); font-weight: 600; }
.summary-divider { height: 1px; background: rgba(255,255,255,.08); margin: 4px 0; }

/* Tighter section padding for funnel pages */
section.block { padding: 96px 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); padding: 20px 0; cursor: pointer; }
.faq summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary h4 {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  margin: 0; letter-spacing: -0.01em;
}
.faq summary .plus {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--teal-deep);
  transition: transform .2s, background .2s;
  flex-shrink: 0;
}
.faq[open] summary .plus { transform: rotate(45deg); background: var(--teal-soft); }
.faq p { color: var(--ink-2); margin: 12px 0 0; font-size: 15px; line-height: 1.6; max-width: 720px; }

/* FINAL CTA (dark section with teal-on-ink primary button) */
.final-cta { text-align: center; }
.final-cta h2.title { max-width: 820px; margin: 0 auto 24px; }
.final-cta p.lede {
  max-width: 580px; margin: 0 auto 40px;
  color: rgba(255,255,255,.75); font-size: 18px;
}
.final-cta .btn-primary {
  background: var(--teal); color: var(--ink);
  padding: 20px 32px; font-size: 17px;
}
.final-cta .btn-primary:hover { background: var(--white); transform: translateY(-1px); }
.final-cta .btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; padding: 18px 24px;
  font-size: 15px; font-weight: 500;
  margin-left: 12px;
  transition: border-color .15s, background .15s;
}
.final-cta .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.05); }
.final-foot {
  margin-top: 32px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,.5);
}

