@charset "utf-8";
/* CSS Document */
/*ESTO ES PARA LA SECCION DE DEJAR EL MIEDO*/
.call-to-action {
  position: relative;
  /*background: url('../../assets/img/cta-bg.jpg') center/cover no-repeat;*/
  padding: 100px 0;
  text-align: center;
}

.call-to-action::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);  /*Capa oscura*/
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.call-to-action p {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 20px;
}

.call-to-action ul {
  list-style: none;
  padding: 0;
}

.call-to-action ul li {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
}

.call-to-action ul li i {
  color: #4CAF50; /* Íconos en verde para resaltar beneficios */
  margin-right: 8px;
}

.call-to-action .cta-btn {
  background: #212529; /* Negro elegante */
  color: white;
  padding: 12px 24px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 6px;
  border: 2px solid white; /* Borde blanco */
  display: inline-block;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.call-to-action .cta-btn:hover {
  background: white;
  color: #212529; /* Negro en el texto para contraste */
}






/*ESTOS ES PARA LA CUADRICUAL DE CLIENTES*/

.clients .client-logo {
    text-align: center;
    padding: 30px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
	height: 140px; /* Tamaño uniforme para todos */
}

.clients .client-logo img {
    width: 100%; /* Se adapta al contenedor */
    max-width: 120px; /* Evita que crezca demasiado */
    height: auto; /* Mantiene proporción */
    max-height: 100px; /* Limita la altura en pantallas grandes */
    object-fit: contain; /* Asegura que el logo se ajuste sin recortarse */
    filter: grayscale(0%);
    transition: filter 0.3s ease-in-out;
}

.clients .client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.clients .client-logo:hover img {
    filter: grayscale(0%);
}

/*ESATA SECCION E SPARA COLOCAR UN FONDO AL HEADER*/
.header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 1)), 
              url('../../assets/img/bgNexus1.jpg') no-repeat center center;
  background-size: cover;
   /* Agrega un efecto de degrado arriba al 60% y abajo del header al 100% */
}

/*ESTA SECCION ES PARA PODER JUSTIFICAR TEXTO EN LA PAGÍNA*/
.text-justify {
    text-align: justify;
}
input, textarea  {
    text-transform: uppercase;
}

