@import url('https://fonts.cdnfonts.com/css/pp-neue-montreal');
@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..31,100..900&display=swap');


.h1 {
    text-align: center; /* Problema! */
    color: #fff;
    font-size: 5rem;
    font-weight: 500;
    line-height: 1;
}

h1 span {
    font-family: "PP Editorial Old", "PP Neue Montreal";
    font-weight: 500;
    font-style: italic;
    -webkit-font-smoothing: antialiased;
}

.header {
    width: 100%;
    height: 100%;
    padding-top: 25svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

.hero-img {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100svh;
    overflow: hidden;
    z-index: -1;
}


.cta {
    position: absolute;
    left: 50%;
    bottom: 3em;
    transform: translateX(-50%);
    width: 50%;
    height: 60px;
    padding: 0.5rem;
    display: flex;
    justify-content: flex-end;
    background-color: #fff;
    border-radius: 4rem;
    will-change: transform;
    cursor: pointer;
}

.cta-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-label p {
    color: #000;
}

.cta-icon {
    position: relative;
    height: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #303030;
    border-radius: 60px;
    will-change: transform;
}




.cta {
    transform: translateX(-50%) scale(0);
}

.cta-icon {
    transform: scale(0);
}


.line,
.cta-label{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.line h1,
.line p,
.cta-label p{
    position: relative;
    transform: translateY(120%);
    will-change: transform;
}

.hero-img{
    transform: scale(1.5);
    will-change: transform;
}



@media (max-width: 900px) {
    .h1 {
        font-size: 2.5rem;
    }

    .cta {
        width: 90%;
    }
}



@media (max-width: 500px) {
    .cta-label {
        width: 65vw;
    }

    .under_text {
        font-size: 1.8rem;
        text-align: center;
    }
}





.intro {
    display: flex;
    min-height: 80vh;
    padding: 2rem;
    background-image: radial-gradient(122.23% 100% at 0 100%,#c0e24e 0,#add32f 24.76%,#198188 55.66%,#0a5e63 100%);
    color: #fff;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    overflow: visible;
}

.intro h1 {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.sec_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
    padding: 2rem;
}

.card {
    width: 300px;
    height: 300px;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    border-radius: 12px;
    padding: 1rem;
}   

.card_icons {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    color: #1B7A80;
}

.card_button_container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.card_button {
    background-color: #1B7A80;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 1rem;
    cursor: pointer;
    width: 100%;
}

.intro_title { 
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card_text {
    color: #000;
    font-family: "PP Neue Montreal", sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

.sec_cards_button_box{
    background-color: #ffffff00;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.sec_cards_button {
    background-color: #ffffff;
    color: #fff;
    padding: 0.7rem 0.7rem;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 550px;
    border-radius: 48px;
}

.sec_cards_button h1 {
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    color: #000;
}

.sec_icons {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 50px;
    height: 50px; */
    padding: 0.2rem;
    color: #ffffff;
    background-color: #1B7A80;
    border-radius: 40px;
    font-size: 2.4rem;
}

@media (max-width: 500px) {

    .sec_cards {
        padding: 3rem 0rem;
    }

    .sec_icons {
        width: 30px;
        height: 30px;
        font-size: 1.8rem;
    }

    .sec_cards_button h1 {
        font-size: 1rem;
    }

    .intro h1 {
        margin-bottom: 4.5rem;
    }
}

@media (max-width: 1000px) {

    .intro h1 {
        width: 100%;
    }
}
