.banner{
    margin-top: 150px;
    display: grid;
    grid-template-columns: 80% 20%;
    border-bottom: 1px solid #dce1e4;
    padding-bottom: 50px;
}
.banner .content{
    text-align: justify;
    padding-right: 50px;
}
.banner .content h1{
    font-size: 4.5em;
    margin: 0;
}
.gradientText{
  display: inline-block;
    background: var(--gradient-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.job{
   display: inline-block;
}
.job::before{
    content: attr(data-job1);
    overflow: hidden;
    display: inline-flex;
    animation: effectText 1s linear infinite alternate,
    changeText 4s linear infinite;
}
@keyframes effectText{
    from{
        max-width: 0;
    }to{
        max-width: 500px;
    }
}
@keyframes changeText{
    from{
        content: attr(data-job1);
    }
    to{
        content: attr(data-job2);
    }
}
.find{
    margin-top: 50px;
}
.find ul{
    padding: 0;
    list-style: none;
    display: flex;
}
.find ul li{
    width: 50px;
    height: 50px;
    box-shadow: var(--box-shadow);
    margin: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
}
.find ul li:hover{
    color: #fff;
    background-image: var(--gradient-bg);
}

/* Tablet (768px o menos) */
@media (max-width: 768px) {
    .banner {
        grid-template-columns: 1fr;
        margin-top: 100px;
        padding-bottom: 30px;
    }

    .banner .content {
        padding-right: 0;
        padding-bottom: 30px;
    }

    .banner .content h1 {
        font-size: 3.5em;
    }

    .find ul li {
        width: 45px;
        height: 45px;
        margin: 8px;
    }
}

/* Mobile (480px o menos) */
@media (max-width: 480px) {
    .banner {
        margin-top: 80px;
        padding-bottom: 20px;
    }

    .banner .content h1 {
        font-size: 2.5em;
    }

    .banner .content p {
        font-size: 0.9em;
    }

    .find {
        margin-top: 30px;
    }

    .find h3 {
        font-size: 1em;
    }

    .find ul li {
        width: 40px;
        height: 40px;
        margin: 5px;
    }

    .job::before {
        animation: effectText 1s linear infinite alternate,
            changeText 4s linear infinite;
        max-width: 200px; /* Ajuste para pantallas pequeñas */
    }

    @keyframes effectText {
        from {
            max-width: 0;
        }
        to {
            max-width: 200px; /* Limitar expansión en mobile */
        }
    }
}

/* Ajustes adicionales para textos muy largos */
@media (max-width: 360px) {
    .banner .content h1 {
        font-size: 2em;
    }
    
    .job::before {
        display: inline-block; /* Cambiar a bloque para mejor manejo */
    }
}

/* Estilo para el contenedor */
.platform-link {
    width: 80px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--box-shadow);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    padding: 8px;
}

/* Estilo para la imagen PNG */
.premiere-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Efecto hover profesional */
.platform-link:hover {
    transform: scale(1.08);
    background-image: var(--gradient-bg);
}

.platform-link:hover .premiere-icon {
    filter: brightness(0) invert(1);
}

/* Versión responsive */
@media (max-width: 768px) {
    .platform-link {
        width: 50px;
        height: 50px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .platform-link {
        width: 45px;
        height: 45px;
        padding: 5px;
    }
}