@charset "UTF-8";
:root {
    --roboto: "Roboto", sans-serif;
    --template-font: var(--nunito);
    --template-bg: #dedede;
    --template-color: #181a1d;
    --white: #ffffff;
    --black: #000000;
    --primary-color: #090909;
    --secondary-color: #33b25f;
    --tertiary-color: #6a0b04;
    --quaternary-color: #26944c;
    --border-color: #cccccc;
    --hover-color: #26944c;
    --transition: all 0.5s ease;
    --shadow: 0px 10px 25px 0px rgba(37, 42, 52, 0.08);
    --shadow-secondary: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    --shadow-tertiary: 0px 4px 8px 0px rgba(0, 0, 0, 0.07);
}

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background-color: var(--template-bg);
    color: var(--template-color);
}

h1 {
    text-transform: uppercase;
    /* margin-top: 60px; */
    margin-left: 20px;
    font-size: 1.3rem;
    color: #50505b;
}

h2 {
    text-transform: uppercase;
    margin-bottom: 5px;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.8rem;
    /* border-bottom: 1px #c3cde2 solid; */
}

a:hover {
    color: var(--hover-color);
}

header {
    position: absolute;
    top: 0;
    /* left: calc(50% - 400px); */
    height: 50px;
    /* width: 780px; */
    width: calc(100vw - 20px);
    margin: 0;
    padding: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;*/
    background-color: var(--template-bg);
}

header .logo {
    width: 50%;
    padding: 10px;
}

header .logo img {
    max-width: 250px;
}

.voltar-div {
    position: relative;
    display: flex;
    /* top: 10px; */
    padding: 20px 0 0 0;
    /* left: calc(50% - 400px); */
    /* height: 50px; */
    /* width: 780px; */
    width: 100%;
    /* margin: 0; */
    /* padding: 10px; */
    justify-content: center;
}

.voltar {
    display: flex;
    align-items: center;
    margin-left: 10px;
    height: 30px;
    background-color: var(--secondary-color);
    border: 0;
    color: #717171;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 5px 10px;
    color: var(--white);
}

.voltar i {
    margin-right: 5px;
}

.voltar:hover {
    background-color: var(--hover-color);
    color: var(--white);
}

.voltar i {
    font-size: 1.2rem;
    color: var(--white);
}

footer {
    /* position: fixed; */
    position: fixed;
    text-align: center;
    bottom: 0;
    width: 100%;
    height: 1.2rem;
    padding: 5px;
    font-size: 0.8rem;
    background-color: var(--template-color);
    color: var(--template-bg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

footer a:visited {
    color: var(--template-bg);
}

footer .patral_sign {
    line-height: 40px;
    margin: 10px 10px 0 10px;
}

footer .patral_sign img {
    float: right;
    height: 40px;
    width: auto;
    margin-top: 5px;
}

.ticker {
    /* background-color: var(--template-bg); */
    padding: 10px 0;
    white-space: nowrap;
    overflow: hidden;
    font-weight: bolder;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 20s linear infinite;
}

.ticker img {
    vertical-align: middle;
    margin-left: 30px;
    margin-right: 30px;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.content {
    position: relative;
    padding: 10px 10px;
    /*left: calc(50% - 400px);
  width: 780px; */
    width: calc(100% - 20px);
    font-size: 0.8rem;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
  border-radius: 8px 8px 0 0;*/
    background-color: var(--white);
    min-height: calc(100vh - 242px);
}

.spacer-xs {
    height: 3rem;
}

.spacer {
    height: 6rem;
}

.spacer-m {
    height: 7rem;
}

.spacer-l {
    height: 8rem;
}

.centered {
    text-align: center;
}

.link_cadastro a,
.link_cadastro a:visited {
    text-decoration: none;
    color: #727272;
}

.link_cadastro i {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 7px 9px;
    color: var(--white);
}

.separator-title {
    width: 150px;
    height: 4px;
    background-color: var(--secondary-color);
    margin-bottom: 30px;
}

.logo-container {
    position: relative;
    height: calc(50vh - 320px);
    width: calc(100% - 40px);
    text-align: center;
    margin: 220px 20px 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    /* max-width: 100%; */
    width: 500px;
    height: auto;
}

.searchbar-container {
    /* margin-top: 30%;
  height: 100%; */
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 80px;
    justify-content: center;
    align-items: center;
}

.searchbar,
.topsearchbar {
    background-color: #f8f8f8;
    width: 100%;
    max-width: 520px;
    height: 48px;
    border-radius: 25px;
    border-color: var(--border-color);
    border-width: 1px;
    border-style: solid;
    /* box-shadow: 0px 0px 20px #5072bc; */
    font-size: 1rem;
    margin: 10px;
}

.searchbar input,
.topsearchbar input {
    font-family: "Roboto", sans-serif;
    width: calc(100% - 105px);
    height: 45px;
    border: 0;
    margin-left: 1px;
    font-size: 1rem;
    border-radius: 25px 0px 0 25px;
    padding-left: 16px;
    background-color: transparent;
}

.topsearchbar,
.topsearchbar input {
    background-color: #fff;
}

.searchbar input:focus,
.topsearchbar input:focus {
    outline: none;
}

.searchbar button,
.topsearchbar button {
    position: relative;
    width: 79px;
    height: 50px;
    top: -1px;
    left: 5px;
    float: right;
    /* background-color: #0000ff; */
    background-color: var(--secondary-color);
    border: 0;
    color: var(--white);
    border-color: var(--border-color);
    border-width: 1px;
    border-style: solid;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border-left: 0;
    font-size: 1rem;
    cursor: pointer;
}

.searchbar button:hover,
.topsearchbar button:hover {
    background-color: var(--hover-color);
    color: var(--white);
}

.topsearchbar-container {
    /* margin-top: 30%;
  height: 100%; */
    float: right;
    display: flex;
    width: 50%;
    margin-top: -75px;
    justify-content: right;
    align-items: end;
    padding: 10px;
}

@media (max-width: 768px) {
    header {
        height: 115px;
        width: calc(100% - 20px);
        /* aqui */
        left: 0;
        /* aqui */
    }
    footer {
        width: 100%;
        /* aqui */
        left: 0;
        /* aqui */
    }
    header .logo {
        width: calc(100% - 20px);
        text-align: center;
        margin-bottom: 5px;
    }
    .content {
        width: calc(100% - 20px);
        margin-top: 3.2rem;
        left: 0;
    }
    .topsearchbar-container {
        width: calc(100% - 20px);
        margin-top: 0;
        float: none;
    }
    .spacer {
        height: 9.5rem;
    }
    .voltar-div {
        /* top: 152px; */
        width: calc(100% - 20px);
        /* aqui */
        left: 0;
    }
}

.product_groups {
    display: flex;
    flex-wrap: wrap;
    margin-left: 20px;
    margin-right: 20px;
}

.product_groups .column {
    flex: 1;
    margin-right: 20px;
    /* EspaÃ§amento entre as colunas */
    min-width: 0;
    /* Para evitar que as colunas sejam maiores que o necessÃ¡rio */
}

.product_groups .column:last-child {
    margin-right: 0;
    /* EspaÃ§amento entre as colunas */
}

.product_groups ul {
    padding-left: 0;
}

.product_groups li {
    font-size: 0.8rem;
    list-style-type: none;
    margin-bottom: 10px;
    /* EspaÃ§amento entre os itens da lista */
    background-color: #d8d8ed;
    /* Cor de fundo dos itens (opcional) */
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Sombra leve (opcional) */
}

@media (max-width: 768px) {
    .product_groups {
        flex-direction: column;
        /* Muda para uma coluna Ãºnica em telas menores */
    }
    .product_groups .column {
        margin-right: 0;
        margin-bottom: -20px;
    }
}

.productpage-results {
    /* padding: 20px; */
    /* display: flex; */
    /* flex-wrap: wrap; */
}

.productpage-box {
    float: left;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 300px;
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 10px;
    border-color: var(--border-color);
    border-width: 1px;
    border-style: solid;
    /* 
  box-shadow: 0px 2px 5px #d8d8d8;
  background: linear-gradient(128deg, rgba(216, 216, 237, 1) 30%, rgba(246, 249, 250, 1) 100%);
   */
}

.productpage-box img {
    border-radius: 10px;
}

.productpage-group {
    height: 32px;
    color: #5072bc;
    font-size: 0.8rem;
    /* background-color: pink; */
}

.productpage-info {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 385px);
    float: right;
}

.productpage-info h1 {
    margin-top: 0;
    margin-left: 0;
}

@media (max-width: 768px) {
    .productpage-info {
        float: none;
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 0;
        min-height: 500px;
    }
}

.productpage-specs {
    margin-left: 20px;
    margin-right: 20px;
    clear: both;
}

.productpage-specs h2 {
    margin-left: 0;
}

.tablediv {
    /* overflow-x: scroll; */
}

.tablediv table {
    width: 100%;
    min-width: 10rem;
}

.tablediv table tr {
    height: 2.8rem;
}

.tablediv table tr:nth-child(even) {
    background-color: #f8f8f8;
}

.tablediv table tr:hover {
    background-color: var(--template-bg);
    cursor: pointer;
    max-height: 1.6rem;
}

.tablediv table td {
    padding-bottom: 10px;
    padding-top: 10px;
    border-color: var(--border-color);
    border-width: 1px;
    border-top-style: dashed;
    border-left: 0;
    border-right: 0;
}

.tablediv table td br {
    margin-bottom: 0.4rem;
}

.tablediv table tr td:nth-child(1) {
    /* min-width: 8rem; */
    /* text-align: center; */
}

.tablediv table tr td:nth-child(2) {
    /* max-width: 50rem; */
    /* text-wrap: nowrap; */
    /* text-wrap: wrap; */
    /* overflow: hidden; */
}

.tablediv table tr td:nth-child(3) {
    text-align: center;
}

.tablediv table tr td span {
    font-weight: bold;
}

.thumb {
    width: auto;
    border-radius: 5px;
    background-color: #fff;
    float: left;
    padding: 5px 5px 1px 5px;
    margin-right: 15px;
    margin-left: 10px;
}

.thumb img {
    width: auto;
    height: 100px;
}

.pagination {
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
}

.pagination li {
    margin: 0 2px;
}

.pagination .page-item {
    display: inline;
}

.pagination .page-link {
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 50px;
    background-color: #f5f5f5;
    transition: background-color 0.3s, color 0.3s;
}

.pagination .page-link:hover {
    background-color: #ddd;
    color: #000;
}

.pagination .page-item.disabled .page-link {
    color: #aaa;
    cursor: not-allowed;
}

.pagination .page-item.disabled .page-link:hover {
    background-color: #f5f5f5;
}

.pagination .page-item.active .page-link {
    background-color: #ccc;
    border-color: #ccc;
    color: #fff;
}

.pagination .page-link i {
    margin-right: 5px;
}


/*********************/


/* PÃ¡gina do Produto */


/*********************/

ul {
    padding-left: 20px;
    margin: 0;
    list-style: square;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.image-container {
    position: relative;
    height: 255px;
    background-color: var(--secondary-color);
}

.product-image {
    padding: 16px;
    border-radius: 25px;
    height: 225px;
    width: 300px;
    /* width: 100%;
  height: 100%;
  object-fit: cover; */
}

.overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 428px;
    background: linear-gradient(to bottom, #cdcdcd, #fff);
    padding: 20px;
    border-top-left-radius: 8px;
    box-shadow: -5px -10px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(67px);
    height: 210px;
}


/* Styles for tablets (portrait and landscape) */

@media only screen and (min-width: 481px) and (max-width: 768px) {
    .overlay {
        /* border-top-left-radius: 8px; */
    }
}


/* Styles for mobile phones (portrait and landscape) */

@media only screen and (max-width: 480px) {
    .overlay {
        text-align: left;
        border-top-right-radius: 8px;
        width: calc(100% - 60px);
        margin: 0 10px;
    }
    .image-container {
        height: 510px;
        text-align: center;
    }
    .details {
        margin: 120px 10px 0 10px;
        padding: 10px 20px 20px;
    }
    .overlay {
        transform: translateY(0);
    }
}

.product-name {
    /* font-size: 24px; */
    font-weight: bold;
    margin-bottom: 15px;
}

.product-name h1 {
    margin-top: 10px !important;
    font-size: 1.2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    float: left;
}

.info-content,
.details {
    font-size: 0.8rem;
}

.info-content h3 {
    font-size: 1rem;
    margin: 0;
}

.info-content p {
    color: #666;
    margin: 0;
}

.details {
    padding: 40px 20px 20px;
}

.details-grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 20px;
}

.cadastro h1 {
    margin-left: 10px;
}

.cadastro .container {
    max-width: 760px;
    padding: 20px;
}

.cadastro label {
    display: block;
    font-size: 0.875rem;
    /* Tamanho menor para o label */
    color: var(--secondary-color);
    /* Cor dos labels */
    margin-top: 25px;
    margin-bottom: 5px;
    margin-left: 10px;
}

.cadastro input[type=text],
.cadastro input[type=email],
.cadastro select {
    width: 100%;
    height: 45px;
    /* Altura dos campos */
    padding: 0 15px;
    /* Padding para ajustar o espaÃ§o interno */
    border-color: var(--border-color);
    border-width: 1px;
    border-style: solid;
    font-family: "Roboto", sans-serif;
    /* Fonte dos campos */
    font-size: 1rem;
    /* Tamanho da fonte dos campos */
    border-radius: 25px;
    /* Bordas arredondadas dos campos */
    box-sizing: border-box;
    /* Incluir padding e borda no tamanho total */
}

.cadastro button {
    background-color: var(--secondary-color);
    border: 0;
    color: var(--white);
    border-radius: 25px;
    font-size: 1rem;
    text-align: center;
    padding: 10px 30px;
    cursor: pointer;
    margin-top: 40px;
    float: right;
}

.cadastro button:hover {
    background-color: var(--hover-color);
    color: var(--white);
}