/*--------------------------------------------------------------
# BLOCO 1 - MOVEIS.CSS - ESTILOS ESPECÍFICOS PARA PÁGINAS DE MÓVEIS
--------------------------------------------------------------*/

/* ============================================= */
/* SEÇÃO PRINCIPAL */
/* ============================================= */
.projetos-section {
    background: linear-gradient(135deg, #0c1527 0%, #1a202c 50%, #2d3748 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.projetos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.circle3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ============================================= */
/* CONTAINER PRINCIPAL */
/* ============================================= */
.container {
    position: relative;
    z-index: 2;
}

/* ============================================= */
/* TÍTULO DA SEÇÃO */
/* ============================================= */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 40px;
}

.section-badge {
    display: inline-block;
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.section-title h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-title p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================= */
/* CONTROLES DE FILTRO */
/* ============================================= */
.filter-controls {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.filter-controls .form-select {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.filter-controls .form-select:focus {
    background: rgba(255,255,255,0.2);
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
    color: white;
}

.filter-controls .form-select option {
    background: #1a202c;
    color: white;
}

/* ============================================= */
/* TOGGLE DE VISUALIZAÇÃO */
/* ============================================= */
.view-toggle {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.view-toggle .btn {
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.7);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin: 0 0.25rem;
}

.view-toggle .btn.active {
    background: #e74c3c;
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    transform: translateY(-2px);
}

.view-toggle .btn:hover:not(.active) {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* ============================================= */
/* GRID DE PROJETOS */
/* ============================================= */
.projetos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.projetos-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ============================================= */
/* ITEM DO PROJETO */
/* ============================================= */
.project-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.project-item:nth-child(2) { animation-delay: 0.1s; }
.project-item:nth-child(3) { animation-delay: 0.2s; }
.project-item:nth-child(4) { animation-delay: 0.3s; }
.project-item:nth-child(5) { animation-delay: 0.4s; }
.project-item:nth-child(6) { animation-delay: 0.5s; }
.project-item:nth-child(n+7) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================= */
/* CARD DO PROJETO */
/* ============================================= */
.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: rgba(231, 76, 60, 0.5);
}

/* ============================================= */
/* IMAGEM DO PROJETO */
/* ============================================= */
.project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* ============================================= */
/* OVERLAY DE AÇÕES */
/* ============================================= */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* ============================================= */
/* AÇÕES DO PROJETO */
/* ============================================= */
.project-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #1a202c;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

/* ============================================= */
/* ESTADO VAZIO */
/* ============================================= */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
    color: #e74c3c;
}

.empty-state h4 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.empty-state p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ============================================= */
/* BOTÃO DE CONTATO */
/* ============================================= */
.btn-contato {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-contato:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

/* ============================================= */
/* MODAL DE TELA CHEIA */
/* ============================================= */
#fullscreenModal .modal-content {
    background: #000;
    border: none;
}

#fullscreenModal .modal-body {
    padding: 0;
    min-height: 100vh;
}

#fullscreenImage {
    max-height: 100vh;
    max-width: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

/* ============================================= */
/* MODAL DE GALERIA */
/* ============================================= */
#galleryModal .modal-content {
    background: rgba(20, 30, 48, 0.98);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

#galleryModal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
}

#galleryModal .modal-title {
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ============================================= */
/* MODAL DE GALERIA - CORRIGIDO */
/* ============================================= */
#galleryModal .modal-content {
    background: rgba(20, 30, 48, 0.98);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

#galleryModal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
}

#galleryModal .modal-title {
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#galleryModal .carousel-inner {
    background: #000;
    border-radius: 8px;
    min-height: 500px;
    position: relative; /* ADICIONADO */
}

#galleryModal .carousel-item {
    display: none; /* ALTERADO - esconde todos por padrão */
    align-items: center;
    justify-content: center;
    min-height: 500px;
    position: absolute; /* ADICIONADO */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#galleryModal .carousel-item.active {
    display: flex; /* ADICIONADO - mostra apenas o ativo */
    position: relative; /* ADICIONADO */
}

#galleryModal .carousel-item img {
    max-height: 70vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
}
/* ============================================= */
/* THUMBNAILS DOS VÍDEOS - IGUAL À GALERIA */
/* ============================================= */

#videosModal .gallery-thumbnails-container {
    background: rgba(0,0,0,0.5);
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

#videosModal .gallery-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.5rem;
}

#videosModal .gallery-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.6;
    position: relative;
}

#videosModal .gallery-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

#videosModal .gallery-thumbnail.active {
    border-color: #e74c3c;
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.5);
}

#videosModal .gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ícone de play nos thumbnails de vídeo */
#videosModal .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    pointer-events: none;
    z-index: 2;
}

/* Duração do vídeo nos thumbnails */
#videosModal .video-duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    z-index: 2;
}

/* Responsivo para tablets */
@media (max-width: 992px) {
    #videosModal .gallery-thumbnails {
        gap: 10px;
    }
    
    #videosModal .gallery-thumbnail {
        width: 70px;
        height: 52px;
    }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    #videosModal .gallery-thumbnails-container {
        padding: 1rem;
    }
    
    #videosModal .gallery-thumbnails {
        gap: 8px;
    }
    
    #videosModal .gallery-thumbnail {
        width: 60px;
        height: 45px;
    }
    
    #videosModal .video-play-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
    
    #videosModal .video-duration {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
}

@media (max-width: 576px) {
    #videosModal .gallery-thumbnail {
        width: 55px;
        height: 40px;
    }
}

#galleryModal .carousel-item img {
    max-height: 70vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

#galleryModal .carousel-control-prev,
#galleryModal .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    border-radius: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#galleryModal .carousel-control-prev {
    left: 20px;
}

#galleryModal .carousel-control-next {
    right: 20px;
}

#galleryModal .carousel-control-prev:hover,
#galleryModal .carousel-control-next:hover {
    opacity: 1;
    background: #e74c3c;
}

/* ============================================= */
/* THUMBNAILS DA GALERIA */
/* ============================================= */
.gallery-thumbnails-container {
    background: rgba(0,0,0,0.5);
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.5rem;
}

.gallery-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.6;
}

.gallery-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumbnail.active {
    border-color: #e74c3c;
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.5);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================= */
/* RESPONSIVO - TABLETS */
/* ============================================= */
@media (max-width: 1200px) {
    .projetos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .projetos-grid.grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .projetos-grid,
    .projetos-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .filter-controls {
        padding: 1.5rem;
    }
    
    .filter-controls .row {
        gap: 1rem;
    }
    
    .filter-controls .col-md-6 {
        text-align: center;
    }
}

/* ============================================= */
/* RESPONSIVO - MOBILE */
/* ============================================= */
@media (max-width: 768px) {
    .projetos-section {
        padding: 3rem 0;
    }
    
    .projetos-grid,
    .projetos-grid.grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .filter-controls {
        padding: 1rem;
        text-align: center;
    }
    
    .filter-controls .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .view-toggle {
        display: none !important;
    }
    
    .filter-controls .col-md-6.text-md-end {
        display: none;
    }
    
    .project-actions {
        gap: 0.75rem;
    }
    
    .action-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .gallery-thumbnails {
        gap: 8px;
    }
    
    .gallery-thumbnail {
        width: 60px;
        height: 45px;
    }
    
    #galleryModal .carousel-control-prev,
    #galleryModal .carousel-control-next {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .projetos-section {
        padding: 2rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .filter-controls {
        margin-bottom: 1.5rem;
    }
    
    .projetos-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .project-actions {
        gap: 0.5rem;
    }
    
    .action-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .empty-state {
        padding: 2rem 1rem;
    }
    
    .empty-state i {
        font-size: 3rem;
    }
    
    .btn-contato {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    #galleryModal .carousel-item {
        min-height: 300px;
    }
    
    .gallery-thumbnails-container {
        padding: 1rem;
    }
}

/* ============================================= */
/* ANIMAÇÕES ADICIONAIS */
/* ============================================= */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ============================================= */
/* SCROLLBAR PERSONALIZADA */
/* ============================================= */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(231, 76, 60, 0.6);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(231, 76, 60, 0.8);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(231, 76, 60, 0.6) rgba(255,255,255,0.1);
}

/* ============================================= */
/* BADGES DE CONTADORES */
/* ============================================= */
.project-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-counter {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.badge-images {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(41, 128, 185, 0.9));
}

.badge-videos {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9));
}

/* ============================================= */
/* THUMBNAILS COM BADGES */
/* ============================================= */
.thumb-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: rgba(46, 204, 113, 0.95);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* ============================================= */
/* VÍDEOS */
/* ============================================= */
.video-container {
    width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 8px;
}

.video-player {
    max-height: 70vh;
    width: auto;
    max-width: 100%;
    border-radius: 8px;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: rgba(231, 76, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    pointer-events: none;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============================================= */
/* MODAL DE VÍDEOS */
/* ============================================= */

#videosModal .modal-content {
    background: rgba(20, 30, 48, 0.98);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

#videosModal .modal-header {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
}

#videosModal .modal-title {
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#videosModal .carousel-inner {
    background: #000;
    border-radius: 8px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

#videosModal .carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

#videosModal .carousel-control-prev,
#videosModal .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    border-radius: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#videosModal .carousel-control-prev {
    left: 20px;
}

#videosModal .carousel-control-next {
    right: 20px;
}

#videosModal .carousel-control-prev:hover,
#videosModal .carousel-control-next:hover {
    opacity: 1;
    background: #e74c3c;
}

/* ============================================= */
/* RESPONSIVO - BADGES E VÍDEOS */
/* ============================================= */
@media (max-width: 768px) {
    .project-badges {
        top: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .badge-counter {
        padding: 4px 10px;
        font-size: 0.75rem;
        gap: 4px;
    }
    
    .video-play-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .video-duration {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    #videosModal .carousel-item {
        min-height: 300px;
    }
    
    #videosModal .carousel-control-prev,
    #videosModal .carousel-control-next {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .project-badges {
        top: 8px;
        right: 8px;
    }
    
    .badge-counter {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    .badge-counter i {
        font-size: 0.8rem;
    }
}

/*--------------------------------------------------------------
# REMOVER CONTROLES DE ÁUDIO DOS VÍDEOS
--------------------------------------------------------------*/

/* Remove botão de mute e controle de volume */
video::-webkit-media-controls-mute-button {
    display: none !important;
}

video::-webkit-media-controls-volume-slider {
    display: none !important;
}

video::-webkit-media-controls-volume-slider-container {
    display: none !important;
}

/* Firefox */
video::-moz-media-controls-mute-button {
    display: none !important;
}

video::-moz-media-controls-volume-slider {
    display: none !important;
}

/* Garantir que o vídeo permaneça mutado */
video {
    pointer-events: auto;
}

/* Esconder completamente qualquer controle de áudio */
.video-player::-webkit-media-controls-mute-button,
.video-player::-webkit-media-controls-volume-slider {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
}