.container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-image: url('/img/svg/triangle-black.svg');
    background-repeat: no-repeat;
    background-position: calc(50% + 725px) center ;
    background-position-y: bottom;
    background-attachment: local;
    background-size: 475px;
}
.content-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: -1153px;
    margin-bottom: 30px;
    position: relative;
}
.default-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1100px;
    position: relative;
    padding-bottom: 30px;
    margin-top: 80px;
    padding: 0 20px;
}
.title-web {
    align-self: center;
    font-size: 3rem;
    color: var(--color-menu-hover);
    position: absolute;
    margin: 400px 790px 0 0;
    line-height: 100%;
    text-align: left;
}
.title-web span {
    color: var(--color-black);
}
.content-text > img {
    margin: 348px 0 0 -117px;
}
.default-text .title-mobile {
    display: none;
    position: relative;
    text-align: center;
    font-size: 3rem;
    margin-top: -50px;
    margin-bottom: 10px;
}

/* BOTÕES DE CONTATO (WHATSAPP / E-MAIL) */

.botoes-contato {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.botoes-contato a {
    text-decoration: none;
}

.botoes-contato .btn-green {
    display: flex;
    align-items: center;
    gap: 5px;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    font-family: var(--font-family-bold);
    font-size: 1.3rem;
}

.botoes-contato .btn-green img {
    width: 28px;
    height: auto;
    display: inline-block;
    transform: translateX(5px);
    margin: 0;
}

.botoes-contato .btn-green:hover {
    background-color: var(--color-green2);
}

.botoes-contato .btn-red {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    font-family: var(--font-family-bold);
    font-size: 1.3rem;
}

.botoes-contato .btn-red:hover {
    background-color: var(--color-red-03);
}

@media (max-width: 992px) {
    .default-text .title-mobile {
        display: block;
    }
    .title-web {
        display: none;
    }
}
@media (max-width: 768px) {
    .content-text > img {
        width: 400px;
        margin: 352px 0 0 -90px;
    }

    .botoes-contato {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .botoes-contato .btn-green,
    .botoes-contato .btn-red {
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
}