.hidden-item {
    display: none;
}

@keyframes pulse-subtle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.animate-pulse-subtle {
    animation: pulse-subtle 2.5s ease-in-out infinite;
}

/* Estilos personalizados para lite-youtube */
lite-youtube {
    border-radius: 35px;
    overflow: hidden;
    max-width: 410px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

lite-youtube::before {
    border-radius: 35px;
}

/* Estilos del slider de testimonios */
.testimonials-slider {
    position: relative;
}

.testimonials-track {
    cursor: grab;
    user-select: none;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonial-dot {
    cursor: pointer;
    border: none;
    outline: none;
}

.testimonial-dot:not(.active):hover {
    background-color: #374151 !important;
}

/* Estilos para la rotación de logos de marcas */
.brand-logo-container {
    transition: opacity 500ms ease-in-out;
    will-change: opacity;
    min-width: 0; /* Permite que flex-1 funcione correctamente */
}

.brand-logo-container img {
    transition: transform 300ms ease-in-out;
    max-width: 100%;
    max-height: 100%;
}