/* ===========================
   TE AYUDAMOS CON TU CV
   =========================== */

/* HERO */
.hero-somos {
  position: relative;
  width: 100%;
  height: 45vh;
  overflow: hidden;
}

.hero-somos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-somos .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}

.hero-somos h1 {
  font-size: var(--fs-xl);
  margin-bottom: 8px;
}

.hero-somos p {
  font-size: var(--fs-md);
}

/* BLOQUE DE TEXTO LARGO */
.texto-largo {
  max-width: 900px;
  margin: 40px auto;
  line-height: 1.75;
  font-size: var(--fs-base);
  padding: 0 20px;
  color: var(--color-text-main);
}

.texto-largo h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: var(--fs-md);
  color: var(--color-primary);
}

.texto-largo p {
  margin-bottom: 14px;
}

.texto-largo ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.texto-largo li {
  margin-bottom: 8px;
}

/* check azul */
.texto-largo .check {
  color: var(--color-primary);
  font-weight: 700;
  margin-right: 4px;
}

/* BOTÓN PRINCIPAL "SUBIR MI CV" */
.btn-cv {
  display: inline-block;
  background: var(--color-primary);
  padding: 14px 28px;
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
  text-align: center;
}

.btn-cv:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* BLOQUE DE PLANTILLAS DESCARGABLES */
.cv-recursos {
  margin-top: 30px;
  padding: 20px 20px 24px;
  background: #f7f9fc;
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.cv-recursos h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.cv-recursos p {
  margin-bottom: 12px;
}

.cv-recursos ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cv-recursos li {
  margin-bottom: 10px;
}

.cv-recursos a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
}

.cv-recursos a::before {
  content: "⬇";
  font-size: 0.9rem;
}

/* SECCIÓN DE TIPS RÁPIDOS */
.cv-tips {
  margin-top: 30px;
}

.cv-tips p {
  margin-bottom: 18px;
}

.cv-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.cv-tip-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}

.cv-tip-card h3 {
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: var(--color-primary);
}

.cv-tip-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* CTA STICKY (botón flotante) */
.cta-sticky {
  position: fixed;
  right: 20px;
  bottom: 110px; /* un poco sobre el botón de WhatsApp */
  background: var(--color-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 150;
}

.cta-sticky:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-somos {
    height: 35vh;
  }

  .texto-largo {
    margin: 30px auto;
    padding: 0 16px;
  }

  .texto-largo h2 {
    font-size: 1.05rem;
  }

  .btn-cv {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .cta-sticky {
    left: 20px;
    right: 20px;
    bottom: 90px;
    justify-content: center;
    text-align: center;
  }
}

/* BLOQUE CV INCLUSIVO */
.cv-inclusivo {
  margin-top: 40px;
  padding: 24px 20px 28px;
  background: #f1f5ff;
  border-radius: 18px;
  border: 1px solid var(--color-border);
}

.cv-inclusivo h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.cv-inclusivo p {
  margin-bottom: 14px;
}

.cv-inclusivo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.cv-inclusivo-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}

.cv-inclusivo-card h3 {
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: var(--color-primary);
}

.cv-inclusivo-card p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.cv-inclusivo-etiqueta {
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.cv-inclusivo-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

/* Ajustes responsive para el bloque inclusivo */
@media (max-width: 768px) {
  .cv-inclusivo {
    padding: 20px 16px 24px;
  }

  .cv-inclusivo-card {
    padding: 14px 14px;
  }
}
