@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: 75px;
    }
}


.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: 40px;
    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: 5%;
    }
}
@media screen and (max-width: 600px) {
    .img-top p {
        font-size: 20px; 
        top: 4%;
    }
}

.title {
    padding: 1.5rem 3rem 0.5rem 3rem;
}


.content {
    display: flex;
    padding: 1.5rem 3rem 0.5rem 3rem;
    gap: 3rem;
}
.content > div {
    flex-basis: 50%;
}
.texts {
    font-size: 14px;
    text-align: justify;
}
.texts #italic {
    font-style: italic;
}
.texts a {
    text-decoration: none;
    color: #f29400;
}
.texts p {
    padding-bottom: 1rem;
}
.images img {
  max-width: 415px;
  width: 100%;
}
.texts strong {
    font-size: 16px;
}

.end {
    display: flex;
    align-items: center;
    gap: 10rem;
    justify-content: space-between;
    padding: 1.5rem 3rem 3rem 3rem;
}

.images {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products {
    width: 100%;
}

.products ul {
    list-style: none;
    padding-top: 0.5rem;
    margin: 0;
}

.products li {
    display: flex;
    align-items: center;
    margin-bottom: 10px; 
}

.products li img {
    margin-right: 10px; 
    max-width: 25px;
    width: 100%;
}

.products a {
    text-decoration: none;
    color:  #f29400;
    padding-bottom: 5px;
}


@media(max-width: 768px) {
    .title {
        padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    }
    .content {
        flex-direction: column; 
        padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    }
    .content > div {
        flex-basis: auto; 
        padding-right: 0; 
    }
    .end {
        gap: 5rem;
    }
}

@media(max-width: 500px) {
    .end {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        padding: 1rem 1.5rem 2rem 1.5rem;
    }
}


@media screen and (min-width: 1500px) {
    .img-top,
    .title,
    .content,
    .end {
        padding: 0px 300px;
    }
}