/* --- BOTÓN DE VIDEO GIRATORIO --- */
.rotating-text-button {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}
.rotating-text-button:hover { transform: scale(1.05); }
.rotating-text-button textPath {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    fill: #FBBF24; /* amber-400 */
}
.rotating-text-button .play-icon-container {
    width: 96px;
    height: 96px;
    background-color: #000000; /* amber-400 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse-glow 2.5s infinite ease-in-out;
}
.rotating-text-button:hover .play-icon-container {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}
@keyframes pulse-glow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* --- FAQ ACORDEÓN --- */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

/* --- BARRAS DE PROGRESO --- */
.progress-bar {
    transition: width 1.5s ease-out;
}


