/* ==== SLIDESHOW STYLES - TUDO DA MONA ====*/

.slideshow-section {
    position: relative;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, var(--surface) 0%, var(--primary-light) 100%);
}

.slideshow-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--surface) 100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 3rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Slide Info */
.slide-info {
    flex: 1;
    color: var(--gray-900);
    z-index: 2;
}

.slide-badge {
    display: inline-block;
    background: var(--primary);
    color: #222;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: slideInFromLeft 1s ease 0.5s both;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    animation: slideInFromLeft 1s ease 0.7s both;
}

.slide-title .highlight {
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary), #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInFromLeft 1s ease 0.9s both;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary), #f472b6);
    color: #222;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: slideInFromLeft 1s ease 1.1s both;
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
}

.slide-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.6);
}

.slide-btn i {
    transition: transform 0.3s ease;
}

.slide-btn:hover i {
    transform: translateX(5px);
}

/* Slide Image */
.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.slide-image img {
    max-width: 400px;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: slideInFromRight 1s ease 0.8s both;
}

/* Navegação */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    color: var(--gray-800);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #222;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(232, 108, 174, 0.3);
}

/* Indicadores */
.slideshow-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.3);
}

.indicator:hover {
    border-color: var(--primary);
    transform: scale(1.2);
}

/* Progress Bar */
.slideshow-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #f472b6);
    width: 0;
    transition: width 0.1s ease;
}

/* Animações */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .slideshow-container {
        height: 400px;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .slide-info {
        order: 2;
    }
    
    .slide-image {
        order: 1;
    }
    
    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .slide-image img {
        max-width: 250px;
        max-height: 200px;
    }
    
    .slideshow-nav {
        padding: 0 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 350px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .slide-image img {
        max-width: 200px;
        max-height: 150px;
    }
    
    .slideshow-indicators {
        bottom: 1rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
