:root{
    /** Geral */
    --cor-primaria: #046738;
    --cor-primaria-alpha:rgba(29,46,66,0.3);
    --cor-primaria-alpha-zero:rgba(29,46,66,0);
    --cor-secundaria: #56b371;
    --cor-escura: #1A1A1A;
    --cor-texto: #1A1A1A;
    --cor-texto-rolagem-caminho: #999999;
    --cor-texto-rolagem-alca: #666666;
    --cor-texto-rolagel-alca-hover: #333333;
    
    /** Cabeçalho **/
    --cor-cabecalho-mobile-menu-bg: #046738;
    --cor-cabecalho-mobile-menu-text: #FAFAFA;
    --cor-cabecalho-mobile-social: #FFFFFF;
    --cor-cabecalho-mobile-menu-acoes: #ffffff;

    --cor-cabecalho-mobile-subitem-bg: #2c3e50;
    --cor-cabecalho-mobile-subitem-text: #48b1bf;

    --cor-cabecalho-mobile-cta-bg: #046738;
    --cor-cabecalho-mobile-cta-text: #FAFAFA;

    --cor-cabecalho-desktop-cta-bg: #046738;
    --cor-cabecalho-desktop-cta-text: #ffffff;
    --cor-cabecalho-desktop-text: #046738;
    --cor-cabecalho-desktop-social: #046738;

    --cor-cabecalho-desktop-subitem-bg: #046738;
    --cor-cabecalho-desktop-subitem-text: #FAFAFA;

    /** Contato **/
    --cor-botao-contato: #2c3e50;
    --cor-whatsapp-bg: #27ae60;
    --cor-whatsapp-text: #FFFFFF;

    /** Blog **/
    --cor-blog-bg: #999999;
    --cor-blog-titulo: #EAEAEA;
    --cor-blog-descricao: #FFFFFF;
    --cor-blog-item: #FFFFFF;
    --cor-blog-cabecalho: #2c3e50;
    --cor-blog-busca: #F2F4F8;

    /** Produtos **/
    --cor-produto-titulo: #333333;
    --cor-produto-box-bg: #333333;
    --cor-produto-box-text: #ffffff;
    --cor-produto-filter: #333333;
    --cor-produto-filter-text: #ffffff;
    --cor-produto-botao: #27ae60;

    /** Footer **/
    --cor-rodape-bg: #F2F2F2;
    --cor-rodape-text: #046738;
    --cor-rodape-social: #046738;
}
.footer__contact{
    background-image: url("../image/bg-contato.jpg");
    background-size: cover;
    background-position: center;
}

.blog__mais .page-numbers{
    display:inline-flex;
    width:35px;
    height: 35px;
    gap: 15px;
    align-items: center;
    justify-content: center;
    background:#ffffff;
    border-radius: 100px;
    margin:2.5px;
    transition: ease-in 0.3s;

    color:#06beb6;
    text-decoration: none;
    font-size: 0.9rem;
}

.blog__mais .page-numbers:hover{ opacity: 0.6; }

.blog__mais .current{
    background:var(--cor-primaria);

    columns: #ffffff;;
}

.blog__mais .current:hover{ opacity: 0.9; }

.ht-products__title,
.ht-products__text{ color: #ffffff }

.ht-home__products__text{ background-color: var(--cor-secundaria); }

.ht-linhas__content{
    margin-bottom: 0px;
    padding-bottom: 0;
}
.ht-linhas__list{
    display: grid;
    padding:100px 25px;
    padding-top: 0;
    margin:0 auto;
    width:100%;
    max-width:1024px;
    gap:25px;
    grid-template-columns: 1fr;
}
.ht-linhas__text{ margin-bottom: 50px; }
.ht-linhas__item{
    width: 100%;
    height: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    background-size: cover;
    background-position: center;
    display: inline-block;
    overflow: hidden;
    transition: ease-in 0.3s;

    text-decoration: none;
}
.ht-linhas__item:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.ht-linhas__item:hover .ht-linhas__overlay{
    background: rgba(29,46,66,0.85);
}
.ht-linhas__overlay{
    width:100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:15px;
    background: rgba(29,46,66,0.7);
    transition: ease-in 0.3s;

    color:#ffffff;
    font-size:1.65rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}
@media(min-width:768px){
    .ht-linhas__list{
        grid-template-columns: 1fr 1fr;
    }
}
.ht-linha__title{
    width: 100%;
    padding:100px 25px;
    padding-bottom: 50px;
    text-align: center;
}

.ht-linha__produto{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "linha__desc" 
    "linha__image";
    background-color: var(--cor-secundaria);

    color: #ffffff;
}
.ht-linha__desc{ 
    grid-area: linha__desc; 
    padding:25px;
}
.ht-linha__image{ 
    grid-area: linha__image; 
    background-size: cover;
    background-position: center;
}
.ht-linha__desc__title{
    color:#ffffff;
}
@media(max-width:1023px){
    .ht-linha__produto{
        grid-template-rows: auto 300px;
    }
}
@media(min-width:1024px){
    .ht-linha__produto{
        grid-template-columns: 1fr 1fr;
        height: 550px;
    }
    .ht-linha__produto:nth-child(odd){
        grid-template-areas: "linha__image linha__desc";
    }
    .ht-linha__produto:nth-child(even){
        grid-template-areas: "linha__desc linha__image";
    }
    .ht-linha__desc{
        padding:50px;
        align-self: center;
    }
    .ht-linha__desc__content{
        max-height: 250px;
        margin-bottom: 35px;;
    }
}