@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/dermatomos/dermatoom\ humeca\ 3.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: 550px) {
    .img-top {
        height: 150px;
    }
}

.catalogo {
    padding: 2rem 3rem 3rem 3rem;   
    max-width: 600px; 
}

.catalogo img {
    width: 100%; 
    height: auto; 
    border: 1px solid #ccc;
    margin-top: 20px;
}


@media (max-width: 768px) {
    .catalogo {
        padding: 2rem 1.5rem 3rem 1.5rem;
    }
}
@media screen and (min-width: 1500px) {
    .catalogo{
        padding-left: 300px;
        padding-right: 300px;
    }
    .catalogo img {
        width: 300px;
    }  
    .img-top p {
        padding-left: 100px;
    }
}