.product-slider-section {
    width: 100%;
    height: 90vh;
    font-family: 'SF Pro Display', sans-serif;
    overflow: hidden;
}

.slide {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide-background {
    width: 55%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.camada {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Initially hidden for animation */
}

@font-face {
    font-family: 'Stretch Pro';
    src: url('../fonts/StretchPro.otf') format('opentype');
}

.slide-content-linha {
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    text-align: center;
}

.content-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.slide-title {
    font-family: 'Stretch Pro', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.slide-subtitle {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
}

.slide-button {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.mobile-only {
    display: none;
}

#camada1-1, #camada2-1, #camada3-1 { z-index: 1; }
#camada1-2, #camada2-2, #camada3-2 { z-index: 2; }
#camada1-3, #camada2-3, #camada3-3 { z-index: 3; }
