/* Variáveis de cores */
:root {
    /* Cores de texto */
    --color-text-primary: #ff8d1e;
    --color-text-secondary: #06ba70; 
    --color-text-third: #0d3461;

    /* Cores de fundo */
    --color-bg-primary: #ff8d1e;
    --color-bg-secondary: #06ba70; 
    --color-bg-third: #0d3461;
}

/* Reset de estilos e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none; 
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    letter-spacing: normal;
    word-spacing: normal; 
}

body {
    overflow-x: hidden;
    background-color: #f9f9f9;
}

/* Esconder imagens até carregarem, evitando ícone de imagem quebrada */
img {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

img.img-loaded {
    opacity: 1;
}

@media (max-width: 500px) {
    * {
        font-size: 13.5px;
    }
}

header ul, header ol, header li {
    list-style: none;
}


.cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.198);
    width: 100%;
    padding: 10px 10vw;
    position: sticky;
    top: 0;
    z-index: 100;
}

@media (max-width: 800px) {
    .cabecalho {
        padding: 10px 5vw;
    }
}

.cabecalho .logo {
    display: flex;
    align-items: center;
}

.cabecalho .logo img {
    width: 60px;
    margin-right: 1em;
}

.cabecalho .logo .logo-texto {
    display: flex;
    flex-direction: column;
}

.cabecalho .logo .logo-texto h1 {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    color: var(--color-text-primary);
}

.cabecalho .links-cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cabecalho .links-cabecalho ul {
    display: flex;
    align-items: center;
}

.cabecalho .links-cabecalho ul li a {
    margin: 0 0.5em;
    /*border: 1px solid black;*/
    background-color: #eeeded86;
    padding: 8px 20px;
    border-radius: 20px;
    color: black;
}

.cabecalho .links-cabecalho ul li a:hover  {
    color: white;
    background-color: var(--color-bg-third);
    /*border: 1px solid var(--color-bg-third);*/
}

.cabecalho .cabecalho_link.btn_clicado {
    color: white;
    background-color: var(--color-bg-third);
}

.cabecalho button {
    background-color: var(--color-bg-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.cabecalho svg {
    margin-right: 10px;
}

.cabecalho .menu_hamburguer_box {
    display: none;
    cursor: pointer;
    align-items: center;
} 

.cabecalho .menu_hamburguer_box .box_icon_hamburguer {
    display: flex;
    height: 45px;
    width: 45px;
    align-items: center;
    margin-left: -5px;
}

.cabecalho .menu_hamburguer_box .box_icon_hamburguer svg {
    margin: 0;
    width: 30px;
}

.cabecalho .menu_hamburguer_box #icone_option_close {
    display: none;
}


.cabecalho .links_cabecalho_popups {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    background-color: white;
    margin-top: 63px;
    padding: 20px 10vw;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (max-width: 800px) {
    .cabecalho .links_cabecalho_popups {
        padding: 20px 5vw;
    }
}

.cabecalho .links_cabecalho_popups ul {
    width: 100%;
}

.cabecalho .links_cabecalho_popups ul li {
    width: 100%;
}

.cabecalho .links_cabecalho_popups ul li a {
    height: 100%;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    font-size: 18px;
    background-color: #eeeded86;
    border-radius: 20px;
    color: black;
    margin-bottom: 10px;
}


.cabecalho .links_cabecalho_popups ul li a:hover  {
    color: white;
    background-color: var(--color-bg-third);
    /*border: 1px solid var(--color-bg-third);*/
}

.cabecalho .links_cabecalho_popups .cabecalho_popup_link.btn_clicado {
    color: white;
    background-color: var(--color-bg-third);
}

/* Estilos responsivos max width */
@media (max-width: 1100px) {
    .cabecalho .menu_hamburguer_box {
        display: flex;
    }

    .cabecalho .links-cabecalho {
        display: none;
    }
}

/* Estilos responsivos min width */
@media (min-width: 1100px) {
    .cabecalho .links_cabecalho_popups {
        display: none !important;  /* Oculta o menu */
    }

    /* Oculta o ícone de fechar (se estiver aberto) */
    .cabecalho .menu_hamburguer_box #icone_option_close {
        display: none;
    }

    /* Exibe o ícone de abrir (hambúrguer) */
    .cabecalho .menu_hamburguer_box #icone_option_open {
        display: flex;
    }
}


 
.home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.158), rgba(0, 0, 0, 0.219)), url("/images/qual-a-diferenca-entre-energia-solar-residencial-e-empresarial-1025x400.jpg");
    background-size: cover;
    background-position: center;
    height: 500px;
    padding: 30px 10vw;
    justify-content: space-between;
}

@media (max-width: 700px) {
    .home-container {
        height: 500px;
    }
}

@media (max-width: 500px) {
    .home-container {
        height: 430px;
    }
}


.home-container .home_top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3em;
}

@media (max-width: 405px) {
    .home-container .home_top {
        margin-bottom: 8em !important;
    }
}

.home-conteudo-apresentacao {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
}

@media (max-width: 1400px) {
    .home-conteudo-apresentacao {
        width: 60%;
    }
}

.home-conteudo-apresentacao .apresentacao-texto {
    display: flex;
    flex-direction: column;
}

.home-conteudo-apresentacao .apresentacao-texto h1 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 40px;
}

.home-conteudo-apresentacao .apresentacao-texto h2 {
    color: #fff;
    font-size: 1.5em;
    margin: 1em 0;
}

.home-conteudo-apresentacao .apresentacao-texto p {
    font-size: 1em;
    color: #fff;
    margin: 2.5em 0;
    line-height: 1.5em;
}

@media (max-width: 511px) {
    .home-conteudo-apresentacao .apresentacao-texto h1 {
        font-size: 1.6em;
    }
    .home-conteudo-apresentacao .apresentacao-texto h2 {
        margin: 0.9em 0;
    }
    .home-conteudo-apresentacao .apresentacao-texto p {
        margin: 2em 0;
    }
}

.home-conteudo-apresentacao .apresentacao-texto .btns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.6rem;
}

.home-conteudo-apresentacao .apresentacao-texto a {
    font-size: 0.9rem;
    background-color: #fff;
    padding: 10px 35px;
    border-radius: 25px;
    width: max-content;
    border: none;
    height: 45px;
    cursor: pointer;    
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-conteudo-apresentacao-img {
    height: 300px;
    overflow: hidden;
}

.home-conteudo-apresentacao-img img {
    height: 100%;
}

@media (max-width: 1026px) {
    .home-conteudo-apresentacao {
        width: 60%;
    }
}

@media (max-width: 1000px) {

    .home-container {
        align-items: center;
        display: flex;
    }

    .home-conteudo-apresentacao-img {
        display: none;
    }

    .home-container .home_top {
        height: 100%;
        margin-bottom: 6em;
    }

    .home-conteudo-apresentacao {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .home-conteudo-apresentacao .apresentacao-texto {
        align-items: center;
    }
}

@media (max-width: 550px) {
    .home-container .home_top {
        margin-bottom: 7.5em;
    }
}

@media (max-width: 800px) {
    .home-container {
        padding: 30px 5vw !important;
    }
}





.confident_section {
    padding: 0 10vw 20px;
}

@media (max-width: 800px) {
    .confident_section {
        padding: 0 5vw 20px;
    }
}

.confident-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    padding: 3.5rem;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.198);
    border-radius: 20px;
    margin-top: -120px;
}

.confident-container .confident_top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.confident-container .confident_top .confident_top_left {
    width: 50%;
}

.confident-container .confident_top #usp-heading {
    width: 40%;
}

@media (max-width: 1700px) {
    .confident-container .confident_top #usp-heading {
        width: 45%;
    }
}

@media (max-width: 1600px) {
    .confident-container .confident_top #usp-heading {
        width: 40%;
    }
}

@media (max-width: 1568px) {
    .confident-container .confident_top #usp-heading {
        width: 45%;
    }
}

@media (max-width: 1320px) {
    .confident-container .confident_top #usp-heading {
        width: 46%;
    }
}

@media (max-width: 842px) {
    .confident-container .confident_top {
        display: flex;
        flex-direction: column;
    }

    .confident-container .confident_top #usp-heading {
        width: 80%;
        text-align: center;
    }

    .confident-container .confident_top .confident_top_left {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
}

@media (max-width: 670px) {
    .confident-container .confident_top #usp-heading {
        width: 100%;
    }
}

.confident-container .confident_top  h2  {
    font-size: 1.4em;
    color: var(--color-text-third);
}

.confident-container .confident_top p {
    color: var(--color-text-third);
    font-size: 0.9em;
}

.confident-container .confident_field_box {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: space-between;
    width: 100%;
}

.confident-container .confident_field_box .confident_field  {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 977px) {
    .confident-container .confident_field_box {
        grid-template-columns: repeat(2, 1fr);
    }
    .confident-container .confident_field_box .confident_field:last-child {
        grid-column: 1 / -1; /* Faz o último filho ocupar toda a linha */
    }
}

@media (max-width: 650px) {
    .confident-container .confident_field_box {
        grid-template-columns: repeat(1, 1fr);
    }
}

.confident-container .confident_field_box .confident_field svg {
    width: 40px;
    height: 40px;
    color: var(--color-text-third);
    margin: 0 auto;
}


.confident-container .confident_field_box .confident_field h3 {
    font-size: 1.2em;
    color: var(--color-text-third);
    margin-bottom: 0.7em;
    text-align: center;
    margin-top: 10px;
}

.confident-container .confident_field_box .confident_field p {
    line-height: 1.3em;
    font-size: 0.9em;
    text-align: center;
}








.servicos-container {
    display: flex;
    flex-direction: column;
    padding: 40px 10vw 3rem;
    background-color: #f9f9f9;
}

@media (max-width: 800px) {
    .servicos-container {
        padding: 40px 5vw 3rem;
    }
}

.servicos-container .servicos-apresentacao {
    display: flex;
    justify-content: center;
}

.servicos-container .servicos-apresentacao .left-apresentacao {
    display: flex;
    flex-direction: column;
    margin-right: 3em;
}

.servicos-container .servicos-apresentacao .left-apresentacao h2 {
    color: var(--color-text-primary);
    margin-bottom: 0.5em;
}

.servicos-container .servicos-apresentacao .left-apresentacao p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-text-third);
}

.servicos-container .servicos-apresentacao .right-apresentacao {
    display: flex;
    width: 45%;
    margin-left: 3%;
}



.servicos-container .servicos-apresentacao .right-apresentacao p {
    font-size: 0.9rem;
}

.servicos-container .servicos_fields {
    margin-top: 4em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    justify-content: center;
}

@media (max-width: 1490px) {
    .servicos-container .servicos_fields {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas médias */
    }
}

@media (max-width: 1224px) {
    .servicos-container .servicos-apresentacao .right-apresentacao {
        width: 60%;
        margin-left: 30px;
    }
}

@media (max-width: 1125px) {
    .servicos-container .servicos-apresentacao h2 {
        text-align: left;
    }

    .servicos-container .servicos-apresentacao p {
        margin-top: 10px;
    }

    .servicos-container .servicos-apresentacao {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    .servicos-container .servicos-apresentacao .left-apresentacao {
        margin-right: 0;
    }
    .servicos-container .servicos-apresentacao .right-apresentacao {
        margin-left: 0;
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 800px) {
    .servicos-container .servicos_fields {
        grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
    }
}

.servicos-container .servicos_fields article {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.198);
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.servicos-container .servicos_fields article:last-child {
    margin-right: 0;
}

.servicos-container .servicos_fields .img-servico {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1em;
    height: 220px;
}

.servicos-container .servicos_fields .img-servico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicos-container .servicos_fields article h2 {
    margin-bottom: 1em;
    color: var(--color-text-third);
}


.servicos-container .servicos_fields .servicos-field-btn {
    display: flex;
    width: 100%;
    margin-top: 1rem;
}

.servicos-container .servicos_fields .servicos-field-btn button,
.servicos-container .servicos_fields .servicos-field-btn .saiba_mais_button {
    display: flex;
    width: 100%;
    align-items: center;
    border-radius: 25px;
    border: 1px solid var(--color-text-third);
    padding: 3px;
    cursor: pointer;
    background-color: transparent;
    justify-content: space-between;
    color: var(--color-text-third);
    text-decoration: none;
}

.servicos-container .servicos_fields .servicos-field-btn button:hover,
.servicos-container .servicos_fields .servicos-field-btn .saiba_mais_button:hover {
    background-color: var(--color-bg-primary);
    color: #fff;
    border: 1px solid var(--color-bg-primary);
}

.servicos-container .servicos_fields .servicos-field-btn button span,
.servicos-container .servicos_fields .servicos-field-btn .saiba_mais_button span{
    margin-left: 20px;
    color: currentColor;
}

.servicos-container .servicos_fields .servicos-field-btn button .box_svg,
.servicos-container .servicos_fields .servicos-field-btn .saiba_mais_button .box_svg {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--color-text-third);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.servicos-container .servicos_fields .servicos-field-btn button:hover .box_svg,
.servicos-container .servicos_fields .servicos-field-btn .saiba_mais_button:hover .box_svg {
    background-color: #fff;
    color: var(--color-text-third);
}



.servicos_btn {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.servicos_btn a {
    height: 45px;
    border-radius: 30px;
    border: none;
    color: var(--color-text-third);
    background-color: transparent;
    font-weight: bold;
    cursor: pointer;
    width: max-content;
    align-items: center;
    display: flex;
    padding: 0 2px 0 1rem;
}

.servicos_btn a .box_svg {
    margin-left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-text-third);
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

.servicos_btn a:hover {
    /*border: 1px solid var(--color-text-third);*/
    color: var(--color-text-secondary);
    margin-left: 10px;
    border: 1px solid var(--color-text-secondary);
}

.servicos_btn a:hover .box_svg {
    background-color: var(--color-text-secondary);
    color: #fff;
    border: 1px solid var(--color-text-secondary);
}





.record_bring_container {
    display: flex;
    padding: 3rem 10vw;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

@media (max-width: 800px) {
    .record_bring_container {
        padding: 3rem 5vw;
    }
}

.record_bring_container .record_bring_apresentacao {
    text-align: center;
    display: flex;
    justify-content: center;
}

.record_bring_container .record_bring_apresentacao h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 3rem;
}

.record_bring_container .record_bring_fields_box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
    justify-content: center;
}

@media (max-width: 1490px) {
    .record_bring_container .record_bring_fields_box {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas médias */
    }
}

@media (max-width: 800px) {
    .record_bring_container .record_bring_fields_box {
        grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
    }
}

@media (max-width: 500px) {
    .record_bring_container .record_bring_apresentacao h2 {
        font-size: 1.5em;
    }
}

.record_bring_container .record_bring_fields_box .record_bring_field {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.198);
}

.record_bring_container .record_bring_fields_box .record_bring_field:last-child {
    margin-right: 0;
}

.record_bring_container .record_bring_fields_box .record_bring_field .record_img_box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 5px;
}

.record_bring_container .record_bring_fields_box .record_bring_field .record_img_box img {
    width: 100%;
    min-height: 250px;
}

.record_bring_container .record_bring_fields_box .record_bring_field h3 {
    font-size: 1.3rem;
    color: var(--color-text-third);
    margin: 30px 0;
    padding: 0 10px;
}

.record_bring_container .record_bring_fields_box .record_bring_field p {
    line-height: 1.5em;
    padding: 0 10px;
}

.record_bring_container .record_bring_fields_box .record_bring_field a {
    display: flex;
    align-items: center;
    width: max-content;
    color: var(--color-text-third); 
    cursor: pointer;
    background-color: transparent;
    font-weight: bold;
    border: none;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
}

.record_bring_container .record_bring_fields_box .record_bring_field a svg {
    margin-left: 20px;
}


.record_bring_container .record_bring_fields_box .record_bring_field a:hover {
    color: var(--color-text-secondary);
    margin-left: 10px;
}

.record_bring_btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.record_bring_btn a {
    height: 45px;
    border-radius: 10px;
    border: 1px solid var(--color-text-third);
    color: var(--color-text-third);
    background-color: transparent;
    font-weight: bold;
    cursor: pointer;
    width: max-content;
    padding: 0 1rem;
    pointer-events: none;
}

.record_bring_btn a:hover {
    background-color: var(--color-bg-primary);
    color: #fff;
    border: 1px solid var(--color-bg-primary);
}




.projects-container {
    background-color: #f9f9f9;
    padding: 3rem 10vw;
}

.projects-container .projects-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
}

.projects-container .projects-top .projects-top-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.projects-container .projects-top .projects-top-text h2 {
    font-size: 2rem;
    color: var(--color-text-third);
}

.projects-container .projects-top .projects-top-text p {
    width: 50%;
    margin-left: 30px;
}

.projects-container .projects-top .projects-top-btns {
    margin-top: 2rem;
}

.projects-container .projects-top .projects-top-btns ul {
    display: flex;
    align-items: center;
}


.projects-container .projects-top .projects-top-btns ul li {
    margin-right: 1rem;
    border: 1px solid var(--color-bg-third);
    padding: 8px 20px;
    border-radius: 20px;
    color: black;
    cursor: pointer;
    list-style: none;
}

.projects-container .projects-top .projects-top-btns ul li:last-child {
    margin-right: 0;
}

.projects-container .projects-top .projects-top-btns ul li:hover  {
    color: white;
    background-color: var(--color-bg-third);
}

.projects-container .projects-top .projects-top-btns ul .btn_tipo_projeto_pg_home  {
    color: white;
    background-color: var(--color-bg-third);
}

@media (max-width: 560px) {
    .projects-container .projects-top {
        margin-bottom: 30px;
    }

    .projects-container .projects-top .projects-top-btns {
        margin: 20px 0 0;
    }

    .projects-container .projects-top .projects-top-btns ul {
        justify-content: center;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .projects-container .projects-top .projects-top-btns ul li {
        margin: 0;
        text-align: center;
    }

}

@media (max-width: 800px) {
    .projects-container {
        padding: 3rem 5vw !important;
    }

    .projects-container .projects-top .projects-top-btns {
        display: flex;
        justify-content: center;
    }

    .projects-container .projects-top .projects-top-text h2 {
        font-size: 1.5em;
    }
}

@media (max-width: 1200px) {
    .projects-container .projects-top .projects-top-text {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-direction: column;
        text-align: center;
        margin-bottom: 10px;
    }

    .projects-container .projects-top .projects-top-text p {
        margin-top: 20px;
        margin-left: 0;
        width: 70%;
    }
}

@media (max-width: 1000px) {
    .projects-container .projects-top .projects-top-text p {
        width: 100%;
    }
}

.projects-container .projects-fields-box  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}



@media (max-width: 1200px) {
    .projects-container .projects-fields-box {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas médias */
    }
}

@media (max-width: 650px) {
    .projects-container .projects-fields-box {
        grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
    }
}

.projects-container .projects-fields-box .group_field_box:last-child  {
    margin-bottom: 0;
}

.projects-container .projects-fields-box .projects-field {
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.198);
    margin-top: 10px;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
}

.projects-container .projects-fields-box .projects-field .projects-field-top {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.projects-container .projects-fields-box .projects-field:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.198);
}  
 
.projects-container .projects-fields-box .projects-field .projects-field-img {
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    align-items: center;
    justify-content: center;
    width: 1fr;
    display: flex;
}

.projects-container .projects-fields-box .projects-field .projects-field-img img {
    width: 100%;
    height: 100%;
}

.projects-container .projects-fields-box .projects-field .projects-field-img .project_type {
    position: absolute;
    display: flex;
    top: -15px;
    left: 10px;
    justify-content: flex-end;
    width: 100%;
}

.projects-container .projects-fields-box .projects-field .projects-field-img .project_type span {
    padding: 0.3rem 1rem;
    border-radius: 20px;
    background-color: var(--color-bg-primary);
    color: #fff;
}

.projects-container .projects-fields-box .projects-field .projects-field-text {
    padding: 1.5rem;
    color: var(--color-text-third);
}

.projects-container .projects-fields-box .projects-field .projects-field-text h2 {
    font-size: 1.2rem;
}

.projects-container .projects-fields-box .projects-field .projects-field-text p {
    font-size: 0.9rem;
}

.projects-container .projects-fields-box .projects-field .projects-field-text .project_status {
    border-radius: 20px;
    border: 1px solid var(--color-bg-primary);
    color: var(--color-bg-primary);
    margin-bottom: 1.3rem;
    width: max-content;
    padding: 0.3rem 1rem;
}

.projects-container .projects-fields-box .projects-field .projects-field-btn {
    display: flex;
    width: 100%;
    padding: 0 1.5rem 1.5rem;
}

.projects-container .projects-fields-box .projects-field .projects-field-btn button {
    display: flex;
    width: 100%;
    align-items: center;
    border-radius: 25px;
    border: 1px solid var(--color-text-third);
    padding: 3px;
    cursor: pointer;
    background-color: transparent;
    justify-content: space-between;
    color: var(--color-text-third);
}

.projects-container .projects-fields-box .projects-field .projects-field-btn button:hover {
    background-color: var(--color-bg-primary);
    color: #fff;
    border: 1px solid var(--color-bg-primary);
}

.projects-container .projects-fields-box .projects-field .projects-field-btn button span{
    margin-left: 20px;
    color: currentColor;
}

.projects-container .projects-fields-box .projects-field .projects-field-btn button .box_svg {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--color-text-third);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.projects-container .projects-fields-box .projects-field .projects-field-btn button:hover .box_svg {
    background-color: #fff;
    color: var(--color-text-third);
}



.contact-container {
    display: flex;
    width: 100%;
    align-items: center;
    background-color: var(--color-bg-third);
    color: #fff;
    padding: 3rem 10vw;
    justify-content: space-between;
}

@media (max-width: 800px) {
    .contact-container {
        padding: 3rem 5vw;
    }
}

.contact-container h2 {
    font-size: 2.3rem;
}

.contact-container p {
    margin: 1rem 0;
}

@media (max-width: 980px) {
    .contact-container {
        display: flex;
        flex-direction: column;
    }
    .contact-container .contact-text {
        text-align: center;
        margin-bottom: 20px;
        width: 50%;
    }
}

@media (max-width: 1200px) {
    .contact-container .contact-text {
        width: 50%;
    }
}

.contact-container .contact-btns {
    display: flex;
    align-items: center;
}

.contact-container button {
    font-size: 1rem;
    padding: 10px 0;
    border-radius: 20px;
    background-color: var(--color-bg-secondary);
    color: #fff;
    border: none;
    cursor: pointer;
    height: 50px;
    font-weight: bold;
    width: 170px;
}

.contact-container button:last-child {
    margin-left: 1rem;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container button:last-child svg {
    margin-left: 5px;
}

@media (max-width: 500px) {
    .contact-container h1 {
        font-size: 1.8em;
    }
    .contact-container button {
        width: max-content;
        font-size: 0.9em;
        padding: 10px;
    }
}

@media (max-width: 812px) {
    .contact-container .contact-text {
        width: 100%;
    }
}


.blog-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #f9f9f9;
    padding: 2.5rem 10vw;
    justify-content: space-between;
}

@media (max-width: 800px) {
    .blog-container {
        padding: 2.5rem 5vw;
    }
}

.blog-container .blog_apresentacao {
    text-align: center;
}

.blog-container .blog_apresentacao h2 {
    font-size: 1.7rem;
    margin: 1rem 0;
}


.blog-container .blog_apresentacao p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.blog-container .blog_fields_box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 30px;
    justify-content: center;
}

@media (max-width: 1490px) {
    .blog-container .blog_fields_box {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas médias */
    }
}

@media (max-width: 800px) {
    .blog-container .blog_fields_box {
        grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
    }
}

.blog-container .blog_fields_box .blog_field {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.198);
    border-radius: 5px;
    overflow: hidden;
    justify-content: space-between;
    flex-direction: column;
    display: flex;
    background-color: #fff;
    position: relative;
}

.blog-container .blog_fields_box .blog_field:last-child {
    margin: 0;
}

.blog-container .blog_fields_box .blog_field .blog_img_box {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}



.blog-container .blog_fields_box .blog_field .blog_img_box img {
    width: 100%;
    height: 100%;
}


.blog-container .blog_fields_box .blog_field .blog_field_bottom {
    padding: 0 1.5rem;
    height: max-content;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.blog-container .blog_fields_box .blog_field .blog_field_date {
    display: flex;
    align-items: center;
    padding: 20px;
    color: #696969;
}

.blog-container .blog_fields_box .blog_field .blog_field_date span {
    margin-left: 5px;
}

.blog-container .blog_fields_box .blog_field .blog_field_bottom h2 {
    font-size: 1.2rem;
    color: var(--color-text-third);
}

.blog-container .blog_fields_box .blog_field .blog_field_bottom .noticias_text_box {
    margin: 1rem 0;
    overflow: hidden;
    height: 100%;
}

.blog-container .blog_fields_box .blog_field .blog_field_bottom  .noticias_text_box p {
    font-size: 0.9rem;
    line-height: 1.5em;
}

.blog-container .blog_fields_box .blog_field .blog_field_btn {
    padding: 0 0 1.5rem;
}

.blog-container .blog_fields_box .blog_field .blog_field_btn button {
    display: flex;
    width: 100%;
    margin-top: 1rem;
    align-items: center;
    border-radius: 25px;
    border: 1px solid var(--color-text-third);
    padding: 3px;
    cursor: pointer;
    background-color: transparent;
    justify-content: space-between;
    color: var(--color-text-third);
}

.blog-container .blog_fields_box .blog_field  .blog_field_btn button:hover {
    background-color: var(--color-bg-primary);
    color: #fff;
    border: 1px solid var(--color-bg-primary);
}

.blog-container .blog_fields_box .blog_field  .blog_field_btn button span{
    margin-left: 20px;
    color: currentColor;
}

.blog-container .blog_fields_box .blog_field  .blog_field_btn button .box_svg {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--color-text-third);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.blog-container .blog_fields_box .blog_field .blog_field_btn button:hover .box_svg {
    background-color: #fff;
    color: var(--color-text-third);
}

@media (max-width: 800px) {
    .blog-container .blog_fields_box .blog_field:not(:first-child) {
        flex-direction: row;
        height: 130px;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) button {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: transparent; /* Mudar para transparente */
        top: 0;
        left: 0;
        display: flex;
        z-index: 1; /* Reduzir z-index */
        opacity: 0; /* Tornar invisível mas clicável */
        cursor: pointer;
    }
    /* Resto do CSS permanece igual */
    .blog-container .blog_fields_box .blog_field:not(:first-child) .group_blog_box {
        display: flex;
        flex-direction: column;
        z-index: 0; /* Garantir que fique abaixo do botão */
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) .blog_img_box {
        height: 150px;
        width: 150px;
        min-width: 150px;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) .blog_field_bottom {
        padding: 0 1.5rem 0;
        margin-top: 0;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) .blog_field_bottom .noticias_text_box {
        min-height: 0;
        height: max-content;
        margin: 0.5rem 0;
        display: none;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) .group_field_blog h2 {
        font-size: 1rem;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) .group_field_blog p {
        display: none;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) .group_blog_box .blog_field_date {
        padding: 1.2rem 1.5rem 15px;
    }
}

@media (max-width: 520px) {
    .blog-container .blog_fields_box .blog_field:not(:first-child) .group_blog_box .blog_field_date {
        margin-bottom: -5px;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) .group_blog_box .blog_field_date span {
        font-size: 0.9rem;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) .group_blog_box .blog_field_date svg {
        width: 15px;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) {
        min-height: 100px;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) .group_field_blog h2 {
        font-size: 0.9rem;
        margin-top: -10px;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) .blog_field_bottom .noticias_text_box {
        margin: 0 0 0.5rem;
    }
}

@media (max-width: 600px) {
    .blog-container .blog_fields_box .blog_field:not(:first-child) .blog_img_box {
        width: 120px;
        min-width: 120px;
    }
    .blog-container .blog_fields_box .blog_field:not(:first-child) .group_field_blog h2 {
        font-size: 0.9rem;
    }
}

@media (max-width: 450px) {
    .blog-container .blog_fields_box .blog_field:not(:first-child) .blog_img_box {
        width: 100px;
        min-width: 100px;
    }
}




.faq-container {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 3rem 10vw;
    justify-content: space-between;
    background-color: #fff;
}

@media (max-width: 800px) {
    .faq-container {
        padding: 3rem 5vw;
    }
}

.faq-container .faq-top {
    display: flex;
    flex-direction: column;	
}

.faq-container .faq-top .faq-top-text {
    width: 70%;
}

.faq-container .faq-top .faq-top-btn {
    display: flex;
    align-items: center;
}

.faq-container .faq-top .faq-top-btn button {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: var(--color-bg-secondary);
    color: #fff;
    border: none;
    cursor: pointer;
}

.faq-container .faq-top .faq-top-btn button svg {
    margin-right: 10px;
}

.faq-container .faq-top .faq-top-btn button:last-child {
    margin-right: 0;
    background-color: transparent;
    color: var(--color-text-third);
    border: 1px solid var(--color-text-third);
}

.faq-container .faq-top h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.faq-container .faq-top p {
    margin-bottom: 1rem;
}

.faq-container h3 {
    font-size: 1.2rem;
}

@media (max-width: 1110px) {
    .faq-container .faq-top {
        font-size: 1.9rem;
    }
}

.faq-container .questions-fields-box {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    width: 800px;
}

@media (max-width: 1050px) {
    .faq-container {
        flex-direction: column;
    }
    .faq-container .faq-top {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 40px;
        text-align: center;
    }
    .faq-container .faq-top .faq-top-text {
        width: 100%;
    }
    .faq-container .questions-fields-box {
        margin-left: 0;
        width: 100%;
    }
}

.faq-container .questions-fields-box .question-field {
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    background-color: #f9f9f9;
    width: 100%;
}

.faq-container .questions-fields-box .question-field .box-icons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-container .questions-fields-box .question-field .box-icons svg:last-child {
    display: none;
}

.faq-container .questions-fields-box .question-field.active {
    border: 2px solid #06ba70;
    background-color: #fff;
}

.faq-container .questions-fields-box .question-field:last-child {
    margin-bottom: 0;
}

.faq-container .questions-fields-box .question-field header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-container .questions-fields-box .question-field header .question-number {
    align-items: center;
    display: flex;
}

.faq-container .questions-fields-box .question-field header .question-number span {
    margin-right: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #696969;
}

.faq-container .questions-fields-box .question-field header svg {
    transition: transform 0.3s ease;
    color: var(--color-text-third);
}


.faq-container .questions-fields-box .question-field.active header svg:first-child {
    display: none;
}

.faq-container .questions-fields-box .question-field.active header svg:last-child {
    display: block;
}

.faq-container .questions-fields-box .question-field .question-field-bottom {
    display: none;
    margin-top: 5px;
    padding: 15px 0 0;
}

.faq-container .questions-fields-box .question-field.active .question-field-bottom {
    display: flex;
}



.testemonial_container {
    background-color: #f9f9f9;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    flex-direction: column;
}

.testemonial_container .box_testemonial_left {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 0 10vw;
}

@media (max-width: 800px) {
    .testemonial_container .box_testemonial_left {
        padding: 0 5vw;
    }
}

.testemonial_container .box_testemonial_left p {
    color: #ff8d1e;
    font-weight: bold;
    margin-bottom: 10px;
}

.testemonial_container .box_testemonial_left h2 {
    color: var(--color-bg-third);
    font-size: 1.8rem;
    margin: 5px 0 20px;
    text-align: center;
}


.testemonial_container .box_testemonial_right {
    width: 100%;
    display: grid;
    grid-auto-flow: column; /* Configura o fluxo para adicionar colunas em vez de linhas */
    grid-template-rows: repeat(2, auto); /* Define 2 linhas fixas */
    gap: 25px;
    justify-content: start; /* Alinha os itens ao início horizontalmente */
    overflow-x: scroll;
    padding: 10px;
    pointer-events: none;
}

.testemonial_container .box_testemonial_right::-webkit-scrollbar {
    width: 0;
}

.testemonial_container .box_testemonial_right .testemonial_field {
    display: flex;
    padding: 20px;
    background-color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.198);
    flex-direction: column;
    border-radius: 10px;
    width: 400px;
    justify-content: center;
}

.testemonial_container .box_testemonial_right .testemonial_field .testemonial_field_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.box_testemonial_right .testemonial_field .testemonial_field_top .group_cliente_name {
    position: absolute;
    top: 0;
    width: 100%;
}

.box_testemonial_right .testemonial_field .testemonial_field_top .group_cliente_name span {
    font-size: 0.9rem;
    margin-bottom: -30px;
}

.box_testemonial_right .testemonial_field .testemonial_field_top .classificao_estrela {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.box_testemonial_right .testemonial_field .testemonial_field_bottom {
    margin-top: 15px;
}

.classificao_estrela .estrela {
    font-size: 24px;
    color: #dddada;
}

.classificao_estrela .estrela.ativa {
    color: gold;
}


.testemonial_container .box_testemonial_bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    padding: 0 5vw;
}

.testemonial_container .box_testemonial_bottom .sugestion_testemonial {
    margin-bottom: 30px;
    text-align: center;
    width: 55%;
}

@media (max-width: 800px) {
    .testemonial_container .box_testemonial_bottom .sugestion_testemonial {
        width: 80%;
    }
}

@media (max-width: 500px) {
    .testemonial_container .box_testemonial_bottom .sugestion_testemonial {
        width: 100%;
    }
    .testemonial_container .box_testemonial_right .testemonial_field {
        width: 350px;
    }
} 

.testemonial_container .box_testemonial_bottom button {
    height: 45px;
    border-radius: 20px;
    border: none;
    color: white;
    font-weight: bold;
    background-color: #ff8d1e;
    cursor: pointer;
    padding: 0 40px;
    width: max-content;
}

#box_criar_testemunho_section {
    background-color: #74747442;
    display: none;
    position: fixed;
    z-index: 1000;
    overflow: hidden;
    height: 100%;
    width: 100%;
    top: 0;
    padding: 0 1em;
}


#box_criar_testemunho_section .box_criar_testemunho {
    position: fixed;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.198) ;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    overflow: hidden;
}

#box_criar_testemunho_section .box_criar_testemunho .box_testemunho_top {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#box_criar_testemunho_section .box_criar_testemunho .box_testemunho_top .top {
    align-items: center;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#box_criar_testemunho_section .box_criar_testemunho .box_testemunho_top  .top h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
    display: flex;
}

#box_criar_testemunho_section .box_criar_testemunho .box_testemunho_top .top button {
    cursor: pointer;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: black;
    margin: -15px 0 0;
    width: max-content;
}

.box_criar_testemunho .box_testemunho_top button svg {
    width: 27px;
}

.box_criar_testemunho .box_field_group {
    display: flex;
    margin: 20px 0;
    flex-direction: column;
}

@media (max-width: 450px) {
    .box_criar_testemunho {
        width: 100%;
        border-radius: 0 !important;
        min-width: 100%;
        height: 100%;
        justify-content: space-between;
    }
    .box_criar_testemunho .box_field_group {
        height: 100%;
    }
}

.box_criar_testemunho .box_field_group .testemundo_field_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    position: relative;
}

.box_criar_testemunho .box_field_group .testemundo_field_box:last-child {
    margin-bottom: 0;
}

.box_criar_testemunho .box_field_group .testemundo_field_box label {
    margin-bottom: 5px;
}

.box_criar_testemunho .box_field_group .testemundo_field_box input, .box_criar_testemunho .box_field_group .testemundo_field_box select {
    border-radius: 10px;
    padding: 0 10px;
    height: 45px;
    display: flex;
    border: 1px solid #999999;
}

.box_criar_testemunho .box_field_group .testemundo_field_box select:focus option[value=""] {
    display: none;
}

.box_criar_testemunho .box_field_group .testemundo_field_box textarea {
    height: 150px;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    border: 1px solid #999999;
    resize: none;
}

.textarea-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contador-caracteres {
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 12px;
    color: #666;
}

.contador-caracteres.limite {
    color: red;
}

.box_criar_testemunho .box_field_group .testemundo_field_box .box_sms_error_box {
    font-size: 13px;
    color: red;
    width: 100%;
    display: none;
    justify-content: flex-end;
    position: absolute;
    margin-top: 70px;
}

.box_criar_testemunho button {
    height: 45px;
    min-height: 45px;
    width: 100%;
    font-weight: bold;
    border: 1px solid #0d3461;
    border-radius: 20px;
    cursor: pointer;
    background-color: #0d3461;
    color: #fff;
    position: relative;
    overflow: hidden;
}

footer {
    background-color: var(--color-bg-third);
    padding: 2em 10vw 0;
    color: white;
}

@media (max-width: 800px) {
    footer {
        padding: 2em 5vw 0;
    }
}
 
footer .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    justify-content: center;
    border-bottom: 1px solid white;
    padding: 1rem 0 2rem;
}

footer .footer-top h2 {
    font-size: 1.1rem;
    margin-bottom: 1em;
}

footer .footer-top ul li {
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
}

footer .footer-top ul li svg {
    margin-right: 5px;
    color: white;
}

footer .footer-top ul li a {
    color: white;
    align-items: center;
    display: flex;
}

footer .footer-top .redes_social {
    display: flex;
}

footer .footer-top .redes_social li {
    margin-right: 1em;
}

footer .footer-bottom {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}


