/* ============================================================
   HOME-NEW.CSS — IA Opportunity System
   Estilo: marca editorial confiable, no landing page
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #FFFFFF;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAV === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E5E5E5;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.nav-logo {
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #525252;
  transition: color 150ms ease;
}

.nav-links a:hover { color: #111111; }

.btn-nav {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  background: #111111;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 150ms ease, transform 150ms ease;
  white-space: nowrap;
}

.btn-nav:hover {
  background: #000000;
  transform: translateY(-1px);
}

/* === HERO === */
.hero {
  padding: 80px 0 72px;
  background: #FFFFFF;
  background-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(22, 163, 74, 0.06) 0%, transparent 65%);
  text-align: center;
  border-bottom: 1px solid #F0F0F0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16A34A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

/* BLUR-IN — hero title */
@keyframes hero-arrive {
  from { opacity: 0; transform: translateY(20px); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #111111;
  margin-bottom: 0;
  max-width: 680px;
  animation: hero-arrive 950ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

.hero-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #525252;
  margin-bottom: 0;
  max-width: 580px;
  animation: fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) 300ms both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) 450ms both;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #111111;
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn-primary:hover {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-primary:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.btn-primary.btn-large {
  font-size: 1rem;
  padding: 14px 28px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #525252;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  transition: border-color 150ms ease, color 150ms ease;
}

.btn-secondary:hover {
  border-color: #A3A3A3;
  color: #111111;
}

/* === HERO STATS === */
.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 20px 32px;
  background: #FAFAFA;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  justify-content: center;
  animation: fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) 550ms both;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid #E5E5E5;
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: #737373;
  line-height: 1.4;
  text-align: center;
}

/* === TRUST BAR === */
.trust-bar {
  background: #F8F8F8;
  border-bottom: 1px solid #E5E5E5;
  padding: 14px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #404040;
}

.trust-divider {
  color: #D4D4D4;
  font-size: 1rem;
}

/* === SECTIONS COMMON === */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16A34A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #111111;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: #525252;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
}

/* === FEATURED ARTICLE === */
.section-featured {
  padding: 80px 0;
  border-bottom: 1px solid #F0F0F0;
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  background: #FAFAFA;
  border: 1px solid #E5E5E5;
  border-top: 3px solid #16A34A;
  border-radius: 12px;
  padding: 40px;
  margin-top: 32px;
  transition: box-shadow 200ms ease;
}

.featured-article:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.article-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #16A34A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.featured-article-title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 12px;
}

.featured-article-excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #525252;
  margin-bottom: 16px;
}

.featured-article-meta {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
  color: #A3A3A3;
  margin-bottom: 24px;
}

.btn-article {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111111;
  transition: gap 150ms ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-article:hover { gap: 8px; }

.featured-article-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visual-metric {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visual-metric-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
}

.visual-metric-label {
  font-size: 0.8125rem;
  color: #737373;
  line-height: 1.4;
}

/* === NOTICIAS === */
.section-noticias {
  padding: 80px 0;
  border-bottom: 1px solid #F0F0F0;
  background: #FFFFFF;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.noticia-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.noticia-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.noticia-card--highlight {
  background: #F0FDF4;
  border-color: #BBF7D0;
  grid-column: span 2;
}

.noticia-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #16A34A;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(22, 163, 74, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

.noticia-title {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: #111111;
}

.noticia-card--highlight .noticia-title {
  font-size: 1.0625rem;
}

.noticia-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #525252;
  flex: 1;
}

.noticia-date {
  font-size: 0.75rem;
  color: #A3A3A3;
  font-weight: 500;
}

.noticia-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.noticia-source {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16A34A;
  text-decoration: none;
  transition: opacity 150ms ease;
  white-space: nowrap;
}

.noticia-source:hover {
  opacity: 0.7;
}

.noticias-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #F0F0F0;
}

.noticias-context {
  font-size: 0.9375rem;
  color: #525252;
}

.noticias-context a {
  color: #16A34A;
  font-weight: 600;
  transition: opacity 150ms ease;
}

.noticias-context a:hover { opacity: 0.75; }

/* === RECURSOS === */
.section-recursos {
  padding: 80px 0;
  border-bottom: 1px solid #F0F0F0;
}

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

.recurso-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.recurso-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: #D4D4D4;
}

.recurso-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.recurso-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: #111111;
}

.recurso-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #737373;
  flex: 1;
}

.recurso-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #16A34A;
  transition: gap 150ms ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
}

.recurso-link:hover { gap: 8px; }

/* === SOBRE === */
.section-sobre {
  padding: 80px 0;
  background: #FAFAFA;
  border-bottom: 1px solid #F0F0F0;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.sobre-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: #111111;
  margin-bottom: 20px;
}

.sobre-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #525252;
  margin-bottom: 16px;
}

.sobre-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  font-size: 0.5rem;
  color: #16A34A;
  margin-top: 6px;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #737373;
}

/* === CTA FINAL === */
.section-cta {
  padding: 80px 0;
  background: #111111;
}

.cta-inner {
  max-width: 560px;
}

.cta-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.cta-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}

.section-cta .btn-primary {
  background: #FFFFFF;
  color: #111111;
}

.section-cta .btn-primary:hover {
  background: #F5F5F5;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid #E5E5E5;
  padding: 40px 0;
  background: #FAFAFA;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E5E5E5;
}

.footer-logo {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111111;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: #737373;
  transition: color 150ms ease;
}

.footer-nav a:hover { color: #111111; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #A3A3A3;
  line-height: 1.6;
  max-width: 680px;
}

.footer-copy {
  font-size: 0.75rem;
  color: #C4C4C4;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 140px; }
  .featured-article { grid-template-columns: 1fr; }
  .featured-article-visual { display: none; }
  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .noticias-grid { grid-template-columns: repeat(2, 1fr); }
  .noticia-card--highlight { grid-column: span 2; }
}

/* ============================================================
   MOBILE FIRST — diseñado para Facebook Ads (80%+ móvil)
   ============================================================ */
@media (max-width: 768px) {

  /* NAV */
  .nav-links { display: none; }
  .nav-inner { height: 56px; }

  /* HERO — más compacto, CTA prominente */
  .hero {
    padding: 40px 0 36px;
  }
  .hero-inner { gap: 20px; }
  .eyebrow { font-size: 0.6875rem; }
  .hero-title {
    font-size: clamp(1.625rem, 7.5vw, 2.25rem);
    line-height: 1.15;
  }
  .hero-text { font-size: 0.9375rem; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
  .hero-actions .btn-primary {
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .hero-actions .btn-secondary {
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
  }

  /* STATS — horizontal scroll en móvil */
  .hero-stats {
    padding: 14px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
  }
  .hero-stats::-webkit-scrollbar { display: none; }
  .stat-card { min-width: 100px; flex-shrink: 0; padding: 0 14px; }
  .stat-number { font-size: 1.25rem; }

  /* TRUST BAR */
  .trust-bar { padding: 10px 0; }
  .trust-inner { gap: 6px; justify-content: center; flex-wrap: wrap; }
  .trust-divider { display: none; }
  .trust-item { font-size: 0.75rem; }

  /* FEATURED ARTICLE */
  .section-featured { padding: 40px 0; }
  .featured-article {
    padding: 20px;
    gap: 20px;
    border-radius: 10px;
    margin-top: 20px;
  }
  .featured-article-visual { display: none; }
  .featured-article-title { font-size: 1.125rem; }
  .featured-article-excerpt { font-size: 0.875rem; }

  /* CTA dentro del featured — más visible */
  .btn-article {
    display: inline-flex;
    background: #111111;
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-top: 4px;
  }
  .btn-article:hover { gap: 4px; background: #000; }

  /* NOTICIAS */
  .section-noticias { padding: 40px 0; }
  .noticias-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
  .noticia-card--highlight { grid-column: span 1; }
  .noticia-card { padding: 18px; border-radius: 10px; }
  .noticia-card--highlight { background: #F0FDF4; border-color: #BBF7D0; }
  .noticia-title { font-size: 0.9375rem; }
  .noticia-text { font-size: 0.8125rem; }

  /* RECURSOS */
  .section-recursos { padding: 40px 0; }
  .recursos-grid { grid-template-columns: 1fr; gap: 10px; }
  .recurso-card { padding: 20px; border-radius: 10px; }
  /* Añadir borde izquierdo de color para diferenciación visual */
  .recurso-card:nth-child(1) { border-left: 3px solid #16A34A; }
  .recurso-card:nth-child(2) { border-left: 3px solid #16A34A; }
  .recurso-card:nth-child(3) { border-left: 3px solid #059669; }

  /* SOBRE */
  .section-sobre { padding: 40px 0; }
  .sobre-inner { grid-template-columns: 1fr; gap: 28px; }
  .sobre-title { font-size: 1.25rem; }
  .value-item { gap: 12px; }

  /* CTA FINAL */
  .section-cta { padding: 48px 0; }
  .cta-title { font-size: 1.5rem; }
  .section-cta .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
  }

  /* FOOTER */
  .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 32px 0 28px; }
  .hero-title { font-size: 1.5rem; }
  .section-title { font-size: 1.25rem; }
  .featured-article { padding: 16px; }
  .noticia-card { padding: 14px; }
  .recurso-card { padding: 16px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* === CONTADOR DE LECTORES (HERO HOME) === */
.hero-readers-bar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 20px;
  padding: 5px 12px;
  margin-top: 4px;
}

.hero-readers-dot {
  width: 7px;
  height: 7px;
  background: #16A34A;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-readers-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #16A34A;
  white-space: nowrap;
}

/* === EXIT INTENT POPUP === */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.exit-popup-box {
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 36px 32px 28px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.125rem;
  color: #9CA3AF;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.15s;
}
.exit-popup-close:hover { color: #111111; }

.exit-popup-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #16A34A;
}

.exit-popup-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.exit-popup-text {
  font-size: 0.9375rem;
  color: #525252;
  line-height: 1.55;
}

.exit-popup-cta {
  display: block;
  background: #111111;
  color: #FFFFFF;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.15s, transform 0.15s;
  margin-top: 4px;
}
.exit-popup-cta:hover {
  background: #000000;
  transform: translateY(-1px);
}

.exit-popup-guarantee {
  font-size: 0.8125rem;
  color: #9CA3AF;
  text-align: center;
}

@media (max-width: 480px) {
  .exit-popup-box { padding: 28px 20px; }
  .exit-popup-title { font-size: 1.125rem; }
}

/* === CTA FLOTANTE MÓVIL === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #111111;
  padding: 12px 16px 14px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  flex-direction: column;
  gap: 6px;
}

.mobile-cta-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #111111;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-cta-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 44px;
}

.mobile-cta-stat-num {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #4ADE80;
  line-height: 1;
}

.mobile-cta-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.mobile-cta-bar .mobile-cta-price {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex !important;
  }
}

/* === LEAD MAGNET FORM (exit popup) === */
.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.exit-popup-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E5E5E5;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-family: "Inter", sans-serif;
  color: #111111;
  outline: none;
  transition: border-color 0.15s;
}

.exit-popup-input:focus {
  border-color: #111111;
}

.exit-popup-input::placeholder {
  color: #9CA3AF;
}

.exit-popup-success {
  text-align: center;
  padding: 8px 0;
}

.exit-popup-success p {
  font-size: 1rem;
  font-weight: 700;
  color: #16A34A;
  margin-bottom: 12px;
}

.exit-popup-link {
  display: inline-block;
  color: #111111;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-recursos {
  background: #FFFFFF;
}

.section-recursos .section-subtitle {
  max-width: 560px;
}

.recursos-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  max-width: 920px;
  margin-top: 36px;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.045);
  overflow: hidden;
}

.recurso-card {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 0.9fr) minmax(280px, 1.15fr) auto;
  align-items: center;
  gap: 24px;
  min-height: auto;
  padding: 24px 28px;
  border: 0;
  border-bottom: 1px solid #E5E5E5;
  border-radius: 0;
  background: #FFFFFF;
  box-shadow: none;
}

.recurso-card:last-child {
  border-bottom: 0;
}

.recurso-card::before {
  content: "01";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid #DDE7ED;
  border-radius: 12px;
  background: #F8FAFC;
  color: #111111;
  font-size: 0.82rem;
  font-weight: 900;
}

.recurso-card:nth-child(2)::before {
  content: "02";
}

.recurso-card:nth-child(3)::before {
  content: "03";
}

.recurso-card:hover {
  transform: none;
  border-color: transparent;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  box-shadow: none;
}

.recurso-tag {
  color: #0F766E;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.recurso-title {
  max-width: none;
  color: #111111;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.recurso-text {
  max-width: 430px;
  color: #525252;
  font-size: 0.9rem;
  line-height: 1.62;
}

.recurso-link {
  justify-self: end;
  margin-top: 0;
  padding: 10px 16px;
  border: 1px solid #DDE7ED;
  border-radius: 999px;
  background: #FFFFFF;
  color: #111111;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.recurso-link:hover {
  gap: 8px;
  border-color: #111111;
  background: #111111;
  color: #FFFFFF;
}

@media (max-width: 980px) {
  .recursos-grid {
    max-width: none;
  }

  .recurso-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 22px;
  }

  .recurso-tag,
  .recurso-title,
  .recurso-text,
  .recurso-link {
    grid-column: 2;
  }

  .recurso-card::before {
    grid-row: 1 / 5;
  }

  .recurso-link {
    justify-self: start;
  }
}

.recursos-path-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  align-items: center;
  gap: 56px;
}

.recursos-path-copy {
  max-width: 520px;
}

.recursos-path-copy .section-title {
  max-width: 520px;
}

.recursos-path-copy .section-subtitle {
  max-width: 480px;
  margin-bottom: 24px;
}

.recursos-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111111;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.16);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.recursos-main-cta:hover {
  transform: translateY(-2px);
  background: #000000;
  box-shadow: 0 20px 46px rgba(17, 17, 17, 0.22);
}

.recursos-path-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #E5E5E5;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.06);
}

.recursos-path-card {
  padding: 24px;
  border: 1px solid #E5E5E5;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

.recursos-path-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #0F766E;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recursos-path-card h3 {
  max-width: 520px;
  margin: 0 0 10px;
  color: #111111;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.recursos-path-card p {
  max-width: 560px;
  margin: 0;
  color: #525252;
  font-size: 0.94rem;
  line-height: 1.65;
}

.recursos-path-steps {
  display: grid;
  gap: 0;
  border: 1px solid #E5E5E5;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
}

.recursos-path-step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #E5E5E5;
}

.recursos-path-step:last-child {
  border-bottom: 0;
}

.recursos-path-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #DDE7ED;
  border-radius: 10px;
  background: #F8FAFC;
  color: #111111;
  font-size: 0.76rem;
  font-weight: 900;
}

.recursos-path-step strong {
  display: block;
  margin-bottom: 3px;
  color: #111111;
  font-size: 0.94rem;
  line-height: 1.3;
}

.recursos-path-step p {
  margin: 0;
  color: #525252;
  font-size: 0.84rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .recursos-path-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .recursos-path-copy,
  .recursos-path-copy .section-title,
  .recursos-path-copy .section-subtitle {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .recursos-path-panel {
    padding: 12px;
    border-radius: 14px;
  }

  .recursos-path-card {
    padding: 18px;
  }

  .recursos-path-step {
    padding: 14px;
  }
}
/* Home visual refresh. Loaded after home-new.css. */
body {
  background: #FBFCF8;
  color: #111111;
}

.site-nav {
  background: rgba(251, 252, 248, 0.95);
  border-bottom-color: #E2E8F0;
}

.btn-nav,
.btn-primary {
  background: #111111;
  border-radius: 8px;
}

.btn-nav:hover,
.btn-primary:hover {
  background: #000000;
}

.hero {
  padding: 88px 0 76px;
  background: #F7F9FC;
  background-image: none;
  text-align: left;
  border-bottom-color: #E2E8F0;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 460px);
  align-items: center;
  gap: 64px;
  max-width: 1120px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.eyebrow,
.section-eyebrow {
  color: #0F766E;
  letter-spacing: 0.06em;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4.05rem);
  line-height: 1;
  letter-spacing: 0;
  color: #111111;
  max-width: 720px;
}

.hero-text {
  color: #525252;
  max-width: 620px;
}

.hero-actions {
  justify-content: flex-start;
}

.btn-secondary {
  background: #FFFFFF;
  border-color: #CBD5E1;
  color: #111111;
  border-radius: 8px;
}

.btn-secondary:hover {
  border-color: #0F766E;
  color: #111111;
}

.hero-stats {
  max-width: 660px;
  background: #FFFFFF;
  border-color: #DDE7ED;
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.05);
  justify-content: flex-start;
}

.stat-card {
  align-items: flex-start;
  border-right-color: #DDE7ED;
}

.stat-number {
  color: #0F766E;
  letter-spacing: 0;
}

.stat-label {
  color: #737373;
  text-align: left;
}

.home-hero-visual {
  animation: fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) 520ms both;
}

.home-visual-shell {
  background: #111111;
  border: 1px solid #262626;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.22);
}

.home-visual-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 4px 12px;
}

.home-visual-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.home-visual-topbar strong {
  margin-left: auto;
  color: #A7F3D0;
  background: rgba(20, 184, 166, 0.14);
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.6875rem;
}

.home-visual-body {
  background: #FBFCF8;
  color: #111111;
  border-radius: 12px;
  padding: 24px;
}

.home-visual-eyebrow {
  font-size: 0.6875rem;
  font-weight: 900;
  color: #0F766E;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.home-visual-body h2 {
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.home-visual-flow {
  display: grid;
  gap: 10px;
}

.home-visual-node {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  align-items: center;
  border: 1px solid #DDE7ED;
  border-radius: 8px;
  padding: 12px;
  background: #FFFFFF;
}

.home-visual-node--active {
  background: #ECFDF5;
  border-color: #99F6E4;
}

.home-visual-node span {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #111111;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 900;
}

.home-visual-node:nth-child(2) span {
  background: #0F766E;
}

.home-visual-node:nth-child(3) span {
  background: #111111;
}

.home-visual-node strong {
  font-size: 0.9rem;
}

.home-visual-node small {
  color: #737373;
  font-size: 0.75rem;
  line-height: 1.4;
}

.home-visual-result {
  margin-top: 14px;
  background: #ECFDF5;
  border: 1px solid #BFE7DD;
  border-radius: 8px;
  padding: 14px;
}

.home-visual-result span {
  display: block;
  color: #0F766E;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.home-visual-result strong {
  display: block;
  font-size: 0.875rem;
  line-height: 1.35;
}

.trust-bar,
.section-sobre {
  background: #FFFFFF;
  border-bottom-color: #E2E8F0;
}

.section-featured,
.section-noticias,
.section-recursos {
  border-bottom-color: #E2E8F0;
}

.featured-article {
  background: #FFFFFF;
  border-color: #DDE7ED;
  border-top-color: #0F766E;
  border-radius: 10px;
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.04);
}

.visual-metric,
.noticia-card,
.recurso-card {
  border-color: #DDE7ED;
  border-radius: 8px;
}

.noticia-card--highlight {
  background: #ECFDF5;
  border-color: #99F6E4;
}

.noticia-tag,
.noticia-source,
.recurso-link,
.value-icon {
  color: #0F766E;
}

.section-title,
.featured-article-title,
.noticia-title,
.recurso-title,
.sobre-title,
.cta-title {
  letter-spacing: 0;
  color: #111111;
}

.section-subtitle,
.featured-article-excerpt,
.noticias-context,
.recurso-text,
.sobre-text,
.value-item p {
  color: #525252;
}

.section-cta {
  background: #111111;
}

.section-cta .cta-title {
  color: #FFFFFF;
}

.section-cta .btn-primary {
  color: #111111;
}

.site-footer {
  background: #FBFCF8;
  border-top-color: #E2E8F0;
}

.mobile-cta-bar {
  background: #111111;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  box-shadow: 0 24px 54px rgba(17, 17, 17, 0.28);
  padding: 12px 14px 13px;
}

.mobile-cta-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 2px;
}

.mobile-cta-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mobile-cta-price-tag {
  font-size: 0.75rem;
  font-weight: 900;
  color: #A7F3D0;
}

.mobile-cta-btn {
  color: #111111;
  border-radius: 8px;
}

.mobile-cta-stat {
  min-width: 52px;
  border: 1px solid rgba(167, 243, 208, 0.22);
  border-radius: 8px;
  padding: 7px 8px;
  background: rgba(20, 184, 166, 0.12);
}

.mobile-cta-stat-num {
  color: #A7F3D0;
}

.mobile-cta-stat-label,
.mobile-cta-bar .mobile-cta-price {
  color: rgba(255, 255, 255, 0.56);
}

.mobile-cta-home.is-hidden {
  display: none !important;
}

.mobile-cta-home.is-visible {
  display: flex !important;
}

.exit-popup-box {
  border-radius: 12px;
  border: 1px solid #DDE7ED;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    width: min(100%, 520px);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 0 40px;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    line-height: 1.08;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-stats {
    padding: 14px 12px;
  }

  .stat-card {
    align-items: center;
  }

  .stat-label {
    text-align: center;
  }

  .home-visual-body {
    padding: 18px;
  }

  .mobile-cta-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* Surgical polish pass */
.section-featured,
.section-noticias,
.section-recursos,
.section-sobre {
  padding-top: 88px;
  padding-bottom: 88px;
}

.featured-article {
  padding: 42px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.055);
}

.visual-metric,
.noticia-card,
.recurso-card {
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.035);
}

.noticia-card:hover,
.recurso-card:hover {
  border-color: #CFE0E7;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.075);
}

.noticia-card--highlight {
  box-shadow: 0 18px 42px rgba(15, 118, 110, 0.09);
}

.section-cta {
  padding: 96px 0;
}

.section-cta .cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section-cta .cta-text {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.72);
}

.section-cta .btn-primary {
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.12);
}

.exit-popup-box {
  border-color: #DDE7ED;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.22);
}

.exit-popup-cta {
  background: #111111;
  border-radius: 8px;
}

.exit-popup-cta:hover {
  background: #111111;
}

.exit-popup-input:focus {
  border-color: #0F766E;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.mobile-cta-bar {
  bottom: calc(12px + env(safe-area-inset-bottom));
  transition: opacity 180ms ease, transform 180ms ease;
}

@media (min-width: 769px) {
  .mobile-cta-bar {
    bottom: 18px;
  }
}

@media (max-width: 768px) {
  .section-featured,
  .section-noticias,
  .section-recursos,
  .section-sobre {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .featured-article {
    padding: 22px;
  }

  .section-cta {
    padding: 60px 0 96px;
  }

  .section-cta .cta-inner {
    text-align: left;
  }
}

/* Mobile consolidation pass */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-inner {
    height: 58px;
    gap: 12px;
  }

  .nav-logo svg {
    width: 168px;
    height: auto;
  }

  .btn-nav {
    padding: 9px 12px;
    font-size: 0.8125rem;
    border-radius: 8px;
  }

  .hero {
    padding: 36px 0 34px;
  }

  .hero-copy {
    gap: 14px;
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero-title {
    font-size: clamp(2rem, 8.4vw, 2.35rem);
    line-height: 1.06;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    min-height: 52px;
    padding: 13px 16px;
  }

  .hero-stats {
    padding: 13px 8px;
  }

  .stat-card {
    min-width: 92px;
    padding: 0 8px;
  }

  .stat-number {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .home-hero-visual {
    width: 100%;
  }

  .home-visual-shell {
    padding: 8px;
    border-radius: 14px;
  }

  .home-visual-body {
    padding: 16px;
  }

  .home-visual-body h2 {
    font-size: 1.18rem;
    line-height: 1.18;
  }

  .home-visual-node {
    grid-template-columns: 32px 1fr;
    padding: 10px;
  }

  .home-visual-node span {
    width: 32px;
    height: 32px;
  }

  .section-featured,
  .section-noticias,
  .section-recursos,
  .section-sobre {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .section-title {
    font-size: 1.45rem;
    line-height: 1.14;
  }

  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .featured-article {
    padding: 20px;
    gap: 14px;
  }

  .featured-article-title {
    font-size: 1.1rem;
    line-height: 1.25;
  }

  .section-cta {
    padding: 52px 0 98px;
  }

  .section-cta .cta-inner {
    text-align: center;
  }

  .cta-title {
    font-size: 1.55rem;
    line-height: 1.14;
  }

  .mobile-cta-bar {
    left: 12px;
    right: 12px;
    padding: 11px 12px 12px;
  }

  .mobile-cta-btn {
    min-height: 48px;
    padding: 12px 10px;
    font-size: 0.92rem;
  }
}

@media (max-width: 360px) {
  .nav-logo svg {
    width: 148px;
  }

  .btn-nav {
    font-size: 0.75rem;
    padding: 8px 10px;
  }

  .hero-title {
    font-size: 1.9rem;
  }
}

/* Mobile-first architecture and black/green/white palette pass */
body {
  background: #FFFFFF;
  color: #111111;
}

.site-nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: #E5E5E5;
}

.hero,
.trust-bar,
.section-featured,
.section-noticias,
.section-recursos,
.section-sobre {
  background: #FFFFFF;
  border-bottom-color: #E5E5E5;
}

.eyebrow,
.section-eyebrow,
.stat-number,
.noticia-tag,
.noticia-source,
.recurso-link,
.value-icon,
.home-visual-eyebrow,
.home-visual-result span {
  color: #16A34A;
}

.hero-title,
.section-title,
.featured-article-title,
.noticia-title,
.recurso-title,
.sobre-title,
.cta-title,
.home-visual-body h2,
.home-visual-node strong,
.home-visual-result strong,
.btn-secondary,
.home-visual-body,
.home-visual-flow,
.home-visual-node {
  color: #111111;
}

.hero-text,
.section-subtitle,
.featured-article-excerpt,
.noticias-context,
.recurso-text,
.sobre-text,
.value-item p,
.stat-label,
.home-visual-node small {
  color: #525252;
}

.btn-nav,
.btn-primary,
.section-cta,
.mobile-cta-bar,
.home-visual-shell,
.home-visual-node span {
  background: #111111;
  border-color: #111111;
}

.btn-nav:hover,
.btn-primary:hover {
  background: #000000;
}

.btn-secondary,
.hero-stats,
.featured-article,
.visual-metric,
.noticia-card,
.recurso-card,
.home-visual-body,
.home-visual-node {
  background: #FFFFFF;
  border-color: #E5E5E5;
}

.btn-secondary:hover {
  border-color: #16A34A;
}

.hero-stats,
.featured-article,
.visual-metric,
.noticia-card,
.recurso-card {
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.055);
}

.home-visual-shell {
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.22);
}

.home-visual-topbar strong {
  color: #86EFAC;
  background: rgba(22, 163, 74, 0.16);
  border-color: rgba(134, 239, 172, 0.28);
}

.home-visual-node--active,
.noticia-card--highlight,
.home-visual-result {
  background: #F0FDF4;
  border-color: #BBF7D0;
}

.home-visual-flow,
.stat-card {
  border-color: #E5E5E5;
}

.home-visual-node:nth-child(2) span,
.home-visual-node:nth-child(3) span {
  background: #111111;
}

.section-cta .cta-title {
  color: #FFFFFF;
}

.section-cta .cta-text {
  color: rgba(255, 255, 255, 0.72);
}

.section-cta .btn-primary,
.mobile-cta-btn {
  background: #FFFFFF;
  color: #111111;
}

.mobile-cta-price-tag,
.mobile-cta-stat-num {
  color: #86EFAC;
}

.mobile-cta-stat {
  background: rgba(22, 163, 74, 0.14);
  border-color: rgba(134, 239, 172, 0.24);
}

@media (max-width: 768px) {
  .hero {
    padding: 30px 0 32px;
  }

  .hero-copy {
    align-items: flex-start;
    text-align: left;
  }

  .hero-title {
    font-size: clamp(1.95rem, 8.2vw, 2.35rem);
    line-height: 1.05;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    overflow: visible;
  }

  .stat-card {
    min-width: 0;
    padding: 0 8px;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .home-hero-visual {
    margin-top: 2px;
  }

  .home-visual-shell {
    border-radius: 10px;
  }

  .section-featured,
  .section-noticias,
  .section-recursos,
  .section-sobre {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-cta .cta-inner {
    text-align: left;
  }
}

/* Harmonized accents: green for guidance, neutrals for caution */
.btn-secondary {
  background: #F0FDF4;
  border-color: #BFE7DD;
  color: #0F766E;
}

.btn-secondary:hover {
  background: #ECFDF5;
  border-color: #0F766E;
  color: #111111;
}

.stat-card:nth-child(2) .stat-number,
.noticia-tag,
.noticia-source {
  color: #0F766E;
}

.home-visual-node:nth-child(2) {
  background: #F0FDF4;
  border-color: #BFE7DD;
}

.home-visual-node:nth-child(2) span {
  background: #0F766E;
}

.home-visual-node:nth-child(2) strong {
  color: #111111;
}

.home-visual-node:nth-child(2) small {
  color: #525252;
}

.visual-metric:nth-child(2),
.recurso-card:nth-child(2) {
  border-top-color: #0F766E;
}

.trust-item:last-child {
  color: #525252;
}

/* Buyer-persona consolidation: green, white and black as the core system */
.section-objection {
  background: #111111;
  border-bottom: 1px solid #111111;
  color: #FFFFFF;
  padding: 34px 0;
}

.objection-inner {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.objection-kicker {
  color: #86EFAC;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.objection-copy h2 {
  color: #FFFFFF;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 8px;
}

.objection-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  max-width: 760px;
}

.objection-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #111111;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.recursos-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid #E5E5E5;
}

.recurso-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid #E5E5E5;
  border-radius: 0;
  box-shadow: none;
}

.recurso-card:hover {
  transform: none;
  box-shadow: none;
  border-color: #E5E5E5;
}

.recurso-tag {
  color: #16A34A;
}

.recurso-text {
  margin: 0;
}

.recurso-link {
  color: #111111;
  border: 1px solid #D4D4D4;
  border-radius: 999px;
  padding: 8px 14px;
}

.noticias-grid {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0 28px;
  border-top: 1px solid #E5E5E5;
}

.noticia-card,
.noticia-card--highlight {
  grid-column: auto;
  background: #FFFFFF;
  border: 0;
  border-bottom: 1px solid #E5E5E5;
  border-radius: 0;
  box-shadow: none;
  padding: 22px 0;
}

.noticia-card:hover {
  transform: none;
  box-shadow: none;
}

.noticia-card--highlight .noticia-title {
  font-size: 1.1rem;
}

.home-visual-node:nth-child(3) span {
  background: #111111;
}

@media (max-width: 768px) {
  .objection-inner,
  .recurso-card,
  .noticias-grid {
    grid-template-columns: 1fr;
  }

  .section-objection {
    padding: 28px 0;
  }

  .objection-inner {
    gap: 16px;
  }

  .objection-link {
    width: 100%;
  }

  .recurso-card {
    gap: 8px;
    align-items: start;
  }

  .recurso-link {
    justify-self: start;
    margin-top: 4px;
  }
}

.featured-article {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  align-items: stretch;
}

.featured-article-content {
  display: flex;
  flex-direction: column;
}

.featured-article-points {
  display: grid;
  gap: 9px;
  margin: 4px 0 20px;
  padding: 0;
  list-style: none;
}

.featured-article-points li {
  position: relative;
  padding-left: 22px;
  color: #404040;
  font-size: 0.92rem;
  line-height: 1.55;
}

.featured-article-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16A34A;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.featured-article .btn-article {
  margin-top: auto;
  width: fit-content;
}

.featured-article-visual {
  justify-content: stretch;
}

.visual-metric {
  min-height: 104px;
  justify-content: center;
  border-left: 3px solid #111111;
}

.visual-metric:nth-child(2) {
  border-left-color: #16A34A;
  background: #F0FDF4;
}

.noticias-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.noticia-card,
.noticia-card--highlight {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
}

.noticia-card--highlight .noticia-title,
.noticia-title {
  font-size: 0.98rem;
}

.noticia-source {
  color: #737373;
  font-weight: 500;
  white-space: normal;
}

.noticias-context {
  max-width: 760px;
}

.recursos-path-panel {
  gap: 16px;
}

.recursos-path-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.recursos-path-step {
  border-bottom: 1px solid #E5E5E5;
}

.recursos-path-step:nth-child(2n + 1) {
  border-right: 1px solid #E5E5E5;
}

.recursos-path-step:nth-child(3),
.recursos-path-step:nth-child(4) {
  border-bottom: 0;
}

.recursos-path-step:nth-child(2) > span,
.recursos-path-step:nth-child(4) > span {
  background: #0F766E;
}

@media (max-width: 768px) {
  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-article .btn-article {
    width: 100%;
  }

  .noticia-card,
  .noticia-card--highlight {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .recursos-path-steps {
    grid-template-columns: 1fr;
  }

  .recursos-path-step,
  .recursos-path-step:nth-child(2n + 1),
  .recursos-path-step:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid #E5E5E5;
  }

  .recursos-path-step:nth-child(4) {
    border-bottom: 0;
  }
}

.section-fit {
  padding: 88px 0;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
}

.fit-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: 56px;
  align-items: start;
}

.fit-header .section-title {
  max-width: 520px;
}

.fit-header .section-subtitle {
  max-width: 500px;
  margin-bottom: 24px;
}

.fit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fit-primary,
.fit-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.fit-primary {
  background: #111111;
  color: #FFFFFF;
  border: 1px solid #111111;
}

.fit-secondary {
  background: #F0FDF4;
  color: #0F766E;
  border: 1px solid #BFE7DD;
}

.fit-primary:hover {
  background: #000000;
}

.fit-secondary:hover {
  color: #111111;
  border-color: #0F766E;
}

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

.fit-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid #E5E5E5;
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.045);
}

.fit-card--yes {
  border-top: 3px solid #16A34A;
  background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 42%);
}

.fit-card--no {
  border-top: 3px solid #111111;
}

.fit-card-label {
  display: inline-flex;
  color: #111111;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.fit-card--yes .fit-card-label {
  color: #0F766E;
}

.fit-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 22px;
  color: #404040;
  font-size: 0.92rem;
  line-height: 1.55;
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #111111;
}

.fit-card--yes li::before {
  background: #16A34A;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

@media (max-width: 980px) {
  .fit-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fit-header .section-title,
  .fit-header .section-subtitle {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .section-fit {
    padding: 44px 0;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-card {
    padding: 22px;
  }

  .fit-actions {
    flex-direction: column;
  }

  .fit-primary,
  .fit-secondary {
    width: 100%;
  }
}

.hero-proof {
  margin-top: -10px;
  color: #737373;
  font-size: 0.86rem;
  line-height: 1.5;
  animation: fade-up 700ms cubic-bezier(0.22, 1, 0.36, 1) 520ms both;
}

@media (max-width: 768px) {
  .hero-proof {
    margin-top: -6px;
    font-size: 0.82rem;
  }
}
