/* JELP — estilos específicos de la landing
   Morado principal #9B2389 · Verde secundario #95C11F */

#navigation4 .nav-brand {
  display: flex;
  align-items: center;
  height: 62px;
  line-height: 1;
  padding: 0 8px 0 0;
}

.jelp-logo {
  display: block;
  height: 62px;
  width: auto;
}

.button-primary {
  background: #95C11F;
  color: #111;
  font-weight: 600;
}

.button-primary:hover,
.button-primary:focus {
  background: #7eaa18;
  color: #111;
}

/* Tarjetas de programas */
.jelp-program-cards {
  margin-top: 30px;
}

.jelp-program-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 35px 30px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #9B2389;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jelp-program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(155, 35, 137, 0.15);
}

.jelp-program-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(155, 35, 137, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.jelp-program-card-icon i {
  font-size: 24px;
  color: #9B2389;
}

.jelp-program-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1c303e;
}

.jelp-program-card p {
  flex: 1;
  margin-bottom: 0;
  color: #555;
  line-height: 1.7;
}

.jelp-program-card .jelp-price {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #eee;
  font-size: 15px;
  color: #1c303e;
}

.jelp-program-card .jelp-price strong {
  display: inline-block;
  background: #95C11F;
  color: #111;
  font-size: 16px;
  line-height: 1.2;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* Tabla de bonos / precios */
.jelp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.jelp-pricing-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  border: 2px solid transparent;
  transition: border-color 0.25s ease;
}

.jelp-pricing-box:hover {
  border-color: #9B2389;
}

.jelp-pricing-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1c303e;
}

.jelp-pricing-box .jelp-pricing-amount {
  font-size: 32px;
  font-weight: 700;
  color: #9B2389;
  line-height: 1.2;
  margin: 12px 0;
}

.jelp-pricing-box .jelp-pricing-amount small {
  font-size: 14px;
  font-weight: 400;
  color: #777;
}

.jelp-pricing-box ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  text-align: left;
}

.jelp-pricing-box ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.jelp-pricing-box ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #9B2389;
  font-size: 12px;
}

/* Requisitos */
.jelp-requisitos-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.jelp-requisitos-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid #e8e8e8;
  line-height: 1.6;
  color: #444;
}

.jelp-requisitos-list li:last-child {
  border-bottom: none;
}

.jelp-requisitos-list li::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 14px;
  color: #4F780C;
  font-size: 11px;
}

/* Talleres / bienestar — grid 3×3 */
.jelp-talleres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.jelp-taller-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: #fff;
  padding: 35px 22px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jelp-taller-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(155, 35, 137, 0.12);
}

.jelp-taller-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(155, 35, 137, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.jelp-taller-icon i {
  font-size: 46px;
  color: #9B2389;
  line-height: 1;
}

.jelp-taller-item span {
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  font-weight: 500;
}

/* Voluntariado CTA */
.jelp-voluntariado-cta {
  background: linear-gradient(135deg, #9B2389 0%, #6E165F 100%);
  border-radius: 12px;
  padding: 45px 40px;
  color: #fff;
  text-align: center;
  margin-top: 40px;
}

.jelp-voluntariado-cta h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.jelp-voluntariado-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.jelp-voluntariado-cta .button-md {
  background: #95C11F !important;
  color: #111 !important;
  border: none;
  font-weight: 600;
}

.jelp-voluntariado-cta .button-md:hover {
  background: #7eaa18 !important;
  color: #111 !important;
}

/* Donaciones */
.jelp-donaciones-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.jelp-donaciones-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(155, 35, 137, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.jelp-donaciones-icon i {
  font-size: 52px;
  color: #9B2389;
  line-height: 1;
}

.jelp-donaciones-box h4 {
  margin-bottom: 12px;
}

/* Info destacada */
.jelp-info-highlight {
  background: rgba(155, 35, 137, 0.06);
  border-left: 4px solid #9B2389;
  padding: 20px 25px;
  border-radius: 0 8px 8px 0;
  margin: 25px 0;
}

.jelp-info-highlight p {
  margin: 0;
  color: #444;
  line-height: 1.7;
}

/* Sub-nav actividades */
.jelp-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 25px 0 10px;
}

.jelp-subnav a {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #9B2389;
  border-radius: 30px;
  color: #9B2389;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.jelp-subnav a:hover,
.jelp-subnav a:focus {
  background: #9B2389;
  color: #fff;
  text-decoration: none;
}

/* Contacto — textos en negro */
#contacto .section-heading h3,
#contacto .section-heading p,
#contacto .contact-icon-box h4,
#contacto .contact-icon-box h5,
#contacto .callback-block h4,
#contacto .text-content-big p,
#contacto .primary-form,
#contacto .primary-form input,
#contacto .primary-form textarea,
#contacto .primary-form label {
  color: #1c303e !important;
}

#contacto .primary-form input::placeholder,
#contacto .primary-form textarea::placeholder {
  color: #1c303e !important;
  opacity: 0.75;
}

#contacto .primary-form input::-webkit-input-placeholder,
#contacto .primary-form textarea::-webkit-input-placeholder {
  color: #1c303e !important;
  opacity: 0.75;
}

#contacto form .col-12 {
  color: #1c303e;
}

#contacto form .col-12 a {
  color: #1c303e;
  text-decoration: underline;
}

#contacto form .col-12 a:hover,
#contacto form .col-12 a:focus {
  color: #000;
}

@media (max-width: 991px) {
  #navigation4.navigation {
    height: auto;
    min-height: 76px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  #navigation4 .nav-brand {
    height: auto;
  }

  .jelp-logo {
    height: 58px;
  }

  .jelp-talleres-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .jelp-voluntariado-cta {
    padding: 30px 22px;
  }

  .jelp-donaciones-box {
    padding: 30px 22px;
  }

  .jelp-program-card {
    padding: 28px 22px;
  }

  .jelp-talleres-grid {
    grid-template-columns: 1fr;
  }

  .jelp-taller-icon {
    width: 84px;
    height: 84px;
  }

  .jelp-taller-icon i {
    font-size: 40px;
  }
}
