/* ================= ANIMAÇÃO ================= */
.typing::after {
    content: "|";
    margin-left: 4px;
    animation: blink 1s infinite;
    color: #02306D;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

header{
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 1%;
    margin-bottom: 8%;
}

/* ================== IMAGENS ================== */
.logo-azul-techcert{
    width: 200px;
}

/* ================ HERO CONTENT =============== */
.hero {
    display: flex;
    flex-direction: column;
    gap: 150px;
    padding: 40px 0 ;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ================= TEXTOS ================= */
.hero-texts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1300px;
}

.hero-texts > h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 5vw, 70px);
    color: #02306D;
    width: 100%;
}

.hero-texts > h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 3vw, 22px);
    color: #02306D;
    width: 100%;
}

/* ================= BOTÕES ================= */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-buttons button {
    width: 270px;
    max-width: 100%;
    height: 60px;
    font-size: 20px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out 0.3s;
}

.button-one {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    color: #F1B833;
    border: 1px solid #F1B833;
    background-color: transparent;
}

.button-one img {
    width: 25px;
}

.button-one:hover {
    cursor: pointer;
}

.button-two {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    color: #F2F6FF;
    background-color: #F1B833;
    border: none;
}

.button-two:hover {
    background-color: #f3c14e;
    cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero {
        gap: 80px;
        padding: 40px 0 ;
    }

    .hero-texts {
        gap: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .hero-buttons button {
        width: 100%;
        height: 55px;
        font-size: 18px;
    }

    .logo-azul-techcert{
        width: 150px;
    }
}