.produto-section {
    padding: 9.6rem 0 10rem;
}

.p-s-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #868e96;
    margin-bottom: 2.4rem;
}

.p-s-breadcrumbs span {
    font-size: 1.4rem;
}

.secao-produto {
    display: grid;
    grid-template-columns: 3fr 2fr;
    column-gap: 3.2rem;
    /* position: relative; */
    align-items: self-start;
}

.s-p-img-desc {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}

.s-p-imagem-produto {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 30rem;
    /* display: flex; */
    /* justify-content: center; */
    text-align: center;
    padding: 1.8rem;
}

.s-p-imagem-produto img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    height: 100%;
    border-radius: 8px;
}

.e-p-b-img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    height: 100%;
    border-radius: 8px;
}

.s-p-descricao p:nth-child(1) {
    color: #495057;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.s-p-descricao p:nth-child(2) {
    font-size: 1.6rem;
    color: #495057;
    line-height: 1.6;
}

.s-p-detalhes {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.8rem;

    display: flex;
    flex-direction: column;
    gap: 4.4rem;
}

.s-p-d-header p {
    color: #495057;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.s-p-d-header span {
    color: #868e96;
    font-size: 1.4rem;
}

.s-p-d-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.s-p-d-cta span {
    color: #868e96;
    font-size: 1.2rem;
}

.s-p-d-cta-link:link,
.s-p-d-cta-link:visited {
    background-color: #f03e3e;
    color: #fff;
    padding: 1.8rem;
    font-size: 1.8rem;
    width: 100%;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.s-p-d-cta-link:hover,
.s-p-d-cta-link:active {
    background-color: #c92a2a;
}

.s-p-d-more-info p {
    color: #495057;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.s-p-d-more-info {
    width: 100%;
}

.s-p-d-more-info table {
    width: 100%;
    color: #495057;
}

.s-p-d-more-info tr:nth-child(odd) {
    background-color: #f8f9fa;
}

th,
td {
    padding: 1.2rem;
    text-align: left;
    font-size: 1.2rem;
}

.p-s-relacionados {
    padding-top: 3.2rem;
}

.p-s-rel-title {
    font-size: 2.4rem;
    color: #495057;
    font-weight: 700;
    margin-bottom: 2.4rem;
}

.p-s-r-produtos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.4rem;
}



/**************************/
/* BELOW 1312px */
/**************************/

@media (max-width: 82em) {}

/* 1136px */

@media (max-width: 71em) {}

/**************************/
/* BELOW 1024px */
/**************************/


@media (max-width: 64em) {}

/**************************/
/* BELOW 940px (Tablets) */
/**************************/

@media (max-width: 59em) {}

/**************************/
/* BELOW 768px */
/**************************/

@media (max-width: 48em) {
    .secao-produto {
        grid-template-columns: 1fr;
        gap: 4.8rem;
    }
}

/**************************/
/* BELOW 544 (Phones) */
/**************************/

@media (max-width: 34em) {
    .p-s-r-produtos {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-s-breadcrumbs span {
        font-size: 1rem;
    }

    .p-s-relacionados {
        padding-top: 6.4rem;
    }
}
