/* ─── Home (index) ─── */
.hero {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 0.5rem 0 3rem;
}
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.12), rgba(45, 138, 99, 0.12));
  border: 1px solid rgba(26, 92, 68, 0.2);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(244, 196, 48, 0.15), rgba(45, 138, 99, 0.1));
  border: 1px solid rgba(26, 92, 68, 0.2);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.page-badge--gold {
  border-color: rgba(244, 196, 48, 0.45);
  color: #8a6d00;
  background: rgba(244, 196, 48, 0.12);
}
.hero h1,
.page-title {
  font-size: clamp(2rem, 5.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--green-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.page-title--sm {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}
.hero h1 .accent,
.page-title .accent {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-title .gold { color: var(--gold); -webkit-text-fill-color: var(--gold); }
.hero-lead,
.page-lead {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}
.stack-pills,
.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}
.stack-pills span,
.stack span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dce8e2;
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(15, 61, 46, 0.05);
}
.stack-pills .ia,
.stack .ia { border-color: rgba(124, 92, 255, 0.35); color: #5a3fd4; }
.stack-pills .cursor,
.stack .cursor { border-color: rgba(124, 92, 255, 0.25); color: #6b4fff; }
.stack-pills .flutter,
.stack .flutter { border-color: rgba(84, 180, 255, 0.35); color: #1a7fc4; }
.stack .stitch { border-color: rgba(244, 196, 48, 0.45); color: #8a6d00; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(145deg, var(--green-dark) 0%, #0a2920 100%);
  border-radius: 24px;
  padding: 1.75rem 1.5rem;
  color: #fff;
  box-shadow: 0 32px 64px rgba(15, 61, 46, 0.25);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-card__label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.hero-card h2 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  position: relative;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  position: relative;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 0.65rem;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.hero-stat span {
  font-size: 0.68rem;
  opacity: 0.75;
  line-height: 1.3;
  display: block;
  margin-top: 0.2rem;
}
.method { margin-bottom: 3rem; }
.section-head {
  text-align: center;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.section-head p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 32rem;
  margin: 0 auto;
}
.method-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .method-grid { grid-template-columns: repeat(3, 1fr); }
}
.method-step,
.content-card {
  background: #fff;
  border: 1px solid #dce8e2;
  border-radius: 16px;
  padding: 1.35rem 1.2rem;
  box-shadow: 0 6px 20px rgba(15, 61, 46, 0.05);
}
.method-step .num {
  width: 2rem; height: 2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.method-step h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.35rem; }
.method-step p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.flagship {
  background: linear-gradient(135deg, #eef6f1 0%, #fff 60%);
  border: 1px solid #dce8e2;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  margin-bottom: 2.5rem;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 720px) {
  .flagship { grid-template-columns: 1fr auto; }
}
.flagship h2 { font-size: 1.25rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.flagship p { font-size: 0.95rem; color: var(--muted); line-height: 1.55; }
.flagship-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  background: rgba(45, 138, 99, 0.12);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.65rem;
}
.other-courses { margin-bottom: 1rem; }
.other-grid { display: grid; gap: 0.85rem; }
@media (min-width: 640px) {
  .other-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .other-grid { grid-template-columns: repeat(4, 1fr); }
}
.other-card {
  background: #fff;
  border: 1px solid #e8eeeb;
  border-radius: 14px;
  padding: 1.1rem 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.other-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 8px 24px rgba(15, 61, 46, 0.08);
}
.other-card .icon { font-size: 1.5rem; margin-bottom: 0.45rem; }
.other-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.25rem; }
.other-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.45; }
.other-note { text-align: center; margin-top: 1.25rem; font-size: 0.88rem; color: var(--muted); }
.other-note a { font-weight: 700; }

/* ─── Layout variants ─── */
.site-main--narrow { max-width: 740px; }
.site-main--medium { max-width: 800px; }
.site-main--legal { max-width: 720px; }

/* ─── Squeeze (registro minimalista) ─── */
.squeeze-main {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}
.squeeze-access {
  font-size: 0.92rem;
  color: var(--green);
  font-weight: 600;
  margin: -0.75rem 0 1.25rem;
  line-height: 1.45;
}
.content-card--squeeze {
  padding: 1.35rem 1.25rem;
}
.content-card--squeeze .field-label:first-of-type {
  margin-top: 0;
}
.squeeze-footer__shell {
  background: linear-gradient(180deg, #0a2920 0%, #061912 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.squeeze-footer__inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 1rem 1.25rem 1.25rem;
  text-align: center;
}
.squeeze-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.5rem;
}
.squeeze-footer__links a {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}
.squeeze-footer__links a:hover { color: #b8e6d0; }
.squeeze-footer__copy {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}
.site-header--squeeze {
  justify-content: center;
  padding-bottom: 0.5rem;
}

.datetime {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #dce8e2;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(15, 61, 46, 0.06);
}
.datetime .sep { opacity: 0.35; }
.datetime small { opacity: 0.7; font-weight: 400; color: var(--muted); }
.content-card--form {
  padding: 1.85rem 1.6rem;
  margin-bottom: 1rem;
}
.content-card h2 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--green-dark);
}
ul.benefits {
  list-style: none;
  margin-bottom: 1.5rem;
}
ul.benefits li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.45;
}
ul.benefits li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.55rem; height: 1.55rem;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 0.15rem;
}
ul.benefits strong {
  color: var(--text);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}
.callout {
  background: #eef6f1;
  border-left: 4px solid var(--green-light);
  border-radius: 0 10px 10px 0;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.callout strong { color: var(--green-dark); }
.field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field-group {
  margin-bottom: 0.15rem;
}
.field-group .form-input {
  margin-bottom: 0.35rem;
}
.form-input {
  width: 100%;
  border: 2px solid #dce8e2;
  border-radius: 11px;
  padding: 0.9rem 1rem;
  font: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.form-input:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(45, 138, 99, 0.15);
}
.form-input--error {
  border-color: #c62828;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.12);
}
.field-error {
  color: #b71c1c;
  font-size: 0.78rem;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}
.field-error--consent {
  margin-top: -0.5rem;
  margin-bottom: 0.85rem;
}
.form-error {
  color: #b71c1c;
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.18);
}
.btn-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}
.btn-submit {
  width: 100%;
  border: none;
  border-radius: 13px;
  padding: 1.05rem 1.25rem;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(26, 92, 68, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(26, 92, 68, 0.45);
}
.btn-google {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid #dadce0;
  border-radius: 13px;
  padding: 0.95rem 1.15rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  color: #1f2937;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  margin-bottom: 0.35rem;
}
.btn-google:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: #c6c9cc;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}
.btn-google:disabled {
  opacity: 0.72;
  cursor: wait;
}
.btn-google__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.btn-google__icon img {
  display: block;
  width: 18px;
  height: 18px;
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 1.15rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(26, 92, 68, 0.15);
}
.form-divider span {
  white-space: nowrap;
}
.form-fine {
  text-align: center;
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 0.9rem;
  line-height: 1.4;
}
.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.74rem;
  color: var(--muted);
  margin: -0.25rem 0 1rem;
  line-height: 1.4;
}
.consent input { width: auto; margin-top: 0.2rem; }
.consent a { font-weight: 600; }

.form-error {
  margin: 0 0 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.35);
  border: 1px solid rgba(248, 113, 113, 0.45);
}

/* ─── Webinar ─── */
.glow-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  border-radius: 999px;
  margin-bottom: 1.5rem;
  max-width: 120px;
}
.webinar-hero { margin-bottom: 1.5rem; }
.webinar-hero h1 { margin-bottom: 0.5rem; }
.webinar-hero p { color: var(--muted); max-width: 36rem; }
.video-shell {
  background: #0a1f17;
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: 0 20px 50px rgba(15, 61, 46, 0.15);
  margin-bottom: 1.5rem;
}
.cta-panel {
  background: #fff;
  border: 1px solid #dce8e2;
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(15, 61, 46, 0.05);
}
.cta-panel h2 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 0.35rem; }
.cta-panel .course-name { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
#webinar-cta-hint { font-size: 0.85rem; color: var(--muted); margin-top: 0.75rem; }
#cta-countdown { font-size: 0.8rem; color: var(--green); font-weight: 700; margin-top: 0.35rem; }
.note-muted { font-size: 0.78rem; color: #6b8578; margin-top: 0.75rem; line-height: 1.45; }

/* ─── Thank you (minimalista) ─── */
.thankyou-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 8px 20px rgba(26, 92, 68, 0.2);
}
.thankyou-card-inner {
  text-align: center;
}
.thankyou-card-inner h1 {
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.thankyou-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.thankyou-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.thankyou-fine {
  font-size: 0.72rem;
  color: #6b8578;
  line-height: 1.45;
}
.thankyou-step {
  background: #eef6f1;
  border-left: 4px solid var(--green-light);
  border-radius: 0 10px 10px 0;
  padding: 0.85rem 1rem;
  margin-bottom: 1.15rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: left;
}
.thankyou-step strong { color: var(--green-dark); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  text-decoration: none;
  background: var(--wa);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 1rem;
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.4);
}
.btn-wa svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
.thankyou-divider {
  font-size: 0.72rem;
  color: #6b8578;
  margin: 0.25rem 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.thankyou-cta-secondary {
  display: flex;
  width: 100%;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.9rem 1.15rem;
}

/* ─── Legal & productos ─── */
.legal-content h1 {
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.legal-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #dce8e2;
}
.legal-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 1.75rem 0 0.5rem;
}
.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: #2a4036;
  line-height: 1.6;
}
.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
.legal-content a { font-weight: 500; }
.legal-inline-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dce8e2;
  font-size: 0.8rem;
  color: var(--muted);
}
.product-block {
  background: #fff;
  border: 1px solid #dce8e2;
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(15, 61, 46, 0.04);
}
.product-block h3 { color: var(--green-dark); margin-bottom: 0.5rem; font-size: 1.05rem; }
.product-block p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.price-tag {
  display: inline-block;
  background: #eef6f1;
  color: var(--green);
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  margin: 0.5rem 0;
  font-size: 0.95rem;
}
.pay-section {
  background: linear-gradient(135deg, #eef6f1 0%, #fff 100%);
  border: 1px solid #dce8e2;
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  margin-top: 1.5rem;
}
.pay-section h2 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.pay-section p { font-size: 0.95rem; color: var(--muted); line-height: 1.55; }
.product-actions { margin-top: 0.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
