/* ################################## CONFIGURACOES GERAIS ################################## */
:root {
    --preto: #1C1E21;
    --branco: #F2F2F2;
    --azul-claro: #00AEEF;
    --azul-escuro: #3238A6;
    --fonte-padrao: Arial, sans-serif !important; 
    /*--fonte-padrao: Poppins, sans-serif;*/
}
* {
    margin: 0;
    padding: 0;
}
html {
    font-family: var(--fonte-padrao);
    scroll-padding-top: 150px;
    scroll-behavior: smooth;
}
body {
    background-color: var(--branco);
}
a {
    text-decoration: none;
    color: var(--azul-escuro);
    font-size: 1rem;
}
h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.5rem;
    font-weight: 300;
}
p {
    font-size: 1rem;
}
a {
    text-decoration: none !important;
}
main {
    position: relative;
    margin-top: 0.25rem;
}
.invisivel {
    display: none;
    visibility: hidden;
}
.botao-orcamento {
    background-color: var(--azul-escuro);
    border: 1px solid var(--azul-escuro);
    border-radius: 60px;
    color: var(--branco);
    font-family: var(--fonte-padrao);
    font-size: medium;
    font-weight: bold;
    height: 60px;
    padding: 0 20px;
    text-shadow: -1px 0px 2px var(--preto);
    scale: 1;
    transition: transform 0.5s, background-color 0.5s, border 0.5s, color 0.5s;
}
.botao-orcamento:hover {
    background-color: var(--branco);
    color: var(--azul-escuro);
    cursor: pointer;
    text-shadow: -1px 0px 2px var(--preto);
    scale: 1.1;
    transition: transform 0.5s, background-color 0.5s, border 0.5s, color 0.5s;
}
/* ################################## MENU NAVEGACAO ################################## */
nav {
    display: flex;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: -1px 0px 10px;
    z-index: 9999;
    border-top: none;
    position: absolute;
}
.navbar-nav a {
    color: var(--azul-escuro);
    text-decoration: none;
    font-size: 1rem;
    vertical-align: middle;
    padding: 8px;
    transition: transform 0.5s;
    transition-duration: 0.5s;
    transition-property: color;
}
.navbar-nav a:hover {
    color: var(--azul-claro);
    transition: transform 0.5s;
    transition-duration: 0.5s;
    transition-property: color;
}
nav ul {
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
nav ul li {
    align-items: center;
    display: inline-block;
    width: auto;
}
/* ################################## CONTEUDO PRINCIPAL ################################## */
main {
    color: var(--branco);
    height: auto;
}
section {
    height: auto;
    text-align: center;
}
/* ################# SESSAO APRESENTACAO ################# */
.apresentacao h1, h2, p {
    padding-bottom: 0.25rem;
}
.apresentacao h2 {
    font-weight: 300;
}
.nome-empresa {
    color: var(--azul-escuro);
    font-size: 3.5em;
    line-height: 1em;
}
/* #################   SESSAO SERVICOS   ################# */
.servicos {
    color: var(--preto);
    height: auto;
}
.servicos h2 {
    font-weight: 150;
}
.container-services {
    display: flex;
    flex-wrap: wrap; /* Permite a quebra de linha dos elementos */
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    padding-bottom: 60px;
    height: auto;
}
.box-service {
    background-color: var(--branco);
    border-radius: 50px;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.3);
    color: var(--preto);
    margin: 0.5rem;
    max-width: 40vw; /* Define a largura máxima */
    min-height: 50vh;
    text-align: center;
    padding: 1rem;
    transition: transform 0.5s;
    transition-duration: 0.5s;
    transition-property: background-color;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-between;
}
.box-service h2 {
    font-weight: 150;
}
.box-service-img {
    width: 100px;
    height: 100px;
    transition: transform 0.5s;
    transition-duration: 0.5s;
    transition-property: scale;
    scale: 1;
}
.box-service:hover {
    border-color: orange;
    background-color: orange;
    color: var(--branco);
    transition: transform 0.5s;
    transition-duration: 0.5s;
    transition-property: background-color;
}
.box-service:hover .box-service-img {
    transition: transform 0.5s;
    transition-duration: 0.5s;
    transition-property: scale;
    scale: 1.1;
}
/* Estilos adicionais para garantir responsividade */
@media (min-width: 576px) {
    .box-service {
        width: calc(50% - 25px); /* Ajusta a largura para 50% em telas médias */
    }
}

@media (min-width: 992px) {
    .box-service {
        width: calc(25% - 25px); /* Ajusta a largura para 25% em telas grandes */
    }
}
/* #################   SESSAO DEPOIMENTOS  ################# */
.depoimentos {
    color: var(--preto);
    background-color: #CACACA;
}
.depoimentos h2 {
    font-weight: 300;    
}
.reviews-container {
    margin-top: 2em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: auto;
}
.review:hover {
    transition: transform 0.5s;
    transition-duration: 0.5s;
    transition-property: scale;
    scale: 1.1;
}
.review {
    scale: (1.0);
    transition: transform 0.5s;
    transition-duration: 0.5s;
    transition-property: scale;
    width: auto;
}
.review a {
    text-decoration: none;
    color: var(--texto-claro);
}
.review-estrelas span {
    background-image: url("../img/star.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    display: inline-block;
}
.review-estrelas span:hover {
    transform: scale(1.2);
}
.perfil-img img {
    width: 128px;
    height: 128px;
}
.perfil-nome {
    margin-top: 10px;
    font-weight: bold;
}
.perfil-nome, .review-data {
    font-size: 0.6em;
}
.review-conteudo {
    font-size: 0.8em;
    text-align: center;
}
/* ##################################   MARCAS   ################################## */
.marcas {
    background: var(--branco);
    color: var(--preto);
    display: flex;
    flex-direction: column;
}
.marcas h2 {
    padding-bottom: 80px;
}
.slide {
    margin-left: 2.5rem;
    width: auto;
    height: 100;
}
/* ################################## QUEM SOMOS ################################## */
.quem-somos {
    color: var(--preto);
    height: auto;
}
.quem-somos p {
    text-align: left;
    padding: 0;
}
.quem-somos h2 {
    font-weight: 300;    
}
.nossa-historia {
    display: grid;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    text-align: center;
    width: 80%;
}
.galeria img {
    align-self: center;
    border-radius: 20px;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.3);
    height: auto;
    width: 300px;
}
/* #################   SESSAO CONTATO  ################# */
.contato {
    background-color: var(--branco);
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.3);
    color: var(--preto);
    margin: 0 auto;
    position: relative;
    width: 70%;
}
.contato h1 {
    font-weight: bold;
    text-align: center;
    padding-bottom: 50px;
}
.formulario-label {
    font-weight: bold;
}
.formulario-field, .formulario-field-textarea {
    background-color: var(--branco);
    border-radius: 5px;
    border: 1px solid var(--azul-escuro);
    margin-bottom: 15px;
    padding: 15px;
    width: 90%;
}
.formulario-field-textarea {
    height: 25vh;
}
.formulario-footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.formulario-botao-submit {
    background-color: var(--branco);
    border: 1px solid var(--azul-escuro);
    border-radius: 60px;
    color: var(--azul-escuro);
    font-family: var(--fonte-padrao);
    font-size: medium;
    font-weight: bold;
    height: 45px;
    padding: 0 20px 0 20px;
    transition: transform 0.5s;
    transition-duration: 0.5s;
    transition-property: background-color, border, color;
}
.formulario-botao-submit:hover {
    background-color: var(--azul-escuro);
    color: var(--branco);
    cursor: pointer;
    transition: transform 0.5s;
    transition-duration: 0.5s;
    transition-property: background-color, border, color;
}
.contato-informacoes h2 {
    padding-top: 10px;
    padding-bottom: 35px;
    text-align: center;
}
.contato-informacoes h3 {
    padding-top: 15px;
}
.contato-informacoes {
    text-align: left;
    justify-content: baseline;
}
.material-icons {
    overflow: hidden;
    vertical-align: middle;
}
.contato-informacoes svg {
    fill: var(--preto);
    height: 54px;
    width: 54px;
}
.social-media-icon-link {
    align-items: center;
    color: var(--preto);
    display: flex;
}
.social-media-icon-label {
    padding-left: 10px;
}
/* ################################## RODAPÉ ################################## */
footer {
    align-items: center;
    background-color: var(--azul-escuro);
    color: var(--branco);
    display: flex;
    height: 80px;
    justify-content: center;
    width: 100%;
}
footer p, footer a {
    color: var(--branco);
    font-size: 0.8rem;
    padding: 0;
}
/* ################################## ANIMACOES E EFEITOS ################################## */
@keyframes pulsar {
    to {
        box-shadow: 0 0 0 40px rgba(232, 76, 61, 0);
        border-radius: 50px;
    }
}
/* Media queries */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    nav ul li {
        display: block;
        text-align: left;
        padding: 10px 0;
    }
    .menu-toggle {
        display: flex;
    }
    main {
        margin-top: 5rem;
    }
}