.reels {
    padding: 40px;
}

.reels-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
}

.reels-container video {
    width: 250px;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.reels-container video:hover {
    transform: scale(1.05);
}
.frase-container {
    text-align: center;
    margin: 60px auto;
    max-width: 600px;
}

.frase-container h3 {
    letter-spacing: 3px;
    color: #ff0000;
    margin-bottom: 20px;
}

/* CUADRO */
.frase-box {
    background: linear-gradient(135deg, #111, #1a1a1a);
    border-left: 5px solid #ff0000;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.frase-box:hover {
    transform: scale(1.02);
}

.frase-box p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

/* BOTÓN */
.frase-btn {
    margin-top: 25px;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #ff0000;
    color: #ff0000;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.frase-btn:hover {
    background-color: #ff0000;
    color: #fff;
}