@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');

* {
    font-family: "Didact Gothic", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

@media screen and (min-width: 768px) {
    body {
        padding-top: 50px;
    }
}


.img-top {
    width: 100%;
    height: 300px; 
    background: url(../../../imagens/produtos/meek/Humeca-MEEK-Micrograft.jpg) no-repeat center center;
    background-size: cover;
    background-position: center;
}

.img-top p {
    position: absolute;
    top: 25%;
    left: 50px;
    color: white;
    font-size: 3vw;
    text-shadow: 2px 2px 4px #000000;
}

@media (max-width: 768px) {
    .img-top {
        height: 200px;
    }
    .img-top p {
        font-size: 24px; 
        top: 6%;
    }
}
@media screen and (max-width: 600px) {
    .img-top p {
        font-size: 20px; 
        top: 4%;
    }
}


.title {
    padding: 1.5rem 3rem 0.5rem 3rem;
}

.content {
    padding: 0 5rem 1rem 5rem;
    text-align: justify;
}

.content p {
    font-size: 14px;
}

.bottom {
    padding-bottom: 5rem;
}


@media screen and (max-width: 768px) {
    .title {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    .content {
        padding: 0 3rem 1.5rem 3rem;
    }
    .bottom {
        padding-bottom: 4rem;
    }
}


@media screen and (min-width: 1500px) {
    .img-top,
    .title,
    .content {
        padding: 0px 300px;
    }
}