/* Rede Conectar Page Styles */
.rede-conectar-page {
    min-height: 100vh;
    background: white;
    position: relative;
    /* overflow-x: hidden; */
}

/* Hero Section */
.rede-hero {
    padding: 150px 15px 45px;
    max-width: 1080px;
    margin: 0 auto;
}

.rede-hero::before {
    content: '';
    position: absolute;
    top: -37.5px;
    left: -150px;
    width: 422px;
    height: 431px;
    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;
    pointer-events: none;
}

.rede-hero::after {
    content: '';
    position: absolute;
    bottom: -75px;
    right: -100px;
    width: 422px;
    height: 431px;
    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;
    pointer-events: none;
}

.rede-hero__title {
    font-family: 'Changa', sans-serif;
    font-size: 54px;
    font-weight: 400;
    color: #1FA0D3;
    text-align: center;
    margin: 0 auto 45px;
    max-width: 1080px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

/* Content Section */
.rede-content {
    padding: 0 15px 45px;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

.rede-content__text {
    max-width: 865px;
    margin: 0 auto;
    font-family: 'Afacad', sans-serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.24;
    color: #005C74;
    text-align: left;
}

.rede-content__text strong {
    font-weight: 700;
}

.rede-content__text p {
    margin: 0 0 1.125em 0;
}

.rede-content__text p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .rede-hero {
        padding: 120px 15px 45px;
    }

    .rede-hero__title {
        font-size: 36px;
    }

    .rede-content__text {
        font-size: 18px;
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    /* Esconder elementos auxiliares no mobile */
    .rede-hero::before,
    .rede-hero::after {
        display: none;
    }

    .rede-hero {
        padding: 100px 15px 45px;
    }

    .rede-hero__title {
        font-size: 27px;
    }

    .rede-content__text {
        font-size: 14px;
        line-height: 1.35;
    }
}

