/* Depoimentos Page - Minimal Custom Styles */
.depoimentos-page {
    background-color: #f8f6f0;
    min-height: 100vh;
}

/* Media container for testimonials */
.testimonial-media {
    min-height: 300px;
    background: #666;
}

/* Video thumbnail hover effect */
.video-thumbnail:hover .bg-white {
    background-color: white !important;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Card hover effect */
.testimonial-card:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Toast notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 4px;
    color: white;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-width: 300px;
    word-wrap: break-word;
}

.toast-success {
    background: #28a745;
}

.toast-error {
    background: #dc3545;
}

.toast-info {
    background: #007bff;
}

/* Video player iframe */
.video-thumbnail iframe {
    border-radius: 0;
}

/* Object-fit fallback for older browsers */
.object-fit-cover {
    object-fit: cover;
    font-family: 'object-fit: cover;'; /* Fallback for IE */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .testimonial-media {
        min-height: 250px;
    }
    
    /* Ensure proper stacking on mobile */
    .col-md-6.order-md-2 {
        order: 1 !important;
    }
    
    .col-md-6.order-md-1 {
        order: 2 !important;
    }
}