/* landing.css - Specific styles for the Landing Page */

/* Material Symbols: variación de fuente (no cubierto por utilidades Tailwind) */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Video button styles */
.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
    width: 100%;
    margin-top: 10px;
}

.video-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-play-btn:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-button i {
    font-size: 24px;
    color: #dc2626;
    margin-left: 3px;
}

.video-play-btn:hover .play-button {
    background: #dc2626;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn:hover .play-button i {
    color: white;
}

.video-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #006397;
    margin-top: 6px;
    transition: color 0.3s ease;
}

.video-play-btn:hover .video-label {
    color: #004a70;
}
