@import url('../../resources/css/app.css');
@import url('../../resources/css/reset.css');
@import url('_global.css');


.img {
    position: relative;
    width: 96%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-sec{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6%;
    width: 100%;
}

.img-overlay {
    background: url('/img/img-techops.png') no-repeat center center/cover;
    filter: brightness(0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.img h1 {
    z-index: 1;
    color: white;
    font-size: 4.5rem;
    text-align: center;
}

.container-techops{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.vector-img{
    width: 620px;
}

.text-techops{
    display: flex;
    flex-direction: column;

    justify-content: space-evenly;
    width: 40%;

}

.text-techops h1{
    font-size: 7rem;
}

.text-techops p{
    width: 90%;
    font-size: 1.7rem;
    padding: 2vh 0;
}

.text-techops span{
    color: #1E594B;
}


.btn-techops {
    --color: #000000;
    font-family: inherit;
    display: inline-block;
    width: 9em;
    height: 3.4em;
    line-height: 2.5em;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid #1E594B;
    transition: color 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    color: #fff;

    background-color: #1E594B;
}

.btn-techops:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: black;
    height: 150px;
    width: 200px;
    border-radius: 50%;
}

.btn-techops:hover {
    color: #fff;
    border: 2px solid #000000;
}

.btn-techops:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btn-techops:hover:before {
    top: -30px;
    left: -30px;
}

.btn-techops:active:before {
    background: #000000;
    transition: background 0s;
}


/* SECTION 2  */


.container2-techops h1{
    text-align: center;
    font-size: 5rem;
    padding: 5%;
    color: black;
}

.container2-techops span{
    color: #1E594B;
}

.container-cards-techops{
    background-color: #fff;
    min-height: 110vh;
}

.cards-techops{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3% !important;
}

.cardz-techops{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3%;
    padding: 3% 0;

}

.light-card{
    background: linear-gradient(#1E594B, #10271f);
    border-radius: 15px;
}

.dark-card{
    background: linear-gradient(#1E594B, #10271f);
    border-radius: 15px;
}

.light-card, .dark-card{
    width: 17%;
    height: 33vh;
    margin: 2.5% 0;
}


.text-card{
    padding: 10%;
    color: #fff;

}

.text-card h3{
    font-size: 1.7rem;
}

.text-card p{
    margin-top: 5%;
    font-size: 1.1rem;
}

.hiperlink-techops a{
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

.hiperlink-techops{
    padding-top: 10%;
    color: #fff;
    text-decoration: none;
}

.hiperlink-techops a:hover{
    color: rgb(202, 202, 202);
}

@media (max-width: 1366px){
    .img{
        height: 70vh;
    }

    .about-techops{
        height: 100vh;
        display: flex;
        align-items: center;
    }

    .vector-img{
        width: 38%;
    }

    .container-cards-techops h1{
        font-size: 4rem;
    }

    .light-card, .dark-card{
        width: 20%;
        min-height: 45vh !important;
    }

    p{
        text-align: justify !important;
    }

    
  .text-techops h1{
    font-size: 6rem;
  }

  .text-techops p{
    font-size: 1.4rem;
  }

    .btn-techops{
    height: 7vh;
    margin-top: 3%;
  }
}

@media (max-width: 1024px){
    .vector-img{
        width: 28%;
    }
}

@media (max-width: 768px){

    .vector-img{
        display: none;
    }

    .container-techops{
        width: 100% !important;
    }

    .text-techops{
        width: 80%;
    }

    .text-techops > h1{
        font-size: 5rem !important;
    }

    .light-card, .dark-card{
        width: 60%;
        height: 30vh !important;
    }

    .cardz-techops{
        padding-top: 0;
        flex-wrap: wrap;
    }

    .cardz-techops, .cards-techops{
        gap: 10%;
    }

}

@media(max-width: 425px){

    .about-techops{
        height: 65vh;
    }

    .container-techops{
        display: flex;
        align-items: center;
        flex-direction: column;

        text-align: center;

        height: 60vh;
    }

    .text-techops{
        display: flex;
        align-items: center;
        width: 100%;
    }

    .container-techops h1{
        font-size: 3rem;
        width: 100%;
    }

    .container-techops p{
        width: 80%;

        font-size: 1.3rem;
    }

    .btn-techops{

        font-size: 0.8rem;
    }

    .vector-img{
        display: none;
    }

}

@media (max-width: 374px){
    .img > h1{
        font-size: 4rem;
    }

    .text-techops > h1{
        font-size: 4.5rem !important;
    }
}


