@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

@import url('mobile.css');
@import url('home.css');
@import url('servicos.css');
@import url('marcas.css');
@import url('sobre.css');
@import url('footer.css');

/* Início estilos gerais */
* {
    font-family: "Roboto Condensed", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e9f1e7;
}

header {
    width: 100%;
    padding: 12px 20px 5px 20px;
    position: fixed;
    transition: 0.3s;
    z-index: 1001;
}

.header.rolagem {
    background-color: white;
    padding: 5px 20px 0px 20px;
}

.header.rolagem .nav-list{
    margin-top: 10px;
}

/* .header.rolagem .logo{
    max-height: 50px;
} */

::-webkit-scrollbar {
    width: 10px;
}


::-webkit-scrollbar-track {
    background-color: #73cf6034;
}

::-webkit-scrollbar-thumb {
    background-color: #73cf60;
    /* background-color: tomato;
    background-image: url(screwdriver.svg);
    background-size: 160px 100px;
    background-origin: content-box;
    background-position:top;
    background-repeat: no-repeat; */
    border-radius: 10px;
}


/* Início Estilos navbar */

.navbar {
    width: 100%;
    padding-right: 4%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    /* position: fixed; */
}

.logo{
    max-width: 200px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 48px;
    transition: 0.5s;
}

.nav-item a{
    text-decoration: none;
    color: #1d1d1dda;
    font-weight: 600;
}

.nav-item.active a {
    color: black;
    border-bottom: 3px solid rgb(20, 160, 20);
}

.navbar.rolagem {
    background-color: white;
}

.logo.rolagem {
    max-width: 100px;
}

/* Fim Estilos navbar */
/* Início Estilos Botão */

.btn-contato {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(20, 160, 20);
    border-radius: 15px;
    padding: 10px 14px;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .5s ease;
}

.btn-contato a {
    text-decoration: none;
    font-weight: 600;
    color: white;
}

.btn-contato img {
    margin-left: 5px;
    height: 20px;
}

.btn-contato:hover {
    transform: scale(1.02);
    background-color: rgb(40, 165, 40);
}

.btn-secundario {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2d2d2d;
    border-radius: 15px;
    padding: 10px 14px;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .5s ease;
}

.btn-secundario a {
    text-decoration: none;
    font-weight: 600;
    color: white;
}

.btn-secundario:hover {
    transform: scale(1.02);
    background-color: #1d1d1dda;
}

/* Início Social Media Buttons */

.social-media-buttons {
    display: flex;
    gap: 15px;
}

.social-media-buttons img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    padding: 5px;
    height: 35px;
    background-color: white;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
    transition: box-shaddow .3s ease;
}

.social-media-buttons img:hover {
    box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}

/* Fim Social Media Buttons */

#btn-whatsapp .btn-secundario {
    position: fixed;
    bottom: 0;
    right: 0;
    margin-bottom: 10px;
    margin-right: 10px;
    border-radius: 50%;
    padding: 5px;
    width: 40px;
    height: 40px;
    background-color: rgb(20, 160, 20);
    z-index: 998;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btn-whatsapp a {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#btn-whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fim Estilos Botão */


#content {
    padding: 0 3% ;
}


.linha {
    margin: 4%; /* Centraliza a linha horizontalmente */
    width: 80%; /* Faz a linha responsiva, ocupando 80% da largura da tela */
    max-width: 800px; /* Limita a largura máxima */
    height: 4px; /* Espessura da linha */
    background-color: #1d1d1dda; /* Cor da linha */
    border-radius: 50px; /* Arredonda as bordas para um visual suave */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Adiciona uma leve sombra para profundidade */
}


/* Fim estilos gerais */

