.age-online {
    font-family: 'Inter', sans-serif;
    padding: 80px 80px 20px 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    min-width: 416px;
    background-color: transparent;
}

.age-online__container {
    width: 100%;        
    max-width: 1180px;
    margin: 0 auto;
}

.age-online__card {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    border-radius: 28px;
    padding: 5rem 4rem 4rem;
    text-align: center;
    position: relative; 
    overflow: hidden;
    box-shadow: 0px 3px 15px #b8b8b812;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    max-width: 930px
}

.age-online__title {
    font-family: 'Inter';
    font-style: normal;
    font-size: clamp(40px, 8vw, 60px);
    width: 11em;
    line-height: 115%;

    font-style: normal;
    font-weight: 500;

    color: #07314E;
    font-stretch: 100;

    margin-bottom: 20px;
}

.age-online__description {
    font-family: 'Inter';
    color: #004778;
    font-size: 24px;
    max-width: 700px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    margin: 0 auto 2.5rem;
    text-align: justify;
}

.age-online__actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.age-online__mockup {
    width: 100%;
    max-width: 820px;
    perspective: 1000px;
    margin: 0 auto;
    background-color: transparent;
}

.age-online__mockup img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: rgba(73, 73, 73, 0.308) 0px 0px 10px inline;
}


/* Responsividade */
@media (max-width: 980px) {
    .age-online {
        padding: 60px 20px;
    }
    
    .age-online__card {
        padding: 4rem 2.5rem 3rem;
    }
}

@media (max-width: 768px) {
    .age-online {
        padding: 4rem 1rem 1rem;
    }

    .age-online__card {
        border-radius: 18px;
        width: 100%;
    }

    .age-online__title{
        font-size: 36px;
        line-height: 100%;
        text-wrap: wrap;
        width: fit-content;
    }

    .age-online__description{
        font-size: 24px;
        line-height: 24px;
        text-align: start;
    }

    .age-online__actions {
        margin-bottom: 3rem;
    }

    .age-online__btn-primary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .age-online__mockup img {
        border-radius: 12px;
    }
}

    