/* Contenedor principal */
.logo-carousel {
  overflow: hidden;
  padding: 40px 0;
  background: white; /* Puedes cambiarlo a #000 si prefieres fondo negro */
  position: relative;
}

/* El carril que se mueve */
.logo-track {
  display: flex;
  width: calc(250px * 8); /* Ajusta según el número total de logos en el HTML */
  animation: scroll 20s linear infinite;
}

/* Cada espacio de logo */
.logo-slide {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.logo-slide img {
  max-width: 150px; /* Tamaño máximo en PC */
  max-height: 80px;
  filter: grayscale(100%); /* Efecto elegante, quítalo si quieres full color */
  transition: 0.3s;
  opacity: 0.7;
}

.logo-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animación */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 4)); } /* Debe ser el ancho de la mitad de los logos */
}

/* Ajustes para Teléfonos */
@media (max-width: 768px) {
  .logo-slide {
    width: 150px;
  }
  .logo-slide img {
    max-width: 100px;
  }
  .logo-track {
    width: calc(150px * 8);
  }
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-150px * 4)); }
  }

.hero-section{
    position:relative;
    width:100%;
    min-height:100vh;

    display:flex;
    align-items:center;

    padding:80px;

    background-image:url('https://mundocapacitaciones-ec.com/wp-content/uploads/2026/05/Arte-5-Portada-Web-Practica.jpg');

    background-size:cover;
    background-position:center;

    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.75) 45%,
        rgba(0,0,0,0.1) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;

    max-width:650px;
}

.hero-top{
    color:#f59e0b;

    font-size:14px;
    font-weight:700;

    letter-spacing:2px;

    display:block;

    margin-bottom:20px;
}

.hero-content h1{
    color:#fff;

    font-size:75px;
    line-height:1;

    font-weight:800;

    margin-bottom:25px;
}

.hero-content p{
    color:#ddd;

    font-size:22px;
    line-height:1.6;

    margin-bottom:35px;
}

.btn-primary{
    display:inline-block;

    background:#f59e0b;
    color:#000;

    padding:18px 34px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);

    background:#ffb11f;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero-section{

        padding:120px 25px 80px;

        background-image:url('https://mundocapacitaciones-ec.com/wp-content/uploads/2026/05/Arte-5-Portada-Web-Practica2.jpg');

        background-position:center top;
    }

    .hero-overlay{
        background:linear-gradient(
            180deg,
            rgba(0,0,0,0.82) 0%,
            rgba(0,0,0,0.9) 100%
        );
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:17px;
    }

    .btn-primary{
        width:100%;
        text-align:center;
    }

}