.services_section {
    margin-left: 18px;
    margin-right: 18px;
    margin-top: 100px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    width: 85%;
}

.services_section .title_main {
    margin-bottom: 50px;
    margin-top: 50px;
    font-size: 36px;
    color: var(--orange-1);
}

.services_section .cards_area {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 20px;
}

/* .services_section img {
    position: absolute;
    top: -120px;
    right: 0;
    width: 350px;
} */

.services_section .sistems_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    color: var(--gray-2);
    border: 1px var(--blue-2) dashed;
    border-radius: 10px;
    transition: all 0.8s ease-in-out;
    opacity: 0;
    transform: translateY(40px);
    transform: opacity 0.6s ease-out, transform 0.2s ease-out;
}

.sistems_card.visible {
    opacity: 1;
    transform: translateY(0);
}

.services_section .sistems_card:hover {
    background-color: var(--gray-1);
}

.services_section .sistems_card h1 {
    width: 90%;
    margin: 10px;
    color: var(--orange-1);
}

.services_section .sistems_card h4 {
    font-family: 'Braah';
    font-size: 14px;
    color: var(--gray-2);
    margin: 10px 20px;
    text-align: center;
}

.services_section .sistems_card h1::before {
    content: url('../images/icon_title.png');
    display: inline-block;
    width: 13px;
    height: auto;
    margin-right: 9px;
    margin-top: 20px;
}

.services_section .sistems_card p {
    font-family: 'Comfortaa';
    font-size: 14px;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: lighter;
    text-align: center;
    cursor: default;
}

.services_section .sistems_card button {
    font-family: 'Comfortaa';
    font-size: 14px;
    color: var(--white);
    width: 134px;
    height: 39px;
    margin: 18px;
    border-radius: 20px;
    border: none;
    padding: 0;
    background: linear-gradient(to right, #E36600, #E32200);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.service_card .cards_area .last_card{
    background-image: url('../images/torre-internet.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.services {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.services .service_card_area {
    display: flex;
    background: url('../images/fiber_background-2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.services .service_card {
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services .dev-sis {
    height: auto;
    background-color: black;
}

.services .dev-sis h3 {
    font-size: 36px;
    width: 85%;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
}

.services .dev-sis>div {
    display: flex;
    width: 85%;
    gap: 20px;
    text-align: left;
}

.services .dev-sis>div p {
    flex: 1;
}

.services .dev-sis>div img {
    width: 450px;
    flex: 1;
    margin-bottom: 30px;
}

.services .consultoria{
    background-color: var(--gray-1);
}

.services .consultoria>div{
    flex-direction: row-reverse;
}
.services .consultoria>div p{
    color: var(--blue-2);
}
.services .consultoria>div p span{
    font-weight: bolder;
    color: var(--gray-2);
}

.service_card_area .second_card h1 {
    color: var(--white);
    font-size: 36px;
    margin-top: 30px;
    width: 85%;
    text-align: left;
}

.second_card .title {
    width: 85%;
    background: rgba(0, 0, 0, 0.8);
}

.second_card .title h2 {
    font-family: 'Braah';
    margin: 30px;
    font-size: 36px;
    color: var(--white);
    letter-spacing: 5px;
}

.second_card .title span {
    font-family: 'Braah';
    font-size: 45px;
    background-image: linear-gradient(to right, #E36600, #ED2600);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.second_card .area-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.area-content .content-text {
    border: 2px solid var(--orange-1);
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.second_card .content-text span {
    font-family: 'Braah';
    font-size: 75px;
    line-height: 105%;
    background-image: linear-gradient(to right, #E36600, #ED2600);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.second_card .separador span {
    font-family: 'Braah';
    font-size: 75px;
    background-image: linear-gradient(to right, #E36600, #ED2600);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services .service_card p {
    font-size: 14px;
    color: var(--white);
}


@media (max-width: 601px) {
    .services_section {
        margin-left: 18px;
        margin-right: 18px;
        margin-top: 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .services_section>h1 {
        margin-bottom: 30px;
    }

    .services_section img {
        width: 100px;
    }


    .services_section .services div {
        margin-bottom: 15px;
    }

    .services_section .cards_area {
        display: flex;
        flex-direction: column;
    }

    .services_section .services .service_card h3 {
        font-size: 20px;
    }

    .second_card .title {
        width: 90%;
        background: rgba(0, 0, 0, 0.8);
    }

    .second_card .title h2 {
        font-family: 'Braah';
        margin: 30px;
        font-size: 24px;
        color: var(--white);
        letter-spacing: 5px;
    }

    .second_card .title span {
        font-family: 'Braah';
        font-size: 45px;
        background-image: linear-gradient(to right, #E36600, #ED2600);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .second_card .area-content {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .area-content .content-text {
        border: 2px solid var(--orange-1);
        padding: 20px;
        border-radius: 10px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .service_card_area .second_card h1 {
        text-align: center;
    }

    .second_card .separador {
        transform: rotate(90deg);
    }
    .services_section .sistems_card {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: auto;
        border: 1px var(--blue-2) dashed;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .services_section .sistems_card:hover {
        background-color: var(--gray-1);
    }

    .services_section .sistems_card h1 {
        width: 90%;
        margin: 10px;
    }

    .services_section .sistems_card h1::before {
        content: url('../images/icon_title.png');
        display: inline-block;
        width: 13px;
        height: auto;
        margin-right: 9px;
        margin-top: 15px;
    }

    .services_section .sistems_card p {
        font-family: 'Comfortaa';
        font-size: 12px;
        margin-left: 10px;
        margin-right: 10px;
        font-weight: lighter;
        text-align: center;
    }

    .services_section .sistems_card button {
        font-family: 'Comfortaa';
        font-size: 12px;
        color: var(--white);
        width: 134px;
        height: 39px;
        /* margin: 18px; */
        border-radius: 20px;
        border: none;
        padding: 0;
        background: linear-gradient(to right, #E36600, #E32200);
        box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    }

    .services .service_card {

        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services .dev-sis {
        height: auto;
    }

    .services .dev-sis h3 {
        font-size: 36px;
        width: 85%;
        text-align: center;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .services .dev-sis>div {
        display: flex;
        flex-direction: column;
        width: 85%;
        gap: 20px;
        text-align: center;
    }

    .services .dev-sis>div p {
        flex: 1;
    }

    .services .dev-sis>div img {
        width: 100%;
        flex: 1;
    }
    .services .consultoria{
        background-color: var(--gray-1);
    }
}
