/* Estilos para Pacífico YouTube Videos */
.pacifico-videos-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pacifico-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.pacifico-video-item {
    background: #fff;
    border: 2px solid #e0e0e0;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.pacifico-video-item:hover {
    transform: translateY(-5px);
    border-color: #4CAF50;
}

.pacifico-video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.pacifico-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.pacifico-video-thumbnail:hover .pacifico-play-overlay {
    background: rgba(255,0,0,0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.pacifico-play-icon {
    color: white;
    font-size: 28px;
    margin-left: 4px;
}

.pacifico-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: none;
}

.pacifico-video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pacifico-video-player.active {
    display: block;
}

.pacifico-video-info {
    padding: 20px;
    background: #fff;
}

.pacifico-video-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pacifico-video-date {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.pacifico-load-more {
    text-align: center;
    margin-top: 40px;
}

.pacifico-load-more-button {
    display: inline-block;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pacifico-load-more-button:hover {
    background: #45a049;
    transform: translateY(-3px);
    text-decoration: none;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .pacifico-videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pacifico-video-thumbnail {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .pacifico-videos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pacifico-video-thumbnail {
        height: 200px;
    }
}