* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

.back_one {
    width: 100%;
}

.back_inicial {
    position: relative;
    width: 100%;
}

picture img {
    width: 100%;
    display: block;
    height: auto;
}

.perfil {
    position: absolute;
    width: 150px;
    height: auto;
    display: flex;
    top: 18%;
    left: 45%;
    transform: translate(-50%, -50%);
}

.container-pai {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    line-height: 22px;
    text-align: center;
}

h1 {
    font-family: "Italianno", cursive;
    font-size: 28px;
    font-weight: 400;
    color: rgba(68, 28, 28, 0.9);
}

.container-pai p {
    font-family:  "Nunito Sans", sans-serif;
    font-size: 13px;
    color: rgba(68, 28, 28, 0.75);
    line-height: 1.2;
    width: 100%;
    text-align: center;
}

.topicos_container {
    background-color: aqua;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0 auto;
}

.topicos_links {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
    position: absolute;
    top: 49%;
}

.orcamento,
.portfolio,
.instagram,
.tiktok {
    background-color: #441c1c;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 14px;
    text-decoration: none;
}

.orcamento img {
    width: 19px;
}

.orcamento p,
.portfolio p,
.instagram p,
.tiktok p {
    font-family: "Italiana", sans-serif;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 400;
    width: auto;
    text-align: center;
}

.portfolio img,
.instagram img,
.tiktok img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.direitos {
    position: absolute;
    display: flex;
    top: 95%;
    font-family:  "Nunito Sans", sans-serif;
    font-size: 12px;
    color: rgba(68, 28, 28, 0.95);
}

/* ========== TABLET ========== */

@media (min-width: 768px) {

    .perfil{
        position: absolute;
        top: 10%;
        left: 49%;
    }

    .back_inicial{
        width: 100%;
        height: auto;
    }

    .container-pai {
        top: 18%;
        width: 50%;
        left: 50%;
    }

    h1 {
        font-size: 2.2rem;
    }

    .container-pai p {
        font-size: 1rem;
    }

    .topicos_links {
        max-width: 480px;
    }

    .orcamento p,
    .portfolio p,
    .instagram p,
    .tiktok p {
        font-size: 24px;
    }
}

/* ========== DESKTOP ========== */

@media (min-width: 1024px) {

    picture img {
        width: 100%;
        height: auto;
    }
    .perfil{
        top: 5%;
        left: 50%;
    }
    .container-pai {
        top: 8%;
        width: 35%;
        left: 32%;
        transform: none;    }

    h1 {
        font-size: 2.8rem;
    }

    .container-pai p {
        font-size: 1.1rem;
    }

    .topicos_links {
        max-width: 560px;
    }
}