@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/expan&cond/mesher-header.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: 3%;
    }
}

.title {
    padding: 1.5rem 3rem 0.5rem 3rem;
}
.introduction {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 1.5rem 3rem 0.5rem 3rem;
}
.introduction > div {
    flex-basis: 50%; 
}

.introduction p {
    font-size: 14px;
    text-align: justify;
}
@media (max-width: 768px) {
    .introduction {
        flex-direction: column;
        padding-left: 30px;
        padding-right: 30px;
    }
    .introduction > div {
        flex-basis: auto;
        padding: 0;
        margin-bottom: 20px;
    }
    .introduction p {
        font-size: 14px;
    }
}


.middle {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: .5rem 3rem 0.5rem 3rem;
}
.middle > div {
    flex: 1 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
}
.img {
    display: flex;
    justify-content: center;
}
.img img {
    max-width: 100%;
    height: auto;
}
.topicos {
    text-align: start;
    position: flex;
    width: 100%;
    height: 50%; 
    box-sizing: border-box;
    padding-right: 2.5rem;
}
.topicos span {
    font-size: 14px;
}
.topicos ul {
    list-style-type: none; 
    padding: 0;
    
}
.topicos li {
    display: flex; 
    margin-bottom: 10px; 
    
}
.topicos li img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 768px) {
    .middle > div {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


.conteudo-condutores {
    padding: .5rem 3rem 1rem 3rem;
}
.conteudo-condutores p {
    font-size: 14px;
    text-align: justify;
}


.resultados {
    padding-bottom: 30px;
    margin: auto;
    padding: .5rem 3rem 0.5rem 3rem;
}

.resultados-options {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 32px);
    max-width: 1200px;
    margin-left: 30px;
}
.resultados-options button {
    color: #878484;
    text-align: center;
    padding: 14px;
    width: 100%;
    border: 2px solid #dda254;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 14px;
}
.resultados-options button.selected {
    background-color: #f2d09b;
}

.resultado {
    display: none;
}
.resultado-selecionado {
    display: block;
}
.resultados-content {
    background-color: #f2d09b;
    padding-bottom: 20px;
    width: calc(100% - 32px);
    margin-left: 30px;
    max-width: 1200px;
    border: 2px solid #dda254;
}
.resultados-content p,
.resultados-content a {
    padding-left: 20px;
    padding-top: 20px;
    font-size: 14px;
    width: 90%;
}

.resultados-content a {
    text-decoration: none;
    color: #f29400;
}
.resultados-options,
.resultados-content {
    box-sizing: border-box;
}


.end {
    padding: 1.5rem 3rem 3rem 3rem;
}

.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 screen and (max-width: 768px) {
    .title,
    .introduction,
    .middle,
    .conteudo-condutores {
        padding: .5rem 1.5rem 0.5rem 1.5rem;
    }
    .resultados {
        padding: .5rem 1rem 0.5rem 2rem;
    }
    .resultados-options,
    .resultados-content {
        margin-left: 0;
    }
    .topicos {
        padding-right: 0;
    }
    .end {
        padding: 1rem 1.5rem 2rem 1.5rem;
    }
}
@media screen and (min-width: 1500px) {
    .img-top,
    .title,
    .introduction,
    .title-1,
    .middle,
    .conteudo-condutores,
    .resultados,
    .end {
        padding: 30px 300px;
    }
}