/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 08 2025 | 09:22:23 */
/* CONTENEDOR GENERAL */
.recomendaciones-brokers {
  padding: 3rem 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: transparent;
}

/* TÍTULO */
.recomendaciones-brokers h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #1D75C2;
}

/* GRID DE TARJETAS */
.wrap-brokers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* TARJETAS */
.wrap-brokers .broker {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.wrap-brokers .broker:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.10);
}

/* IMAGEN */
.broker .imagen {
  text-align: center;
  margin-bottom: 1.25rem;
}

.broker .imagen img {
  max-width: 10rem;
  height: auto;
}

/* TÍTULO INDIVIDUAL */
.broker .titulo h4 {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #333;
}

/* TEXTO DESCRIPTIVO */
.broker .contenido {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 1.5rem;
}

.broker .contenido p {
  margin-bottom: 0.5rem;
}

/* BOTÓN CTA */
.broker .cta {
  text-align: center;
}

.broker .cta .button {
  background-color: #1D75C2;
  color: white !important;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  min-width: 100%;
  transition: background-color 0.25s ease;
}

.broker .cta .button:hover {
  background-color: #155b98;
  cursor: pointer;
}

/* AVISO LEGAL */
.recomendaciones-brokers small {
  display: block;
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: #555;
  max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .recomendaciones-brokers {
    padding: 2rem 1rem;
  }

  .broker .cta .button {
    font-size: 0.95rem;
    padding: 0.75rem;
  }
}