/* Modern Carousel Galéria */
.gallery-carousel-section {
    background-color: #000;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-title {
    color: #7DFF91;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.carousel-slide {
    position: relative;
    min-width: calc(33.333% - 14px);
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    box-shadow: 0 5px 20px rgba(125, 255, 145, 0.15);
    transition: all 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(125, 255, 145, 0.35);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-slide:hover img {
    transform: scale(1.1);
}

.carousel-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.carousel-slide:hover .carousel-zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

.carousel-zoom-icon i {
    color: #7DFF91;
    font-size: 24px;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    background: rgba(125, 255, 145, 0.2);
    border: 2px solid #7DFF91;
    color: #7DFF91;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 20px;
}

.carousel-btn:hover {
    background: #7DFF91;
    color: #000;
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(125, 255, 145, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #7DFF91;
    width: 40px;
    border-radius: 6px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-image {
    display: block;
    max-width: 95%;
    max-height: 92vh;
    width: auto;
    height: auto;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(125, 255, 145, 0.3);
    animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 45px;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.lightbox-close:hover {
    color: #7DFF91;
    background: rgba(125, 255, 145, 0.1);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(125, 255, 145, 0.2);
    border: 2px solid #7DFF91;
    color: #7DFF91;
    font-size: 24px;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #7DFF91;
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid #7DFF91;
    z-index: 10000;
}
