/* Botão Play na Galeria */
.btn-play-slideshow {
    background: transparent;
    border: none;
    color: #9e5b03; /* Verde moderno e vibrante */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.btn-play-slideshow:hover {
    color: #f5f238;
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(46, 204, 113, 0.6);
}

/* Overlay do Slideshow (A tela escura) */
.slideshow-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100000; /* Fica acima de tudo no site */
    display: none;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.slideshow-overlay.active {
    display: flex;
    opacity: 1;
}

/* Área da Imagem */
.slideshow-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}
.slideshow-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    animation: fadeInSlide 0.5s ease; /* Animação ao trocar de foto */
}
@keyframes fadeInSlide {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* Controles Base */
.slideshow-controls-top, .slideshow-controls-bottom {
    padding: 20px 40px;
    display: flex;
    align-items: center;
}
.slideshow-controls-top {
    justify-content: space-between;
}
.slideshow-controls-bottom {
    justify-content: center;
    gap: 30px;
}

.slideshow-counter {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 30px;
}

.slideshow-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}
.slideshow-btn .material-icons {
    font-size: 35px;
}
.slideshow-btn:hover {
    color: #d35400; /* Cor Laranja do seu site */
    transform: scale(1.1);
}

/* Botãozão Play/Pause Central */
.main-play-btn .material-icons {
    font-size: 55px;
    color: #d35400;
}
.main-play-btn:hover .material-icons {
    color: #e67e22;
    text-shadow: 0 0 15px rgba(211, 84, 0, 0.6);
}

/* Responsividade Celular */
@media (max-width: 768px) {
    .btn-play-slideshow .material-icons { font-size: 26px; }
    .slideshow-controls-top, .slideshow-controls-bottom { padding: 15px; }
    .slideshow-btn .material-icons { font-size: 30px; }
    .main-play-btn .material-icons { font-size: 45px; }
    .slideshow-controls-bottom { padding-bottom: 30px; gap: 20px; }
}