/* Formatação base da página */

:root {
    --border: 0.1rem solid #000000;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: none;
    transition: 0.2s linear;
    font-family: "Roboto", sans-serif;
}

.p {
    color: #000;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.8;
    padding: 1rem 0;
    text-align: justify;
}

section {
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    background-color: #ffffff;
    margin-top: -20px;
    height: 107px;
}

.header img {
    width: 30%;
    height: 30%;
}

.header section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

h2 {
    font-size: 3rem;
    margin-top: 5rem;
}

h3 {
    font-size: 2.0rem;
}

/* Formatação da Barar de Menus */

.header .navbar {
    margin-left: -5%;

}

.navbar {
    margin-top: -10px;
}

.navbar a {
    margin: 0 1rem;
    font-size: 1.3rem;
    color: #000;
}

.navbar a:hover {
    color: #000;
    border-bottom: var(--border);
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* Formatação da Home */

.btn {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 10%;
}

.home-container section{
    display: flex;
    align-items: center;
    min-height: 50vh; 
}

/* Formatação History */

.tittle.history {
    padding-top: 4rem;
    font-size: 4rem;
}

.content {
    background-position: center;
    background-size: cover;
    font-size: 1.1rem;
}

.content h3 {
    color: #000;
    font-size: 3em;
}

.content_about {
    color: #000;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.8;
    padding: 1rem 0;
    text-align: justify;
}

.about .row {
    display: flex;
    text-align: justify;
    align-items: center;
    gap: 1.5rem;
}

.about .row .content{
    padding: 2rem;
}

.about .row .content h3 {
    font-size: 3rem;
}

.about .row .content p {
    font-size: 1.6rem;
    padding: 1rem 0;
    line-height: 1.8rem;
}

.tittle {
    padding-top: 4rem;
    font-size: 4rem;
}

/* Formatação Serviços */

.services .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.services .box-container .box {
    text-align: center;
    /*border: var(--border);*/
    padding: 5rem;
}

.services img {
    width: 300px;
    height: 200px;
}

/* Formatação Formulário */

form {
    display: grid;
    grid-gap: 10px;
    background-color: #f3f3f3;
    padding: 5% 0% 5% 25%;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 60%;
    padding: 8px;
    box-sizing: border-box;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 10%;
}

button:hover {
    background-color: #555;
}

/* Formatação Rodape */

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}




