/* ===== Tokens ===== */
:root {
  --navy: #1A2238;
  --navy-soft: #232c47;
  --terra: #C7522A;
  --terra-dark: #a8431f;
  --cream: #FAF7F2;
  --yellow: #FFD166;
  --ink: #1A2238;
  --muted: #4A5468;
  --line: #E5DDD0;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(26, 34, 56, .08);
  --maxw: 1140px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--terra); color: var(--cream);
  font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: var(--radius-sm);
  border: 2px solid var(--terra); cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--terra-dark); border-color: var(--terra-dark); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { background: var(--white); border-color: var(--navy); }
.btn-block { width: 100%; }
.btn-ico { font-size: 1.05em; line-height: 1; }
.btn-call { background: #1f9d55; border-color: #1f9d55; }
.btn-call:hover { background: #18834594; background: #197a43; border-color: #197a43; }
.btn-wa { background: #25D366; border-color: #25D366; color: #0a3a1e; }
.btn-wa:hover { background: #1fbb59; border-color: #1fbb59; }

.hero-reassure { margin-top: 16px; font-size: 14px; color: var(--muted); font-weight: 600; }

/* Barra de confianza */
.trustbar { background: var(--navy); color: var(--cream); }
.trustbar-inner { display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center; padding: 14px 24px; }
.trust-item { font-size: 13.5px; font-weight: 600; color: rgba(250,247,242,.9); }

/* Franja CTA final */
.cta-band { background: linear-gradient(120deg, var(--terra), #e0703f); color: var(--cream); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 44px 24px; }
.cta-band h2 { font-size: clamp(24px, 3.5vw, 34px); color: var(--cream); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.92); font-weight: 500; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-call { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.cta-band .btn-call:hover { background: #fff; border-color: #fff; }

/* Botones flotantes y animación de pulso */
.fab { position: fixed; right: 24px; bottom: 24px; display: flex; flex-direction: column; gap: 14px; z-index: 60; }
.fab-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 24px rgba(26, 34, 56, 0.20);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  position: relative;
}
.fab-btn:hover { transform: scale(1.10); box-shadow: 0 12px 30px rgba(26, 34, 56, 0.30); }
.fab-wa { background: #25D366; animation: fab-pulse-wa 2.5s infinite; }
.fab-call { background: #1f9d55; animation: fab-pulse-call 2.5s infinite 1.25s; }

@keyframes fab-pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fab-pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(31, 157, 85, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(31, 157, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 157, 85, 0); }
}

.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: 12px;
  font-weight: 700; color: var(--terra); margin-bottom: 12px;
}
.eyebrow-light { color: var(--yellow); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 34, 56, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-name { font-size: 20px; letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.btn { color: var(--cream); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* Selector de idioma */
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-btn {
  background: transparent; border: 0; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 13px; color: var(--muted);
  padding: 7px 11px; transition: background .15s, color .15s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active { background: var(--navy); color: var(--cream); }

/* ===== Hero ===== */
.hero {
  padding: 72px 0 88px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(255, 209, 102, 0.12), transparent 45%),
              radial-gradient(circle at 10% 80%, rgba(199, 82, 42, 0.06), transparent 45%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.65;
  pointer-events: none;
}
.hero::before {
  top: -10%;
  right: 5%;
  width: 320px;
  height: 320px;
  background: rgba(255, 209, 102, 0.25);
}
.hero::after {
  bottom: -15%;
  left: -5%;
  width: 280px;
  height: 280px;
  background: rgba(199, 82, 42, 0.12);
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 20px; }
.lead { font-size: 18px; color: var(--muted); max-width: 52ch; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { display: flex; justify-content: center; }
.hero-logo-frame {
  background: var(--navy); border-radius: 32px; padding: 36px;
  box-shadow: var(--shadow); position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-logo-frame:hover {
  transform: translateY(-4px) rotate(1deg);
}
.hero-logo-frame::after {
  content: ""; position: absolute; inset: -14px; border-radius: 40px;
  border: 2px dashed rgba(255, 209, 102, .35); z-index: -1;
}

.hero-badges {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-badges li {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px;
  font-size: 14px; font-weight: 700; color: var(--navy);
  box-shadow: 0 2px 8px rgba(26,34,56,.05);
}

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section-alt { background: var(--white); }
.section h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 60ch; margin: 0 auto 48px; }

/* ===== Cards / Servicios ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease;
}
.section-alt .card { background: var(--cream); }
.card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 20px 40px rgba(26, 34, 56, 0.08); 
  border-color: rgba(199, 82, 42, 0.35); 
}
.card:hover .card-icon {
  transform: scale(1.12) rotate(3deg);
  background-color: var(--white);
  border-color: rgba(199, 82, 42, 0.25);
  box-shadow: 0 8px 20px rgba(199, 82, 42, 0.12);
}
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  background: rgba(26, 34, 56, 0.05);
  border: 1px solid rgba(26, 34, 56, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; line-height: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pasos del proceso de ayudas */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.step {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px; position: relative;
}
.step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--terra); color: var(--cream);
  font-weight: 800; font-size: 18px; margin-bottom: 14px;
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }
.ay-note { color: var(--muted); font-size: 13px; margin-top: 28px; max-width: 70ch; margin-left: auto; margin-right: auto; }

/* Tarjetas destacadas (renovables) */
.card-feature { 
  background: linear-gradient(135deg, var(--navy), var(--navy-soft)); 
  border: 1px solid rgba(255, 209, 102, 0.15); 
  box-shadow: 0 10px 30px rgba(26, 34, 56, 0.15);
}
.card-feature:hover {
  border-color: rgba(255, 209, 102, 0.35);
}
.card-feature h3 { color: var(--cream); }
.card-feature p { color: rgba(250,247,242,.78); }
.card-feature .card-icon { 
  background: rgba(255, 255, 255, 0.07); 
  border-color: rgba(255, 255, 255, 0.12);
}
.card-feature:hover .card-icon { 
  background-color: var(--yellow); 
  border-color: var(--yellow); 
  box-shadow: 0 8px 20px rgba(255, 209, 102, 0.25);
}

/* ===== Two-col ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col p { color: var(--muted); margin-bottom: 16px; }
.checklist { list-style: none; padding: 0; margin-top: 22px; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 12px; font-weight: 600; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--terra);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF7F2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  background: var(--navy); color: var(--cream); border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
}
.stat-num { display: block; font-size: 34px; font-weight: 800; color: var(--yellow); letter-spacing: -.03em; }
.stat-lbl { display: block; font-size: 14px; color: rgba(250, 247, 242, .75); margin-top: 6px; }

/* ===== Proyectos ===== */
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.project:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 20px 40px rgba(26, 34, 56, 0.08); 
}
.project-img-container { 
  height: 190px; 
  overflow: hidden; 
  position: relative; 
}
.project-img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.project:hover .project-img {
  transform: scale(1.06);
}
.project-img-container::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26, 34, 56, 0.4));
  pointer-events: none;
}

/* ===== FAQ (Preguntas Frecuentes) ===== */
.section-faq { background: var(--cream); }
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item[open] {
  border-color: rgba(199, 82, 42, 0.35);
  box-shadow: 0 10px 25px rgba(26, 34, 56, 0.04);
}
.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Quita el triángulo por defecto */
}
.faq-question::-webkit-details-marker { display: none; } /* Quita el triángulo en Safari */

.faq-arrow {
  font-size: 10px;
  color: var(--terra);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 20px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  border-top: 1px solid rgba(26, 34, 56, 0.05);
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.project-body { padding: 22px 22px 26px; }
.project-body h3 { font-size: 20px; margin-bottom: 4px; }
.project-meta { font-size: 13px; color: var(--terra); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.project-body p:last-child { color: var(--muted); font-size: 15px; }

/* ===== Contacto (dark) ===== */
.section-dark { background: var(--navy); }
.on-dark { color: var(--cream); }
.on-dark-muted { color: rgba(250, 247, 242, .7); }
.contact-list { list-style: none; padding: 0; margin-top: 28px; }
.contact-list li { display: flex; flex-direction: column; margin-bottom: 18px; }
.contact-list strong { color: var(--yellow); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.contact-list a, .contact-list span { color: var(--cream); font-size: 18px; font-weight: 600; }
.contact-list a:hover { color: var(--yellow); }

.contact-form {
  background: var(--cream); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.opt { font-weight: 500; color: var(--muted); }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; font: inherit;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(199, 82, 42, .15);
}
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 1.2em; }
.form-note.ok { color: #1f7a4d; }
.form-note.err { color: var(--terra-dark); }

/* ===== Footer ===== */
.site-footer { background: var(--navy); padding: 32px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--cream); font-weight: 700; }
.footer-phones { display: flex; gap: 10px; align-items: center; }
.footer-phones a { color: var(--yellow); font-weight: 700; font-size: 15px; }
.footer-phones a:hover { text-decoration: underline; }
.footer-phones span { color: rgba(250,247,242,.4); }
.footer-copy { color: rgba(250, 247, 242, .55); font-size: 14px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text .lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-art { order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .projects { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a { padding: 16px 24px; border-top: 1px solid var(--line); }
  .nav-links a.btn { margin: 14px 24px; border-radius: var(--radius-sm); }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .lang-switch { margin: 6px 24px 16px; align-self: flex-start; }
}

/* ===== Testimonios (Opiniones) ===== */
.card-test {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(26, 34, 56, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.test-stars {
  font-size: 15px;
  margin-bottom: 14px;
}
.test-body-text {
  font-size: 14.5px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.test-user {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(26, 34, 56, 0.05);
  padding-top: 16px;
  margin-top: auto;
}
.test-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-soft);
  color: var(--cream);
  font-weight: 800;
  font-size: 13.5px;
  border: 2px solid var(--yellow);
}
.test-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}
.test-loc {
  font-size: 12px;
  color: var(--terra);
  font-weight: 700;
}

/* ===== LOGOTIPO CORPORATIVO HTML PREMIUM (CACHÉ E INTERFAZ LIMPIA) ===== */
.logo-jsl {
  display: inline-block;
  vertical-align: middle;
  aspect-ratio: 1 / 1;
  position: relative;
  container-type: inline-size;
}

.logo-body {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 40%, #232E4A 0%, #0E1424 100%);
  border: 0.8cqw solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4cqw 12cqw rgba(14, 20, 36, 0.35);
  border-radius: 18%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.logo-text {
  font-family: 'Manrope', 'Arial Black', sans-serif;
  font-weight: 900;
  color: #FAF7F2;
  font-size: 40cqw;
  line-height: 1;
  letter-spacing: -3.5cqw;
  text-shadow: 0 1.5cqw 4cqw rgba(11, 14, 27, 0.6);
  margin-top: 14cqw;
  user-select: none;
}

.logo-band {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25cqw;
  background: linear-gradient(135deg, #C7522A 0%, #E67E22 100%);
  clip-path: ellipse(80% 100% at 50% 100%);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 6cqw 1.5cqw 6cqw;
  box-sizing: border-box;
}

.logo-emoji {
  font-size: 13cqw;
  line-height: 1;
  user-select: none;
  filter: drop-shadow(0 0.8cqw 1.5cqw rgba(11, 14, 27, 0.3));
}

/* ===== Requisitos de Ayudas (CRO) ===== */
.ay-requirements {
  margin-top: 56px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.ay-requirements h3 {
  font-size: 22px;
  margin-bottom: 28px;
  color: var(--navy);
}
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.req-box {
  background: var(--white);
  border: 1px solid rgba(26, 34, 56, 0.05);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  box-shadow: 0 4px 12px rgba(26, 34, 56, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.req-box:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 82, 42, 0.2);
  box-shadow: 0 8px 20px rgba(26, 34, 56, 0.05);
}
.req-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.req-box h4 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 800;
}
.req-list {
  list-style: none;
  padding: 0;
}
.req-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.4;
}
.req-list li::before {
  content: "📋";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}
@media (max-width: 760px) {
  .req-grid { grid-template-columns: 1fr; gap: 20px; }
  .ay-requirements { padding: 24px; }
}

/* ===== Tarjeta CTA de Ayudas (CRO) ===== */
.ay-cta-card {
  margin-top: 40px;
  background: radial-gradient(circle at 50% 50%, #232E4A 0%, #0F172A 100%);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 44px 32px;
  color: var(--cream);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
}
.ay-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.ay-cta-eyebrow {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  line-height: 1;
}
.ay-cta-title {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--white) !important;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}
.ay-cta-desc {
  font-size: 16px;
  color: rgba(250, 247, 242, 0.85);
  max-width: 65ch;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.ay-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16.5px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.ay-cta-card .btn-call {
  animation: cta-pulse-call 2s infinite;
}
@keyframes cta-pulse-call {
  0% { transform: scale(1); box-shadow: 0 8px 20px rgba(31, 157, 85, 0.3); }
  50% { transform: scale(1.03); box-shadow: 0 12px 30px rgba(31, 157, 85, 0.5); }
  100% { transform: scale(1); box-shadow: 0 8px 20px rgba(31, 157, 85, 0.3); }
}
.ay-cta-sub {
  font-size: 13.5px;
  color: var(--yellow);
  font-weight: 700;
}
@media (max-width: 640px) {
  .ay-cta-card { padding: 32px 20px; }
  .ay-cta-buttons { flex-direction: column; width: 100%; gap: 12px; }
  .ay-cta-buttons .btn { width: 100%; }
}
