@import url(../css/global.css);

/* SEGMENTOS */

.segmentos{
    background-color: #344151;
    height: 100%;
}

.navegacao{
    padding: 1rem 2rem 1rem 2rem;
}

.secao-segmentos{
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 1.5rem;
    width: 100%;
    padding: 0 2rem 4rem 2rem;
}

.card-segmento{
    display: block;
    background-color: #111827;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),
                0 4px 6px -4px rgba(0,0,0,0.1);
    border: 1px solid #344151;
    transition: all 0.3s ease;
    width: 100%;
    flex-wrap: wrap;
    border: 1px solid;
}

.card-segmento h3{
    font-size:2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
    margin: 1rem 0 1rem 1rem;
    text-align: left;
}

.civil, .mecanica, .outros{
    border-bottom: 1px solid;
    margin: 1rem;
    display: flex;
    padding-bottom: 1rem;
    height: fit-content;
    align-items: center;
}

.civil h2, .mecanica h2, .outros h2{
    align-content: center;
    text-align: center;
    height: 100%;
    width: 40vh;
    font-size: 2rem;
}

.civil ul, .mecanica ul, .outros ul{
    justify-content: center;
    width: 100%;
    padding:0.5rem 0 0.5rem 2rem;
    list-style-type: none;
    font-size: 1.5rem;

    /* min-height: fit-content; */
    align-items: flex-start;
    border-left: 1px solid;
}

.civil li, .mecanica li, .outros li{
    padding: 0.12rem;
}

@media (max-width: 1580px) {
    
    .navegacao{
        padding-left: 2rem;
    }

    .secao-segmentos{
        grid-template-columns: repeat(1, 1fr);
        display: grid;
        justify-content: center;
    }

    .card-segmento{
        width: 100%;
    }

    .card-segmento h1{
        font-size:2.5rem;
    }

    .civil h2, .mecanica h2, .outros h2{
        width: 27vh;
        text-align: left;
        font-size: 2rem;
    }

    .civil ul, .mecanica ul, .outros ul{
        width: 100%;
        font-size: 1.5rem;
    }
}


@media (max-width: 780px) {
    .navegacao{
        padding-left: 2rem;
    }

    .secao-segmentos{
        grid-template-columns: repeat(1, 1fr);
        display: grid;
        justify-content: center;
    }

    .card-segmento{
        width: 100%;
    }

    .civil h2, .mecanica h2, .outros h2{
        width: 27vh;
        text-align: left;
        font-size: 1.2rem;
    }

    .civil ul, .mecanica ul, .outros ul{
        width: 100%;
        font-size: 0.85rem;
    }
}

/* BANNER FINAL */
.banner-ctc{
    background: linear-gradient(to right, oklch(63.94% 0.151 219.57), oklch(38.16% 0.115 259.97));
    padding: 4rem;
    text-align: center;
}

.banner-ctc h2{
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.banner-ctc p{
    font-size: large;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.banner-ctc a{
    background: white;
    color: #0e0e10;
    font-weight: bold;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2rem;
}

.banner-ctc a:hover{
    background-color: oklch(63.94% 0.151 219.57);
    color: #f5f5f5;
    transition: all 0.2s ease-in-out;
}