.solucionesFile-section {
  background-color: #ffffff; /* Fondo blanco */
  font-family: "Montserrat", sans-serif;
  color: #333333;
  padding: 0; /* no padding extra arriba */
}

.solucionesFile-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.solucionesFile-img {
  width: 100%;
  height: auto;
  display: block;
}

.solucionesFile-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  margin: 0;
}

.solucionesFile-content {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
}
.solucionesFile-content-text {
  text-align: justify;
}

.solucionesFile-card-section {
  background-color: #e6f7fd;

  font-family: "Montserrat", sans-serif;
  color: #333333;
  padding: 3rem 1rem;
}

.solucionFile-card-title {
  font-weight: 700;
  font-size: 1.6rem;
  color: #00aeef;
  margin-bottom: 1rem;
}

.solucionFile-card-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: justify;
}

.img-fluid {
  width: 100%;
  height: 350px;
  display: block;
}
.bg-light-blue {
  background-color: #e6f7fd;
}

.cta-section {
  background-color: #00aeef;
  color: #ffffff;
  padding: 3rem 1rem;
}
.cta-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cta-button {
  display: inline-block;
  background-color: #ffffff;
  color: #00aeef;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.cta-button:hover {
  background-color: #333333;
  color: #ffffff;
}

.soluciones-beneficios-section {
    background-color: #333333; /* Fondo gris oscuro */
    font-family: "Montserrat", sans-serif;
    color: #f9f9f9;
    padding: 3rem 1rem;
}

.beneficio-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.beneficio-icon i {
    font-size: 2rem;
    color: #00aeef;
    border: 2px solid #00aeef;
    border-radius: 50%;
    padding: 0.6rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    text-align: center;
}

.beneficio-title {
    font-weight: 700;
    font-size: 1rem;
    color: #00aeef;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.beneficio-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333333;
}

