/* ============================
   Diana Leal – Home / Index
   Estilo limpio, tipo Reto 21 Días / Recetario
============================ */

:root {
  --dl-color-primary: #6a63ff;
  --dl-color-accent: #9a8cff;
  --dl-color-dark: #111827;
  --dl-color-text: #4b5563;
  --dl-color-muted: #6b7280;
  --dl-color-bg-soft: #f5f5ff;
  --dl-color-bg-soft-2: #f9f8ff;
  --dl-color-white: #ffffff;
  --dl-shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  --dl-radius-card: 24px;
  --dl-radius-image: 26px;
}

/* Layout base */

.dl-home {
  background-color: #ffffff;
  color: var(--dl-color-text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.dl-section {
  padding: 80px 0;
}

.dl-section-soft {
  background: var(--dl-color-bg-soft-2);
}

/* Containers genéricos */

.dl-section-header {
  max-width: 680px;
  margin-bottom: 32px;
}

.dl-section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dl-section-title {
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1.25;
  color: var(--dl-color-dark);
}

.dl-section-title span {
  color: var(--dl-color-primary);
}

.dl-section-subtitle {
  margin-top: 14px;
  font-size: 0.98rem;
  color: var(--dl-color-muted);
}

.dl-section-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--dl-color-text);
  margin-bottom: 0.9rem;
}

/* Badge */

.dl-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(106, 99, 255, 0.12);
  color: var(--dl-color-primary);
  margin-bottom: 12px;
}

.dl-badge-soft {
  background: rgba(106, 99, 255, 0.08);
}

/* Botones */

.dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.dl-btn-primary {
  background: linear-gradient(135deg, #4c6fff, #8b5cf6);
  color: #ffffff !important;
  box-shadow: 0 14px 35px rgba(76, 111, 255, 0.45);
}

.dl-btn-primary:hover {
  box-shadow: 0 18px 40px rgba(76, 111, 255, 0.6);
  transform: translateY(-2px);
}

.dl-btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--dl-color-dark);
}

.dl-btn-ghost:hover {
  background: #ffffff;
  border-color: var(--dl-color-primary);
  color: var(--dl-color-primary);
}


/* ================================
   HERO FULL SCREEN – AJUSTE FINAL
================================ */

.dl-hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slides de fondo */

.dl-hero-bg-slider {
  position: absolute;
  inset: 0;
}

.dl-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 2s ease;
}

.dl-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay: más oscuro en la zona central para que el texto siempre destaque */

.dl-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.45) 65%,
      rgba(0, 0, 0, 0.70) 100%
    );
}

/* Contenido */

.dl-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 720px;
  padding: 0 20px;
  color: #ffffff;
}

.dl-hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 5px;
  background: rgba(255,255,255,0.18);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  color: #f9fafb;
}

/* TITULAR */

.dl-hero-title {
  margin-top: 16px;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.75);
}

.dl-hero-title span {
  color: #6a63ff; /* azul oficial de la página */
}

/* SUBTÍTULO */

.dl-hero-sub {
  margin-top: 14px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #f4f5ff;                    /* blanco ligeramente suave */
  text-shadow: 0 2px 8px rgba(0,0,0,0.85); /* para que se lea sobre cualquier fondo */
}

/* BOTONES */

.dl-hero-buttons {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Primario */
.dl-btn-primary-full {
  background: linear-gradient(135deg, #4c6fff, #8b5cf6);
  padding: 0.85rem 1.9rem;
  border-radius: 5px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  border: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.dl-btn-primary-full:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.55);
  opacity: 0.95;
}

/* Secundario */
.dl-btn-ghost-full {
  padding: 0.85rem 1.9rem;
  border-radius: 5px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #ffffff !important;
  text-decoration: none;
  backdrop-filter: blur(6px);
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dl-btn-ghost-full:hover {
  background: rgba(255,255,255,0.18);
  border-color: #ffffff;
}

/* NOTA INFERIOR */

.dl-hero-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #e5e7ff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

/* DOTS */

.dl-hero-dots {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dl-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dl-hero-dot.is-active {
  width: 26px;
  background: #ffffff;
}

/* Responsive */

@media (max-width: 767px) {
  .dl-hero-title {
    font-size: 2.15rem;
  }
  .dl-hero-sub {
    font-size: 1rem;
  }
}





/* Botones — border radius 5px */
.dl-btn-primary-full {
  background: linear-gradient(135deg, #4c6fff, #8b5cf6);
  padding: 0.85rem 1.8rem;
  border-radius: 5px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  border: none;
  transition: 0.25s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.dl-btn-primary-full:hover {
  opacity: 0.9;
}

.dl-btn-ghost-full {
  padding: 0.85rem 1.8rem;
  border-radius: 5px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #ffffff !important;
  backdrop-filter: blur(6px);
  transition: 0.25s ease;
}

.dl-btn-ghost-full:hover {
  background: rgba(255,255,255,0.22);
}

.dl-hero-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

/* Dots */
.dl-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 5px; /* NOTA: lo mantengo suave */
  background: rgba(255,255,255,0.45);
  border: none;
  transition: 0.3s ease;
}

.dl-hero-dot.is-active {
  width: 28px;
  background: #ffffff;
}





/* Imagen tipo card (secciones split) */

.dl-image-frame {
  border-radius: var(--dl-radius-image);
  padding: 10px;
  background: #ffffff;
  box-shadow: var(--dl-shadow-soft);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.dl-image-frame img {
  display: block;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Checklist */

.dl-checklist {
  list-style: none;
  padding-left: 0;
  margin: 16px 0 0;
  font-size: 0.95rem;
  color: var(--dl-color-text);
}

.dl-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.dl-checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #22c55e;
  font-size: 0.9rem;
  margin-top: 2px;
}

/* =============================
   NUEVA SECCIÓN DE TESTIMONIOS
============================= */

.dl-testimonials-grid {
  background: linear-gradient(180deg, #f7f7ff 0%, #ffffff 100%);
}

.dl-testimonials-wrapper {
  display: grid;
  gap: 26px;
  margin-top: 32px;

  /* desktop */
  grid-template-columns: repeat(3, 1fr);
}

.dl-testimonial-photo {
  background: #ffffff;
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dl-testimonial-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.dl-testimonial-photo img {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}

/* Tablet: 2 por fila */
@media (max-width: 991px) {
  .dl-testimonials-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Móvil: 1 por fila */
@media (max-width: 575px) {
  .dl-testimonials-wrapper {
    grid-template-columns: 1fr;
  }
}


//* =========================================
   CTA FINAL – CORREGIDO (ANTES TODO AZUL)
========================================= */

.dl-cta-final {
  background: linear-gradient(
    135deg,
    #6a63ff 0%,
    #8b5cf6 100%
  ); /* lavanda premium */
  padding: 4rem 1rem;
  color: #ffffff;
  text-align: center;
  border-radius: 0;
}

.dl-cta-final h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.dl-cta-final p {
  margin-top: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
}

.dl-cta-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Botón primario */
.dl-cta-btn-primary {
  padding: 0.9rem 1.8rem;
  border-radius: 5px;
  background: #ffffff;
  color: #6a63ff;
  font-weight: 700;
  border: none;
  text-decoration: none;
}

.dl-cta-btn-primary:hover {
  background: #f3f0ff;
}

/* Botón secundario */
.dl-cta-btn-ghost {
  padding: 0.9rem 1.8rem;
  border-radius: 5px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.65);
  color: #ffffff;
  text-decoration: none;
}

.dl-cta-btn-ghost:hover {
  background: rgba(255,255,255,0.15);
}


/* Responsivo */

@media (max-width: 991.98px) {
  .dl-hero {
    padding-top: 72px;
  }

  .dl-hero-title {
    font-size: 2.3rem;
  }

  .dl-hero-media {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
  }

  .dl-plan-image {
    height: 210px;
  }
}

/* ================================
   HERO – AJUSTES ESPECÍFICOS MÓVIL
   (≤ 767px)
================================ */

@media (max-width: 767px) {

  /* Contenido un poco más abajo y con menos “peso” visual */
  .dl-hero-content {
    padding: 0 18px 2.8rem;
  }

  /* Titular más fino y pulcro en móvil */
  .dl-hero-title {
    color: #FFF !important;
    font-size: 2rem;              /* antes ~2.7 */
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 7px rgba(0,0,0,0.85);
  }

  /* Resaltar “coach personal” de verdad */
  .dl-hero-title span {
    color: #7c73ff !important;    /* azul más luminoso para resaltar */
    text-shadow: 0 3px 10px rgba(0,0,0,0.9);
  }

  /* Subtítulo más delicado y legible */
  .dl-hero-sub {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f5f5ff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.85);
  }

  /* Botones más elegantes y menos “gordos” */
  .dl-hero-buttons {
    margin-top: 18px;
    gap: 10px;
  }

  .dl-btn-primary-full,
  .dl-btn-ghost-full {
    padding: 0.7rem 1.4rem;       /* menos alto */
    font-size: 0.9rem;
    border-radius: 5px;
    width: 100%;
    max-width: 320px;             /* no ocupan TODO el ancho, se ven más finos */
  }

  .dl-btn-primary-full {
    box-shadow: 0 10px 24px rgba(0,0,0,0.45);
  }

  .dl-hero-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #e5e7ff !important;
  }

  .dl-hero-dots {
    margin-top: 18px;
  }
}





/* =========================================
   SECCIÓN PLANES – BLOQUE CON CONTRASTE SUAVE
========================================= */

.dl-plans-section {
  background: radial-gradient(circle at top left, #f5f2ff 0%, #f6f8ff 50%, #ffffff 100%);
  padding: 4.5rem 0 5rem;
}

/* Título y textos de la sección */
.dl-plans-section .section-badge,
.dl-plans-section .section-subtitle {
  color: #6b7280; /* gris suave elegante */
}

.dl-plans-section .section-title {
  color: #4f46e5; /* azul lila de marca */
}

/* Cartas de planes */
.dl-plans-section .plan-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.12);
  overflow: hidden;
}

/* Imagen de arriba de la card */
.dl-plans-section .plan-card__image {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* Contenido de la card */
.dl-plans-section .plan-card__body {
  padding: 1.8rem 1.9rem 2.1rem;
}

/* Título dentro de la card */
.dl-plans-section .plan-card__title {
  font-weight: 700;
  color: #4f46e5;
}

/* Texto y bullets */
.dl-plans-section .plan-card__text {
  margin-top: 0.6rem;
  color: #4b5563;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* CTA de la card */
.dl-plans-section .plan-card__btn {
  margin-top: 1.5rem;
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  background: linear-gradient(135deg, #4c6fff, #8b5cf6);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.25);
}


/* =========================================
   CTA FINAL – CENTRADO + BOTONES REALES
========================================= */

.dl-final-cta {
  background: radial-gradient(circle at top left, #262143 0%, #151827 55%, #090b12 100%);
  padding: 4rem 1.5rem;
  color: #f9fafb;
  text-align: center;
}

.dl-final-inner {
  max-width: 520px;
  margin: 0 auto;
}

/* TÍTULO */
.dl-final-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: #eef0ff;
}

/* TEXTO */
.dl-final-text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(230, 234, 255, 0.95);
  margin-bottom: 2rem;
}

/* =============================
   MOBILE (≤ 767px)
============================= */
@media (max-width: 767px) {

  .dl-btn-primary {
    font-size: 12px !important;
  }

  .dl-btn-secondary {
    font-size: 12px !important;
  }

  .dl-final-cta {
    padding: 3rem 1.2rem 4rem;
  }

  .dl-final-title {
    font-size: 1.7rem;
  }

  .dl-final-text {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
  }

  .dl-final-actions {
    gap: 12px;
  }

  .dl-final-btn-primary,
  .dl-final-btn-secondary {
    font-size: 0.9rem;
    padding: 0.75rem 1.4rem;
    max-width: 300px;
  }
}

/* ====================================================
   S S S S  (Super Simple Stylesheet Snippet)
   BOTONES EXACTOS DEL HERO PARA USAR EN CUALQUIER LUGAR
==================================================== */

/* CONTENEDOR */
.dl-btn-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* BOTÓN PRIMARIO (AZUL) */
.dl-btn-primary {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  width: 100%;
  max-width: 320px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  text-align: center !important;
  background: linear-gradient(135deg, #4c6fff, #8b5cf6);
  color: #ffffff !important;

  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease;
}

.dl-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* BOTÓN SECUNDARIO (TRANSPARENTE TIPO VIDRIO) */
.dl-btn-secondary {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  width: 100%;
  max-width: 320px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;

  background: rgba(255, 255, 255, 0.05);
  border: 1.4px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;

  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.dl-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ===============================
   SECCIÓN PLANES – Diana Leal
   (copiada de coaching-plans)
=============================== */

.section-plans {
  padding: 5rem 0 6rem;
  background: #f9fafc;
}

/* --- Títulos --- */
.plans-title {
  font-weight: 800;
  font-size: 2.4rem;
  color: #1e293b;
  margin-bottom: 0.6rem;
}
.plans-title span {
  color: #5b6dff;
}

.plans-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3b3b3b;
  margin-bottom: 0.5rem;
}

.section-intro {
  color: #6b7280;
  margin-bottom: 2rem;
}

/* --- Tarjetas --- */
.plan-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  cursor: pointer;
}
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(91, 109, 255, 0.18);
}

/* Imagen superior */
.plan-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid #5b6dff;
}

/* Contenido */
.plan-body {
  padding: 2rem 1.8rem 2.4rem;
  text-align: center;
}

.plan-title {
  font-size: 1.5rem;
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 1rem;
}
.plan-title span {
  position: relative;
}
.plan-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #5b6dff, #8aa8ff);
  opacity: 0.25;
  transition: opacity 0.3s ease;
}
.plan-card:hover .plan-title span::after {
  opacity: 0.9;
}

/* Descripción */
.plan-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.plan-desc .highlight {
  color: #5b6dff;
  font-weight: 600;
}

/* --- Botón principal --- */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #5b6dff 0%, #3c4bff 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(91, 109, 255, 0.3);
  transition: all 0.25s ease;
}
/* ===============================
   HOME – SECCIÓN PLANES (INDEX)
   Clases aisladas: no chocan con nada
=============================== */

.dl-home-plans {
  padding: 5rem 0 6rem;
  background: #f9fafc;
}

/* Encabezados de la sección */
.dl-home-plans-subtitle {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.dl-home-plans-subheading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3b3b3b;
  margin-bottom: 0.5rem;
}

.dl-home-plans-intro {
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Tarjetas */
.dl-home-plans-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dl-home-plans-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(91, 109, 255, 0.18);
}

/* Imagen superior */
.dl-home-plans-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid #5b6dff;
}

/* Contenido cuerpo */
.dl-home-plans-card-body {
  padding: 2rem 1.8rem 2.4rem;
  text-align: center;
}

.dl-home-plans-card-title {
  font-size: 1.5rem;
  color: #1f2937;
  font-weight: 700;
  margin-bottom: 1rem;
}

.dl-home-plans-card-title span {
  position: relative;
}

.dl-home-plans-card-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #5b6dff, #8aa8ff);
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.dl-home-plans-card:hover .dl-home-plans-card-title span::after {
  opacity: 0.9;
}

/* Descripción */
.dl-home-plans-card-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.dl-home-plans-highlight {
  color: #5b6dff;
  font-weight: 600;
}

/* Botón */
.dl-home-plans-btn {
  display: inline-block;
  background: linear-gradient(135deg, #5b6dff 0%, #3c4bff 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(91, 109, 255, 0.3);
  transition: all 0.25s ease;
}

.dl-home-plans-btn:hover {
  background: linear-gradient(135deg, #3c4bff 0%, #2a35ff 100%);
  box-shadow: 0 12px 30px rgba(60, 75, 255, 0.45);
  transform: translateY(-3px);
}

/* Link que envuelve la card */
.dl-home-plans-card-link {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
}

.dl-home-plans-card-link:hover,
.dl-home-plans-card-link:focus,
.dl-home-plans-card-link:active {
  text-decoration: none !important;
  color: inherit !important;
}

/* Responsive */
@media (max-width: 992px) {
  .dl-home-plans-subheading { font-size: 1.2rem; }
  .dl-home-plans-card-desc { font-size: 0.95rem; }
  .dl-home-plans-btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
  }
  .dl-home-plans-card {
    margin-bottom: 2rem;
  }
}
/* Quitar fondo azul raro en hover de las cards del home */
.dl-home-plans-card-link,
.dl-home-plans-card-link:hover,
.dl-home-plans-card-link:focus,
.dl-home-plans-card-link:active {
  background: transparent !important;
}

/* Opcional: sombra neutra (sin tinte azul) en hover */
.dl-home-plans-card:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}
