/* Saiba Mais Page Styles */
.saiba-mais-page {
    min-height: 100vh;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.saiba-hero {
    padding: 320px 0 80px;
    background: white;
    position: relative;
}

.saiba-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    max-width: 1041px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Changa', sans-serif;
    font-size: 36px;
    line-height: 47px;
    color: #93C01F;
    margin: 0;
    font-weight: 400;

    position: relative;
    left: 90px;
    top: -45px;
    z-index: 2;
    text-align: left;
}

.hero-title .title-bold {
    font-weight: 700;
}

/* Main Content Section */
.saiba-content {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.saiba-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;

    position: relative;
    z-index: 2;
}

/* Mobile: Alternar texto e imagem */
@media (max-width: 768px) {
    .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .text-content {
        order: 1;
    }
    
    .images-content {
        order: 2;
    }
    
    /* Esconder galeria desktop no mobile */
    .desktop-gallery {
        display: none;
    }
    
    /* Esconder elementos auxiliares no mobile */
    .saiba-content::before,
    .saiba-content::after {
        display: none;
    }
    
    /* Criar seções alternadas no mobile */
    .content-text {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .content-text p {
        margin: 0;
    }
    
    /* Separar o texto em blocos para alternar com imagens */
    .text-block-1 {
        order: 1;
    }
    
    .image-block-1 {
        order: 2;
    }
    
    .text-block-2 {
        order: 3;
    }
    
    .image-block-2 {
        order: 4;
    }
    
    .text-block-3 {
        order: 5;
    }
    
    .image-block-3 {
        order: 6;
    }
}

/* Desktop: Esconder imagens alternadas e mostrar galeria */
@media (min-width: 769px) {
    .image-block-1,
    .image-block-2,
    .image-block-3 {
        display: none;
    }
    
    .desktop-gallery {
        display: block;
    }
}

.text-content {
    max-width: 727px;
}

.content-text {
    font-family: 'Afacad', sans-serif;
    font-size: 32px;
    line-height: 32.6px;
    color: #005C74;
    font-weight: 400;
    z-index: 1;
}

.content-text p {
    margin: 0 0 24px 0;
}

.content-text strong {
    font-weight: 700;
}

.images-content {
    position: relative;
    z-index: 1;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 349px;
    object-fit: cover;
    display: block;
}

/* Decorative Elements */
.saiba-content::before {
    content: '';
    position: absolute;
    top: -555px;
    left: -200px;
    width: 563px;
    height: 575px;
    background-image: url('../../image/support/circle-artesaos-one-green-left_2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.saiba-content::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -100px;
    width: 563px;
    height: 575px;
    background-image: url('../../image/support/circle-artesaos-one-green-left_2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 38px;
        left: 0;
        top: 0;
    }
    
    .content-text {
        font-size: 28px;
        line-height: 34px;
    }
}

@media (max-width: 768px) {
    .saiba-hero {
        padding: 180px 0 60px;
    }
    
    .saiba-content {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .content-text {
        font-size: 24px;
        line-height: 30px;
    }
    
    .gallery-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .saiba-hero {
        padding: 180px 0 0px;
    }
    
    .saiba-content {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .content-text {
        font-size: 20px;
        line-height: 26px;
    }
    
    .gallery-image {
        height: 200px;
    }
}