  .banplus-movil-section {
  padding: 2rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.banplus-movil-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* <-- cambia esto */
  flex-wrap: nowrap; /* <-- no queremos que se desordene */
  gap: 2rem;
}

.banplus-imagen {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-start; /* <-- alinea imagen a la izquierda */
}

.banplus-imagen img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  background: radial-gradient(circle at center, white 60%, #0091d0 65%, #8cc63f 70%);
}

.banplus-texto {
  flex: 1;
  max-width: 50%;
}

.banplus-texto h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.banplus-texto .azul {
  color: #0091d0;
  font-weight: bold;
}

.banplus-texto .verde {
  color: #8cc63f;
  font-weight: bold;
}

.banplus-texto p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.ver-mas {
  color: #001c54;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Responsive: columna en móvil */
@media (max-width: 768px) {
  .banplus-movil-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .banplus-imagen,
  .banplus-texto {
    max-width: 100%;
  }

  .banplus-imagen {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .banplus-movil-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .banplus-texto {
    order: 1; /* Texto primero */
    max-width: 100%;
  }

  .banplus-imagen {
    order: 2; /* Imagen después */
    max-width: 100%;
    justify-content: center;
  }
}




.punto-venta-section {
  padding: 2rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.punto-venta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2rem;
}

.punto-venta-texto {
  flex: 1;
  max-width: 50%;
}

.punto-venta-texto h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.punto-venta-texto .azul {
  color: #0091d0;
  font-weight: bold;
}

.punto-venta-texto .verde {
  color: #8cc63f;
  font-weight: bold;
}

.punto-venta-texto p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.ver-mas {
  color: #001c54;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}

.punto-venta-imagen {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
}

.punto-venta-imagen img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  background: radial-gradient(circle at center, white 60%, #0091d0 65%, #8cc63f 70%);
}

/* Responsive */
@media (max-width: 768px) {
  .punto-venta-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .punto-venta-texto,
  .punto-venta-imagen {
    max-width: 100%;
  }

  .punto-venta-imagen {
    justify-content: center;
  }
}



.phishing-section {
  padding: 2rem;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.phishing-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2rem;
}

.phishing-imagen {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-start;
}

.phishing-imagen img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  background: radial-gradient(circle at center, white 60%, #0091d0 65%, #8cc63f 70%);
}

.phishing-texto {
  flex: 1;
  max-width: 50%;
}

.phishing-texto h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #8cc63f;
  font-weight: bold;
  line-height: 1.3;
}

.phishing-texto p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.ver-mas {
  color: #001c54;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Responsive para móvil */
@media (max-width: 768px) {
  .phishing-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .phishing-texto {
    order: 1;
    max-width: 100%;
  }

  .phishing-imagen {
    order: 2;
    max-width: 100%;
    justify-content: center;
  }
}
