
body, html {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.spee {
    position: absolute;
    left: 0;
    top: 0;
}

.nav {
    display: flex;
    justify-content: center;
    margin: auto;
}


.welcome-page {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    width: 80%; 
    height: 80%;
}



.text > h1{
    font-size: 70px;
    text-align: left;
}

.text > p{
    font-size: 25px;
    text-align: left;
    line-height: 1.5;
}

.text {
    flex: 1;
    padding: 0 20px; 
}

.form-box {
    background-color: #fff;
    padding: 20px; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
    width: 60%;
    max-width: 600px;
    margin: 30px auto; 
    margin-bottom: 50px; 
    position: relative;
    top: 35px;
}

.form {
    flex: 1;
    padding: 0 20px; 
}

.form input,
.form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../Imagens/Capa-do-site.png);
    background-size: cover;
    background-position: center;
}

.background-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
}


.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="tel"],
.form-box button {
    width: 100%;
    padding: 10px; 
    margin-bottom: 15px;
    border: 1px solid #ccc; 
    border-radius: 5px; 
    box-sizing: border-box; 
}

.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="tel"] {
    max-width: calc(100% - 20px); 
}

.form-box button {
    background-color: #f01717;
    color: #fff; 
    cursor: pointer; 
    transition: background-color 0.3s;
}

.form-box button:hover {
    background-color: #000000; 
}


footer {
    background-color: black;
    padding: 20px 0;
}

footer > img {
    display: block;
    margin: 0 auto;
}

footer > p {
    color: gray;
    text-align: center;
}


@media screen and (max-width: 768px) {
   
    .content {
        width: 90%;
    }

    .image {
        flex: 0 0 calc(48% - 10px);
        max-width: calc(35% - 10px);
    }
    footer > p {
        font-size: 14px;
    }

    footer > img{
       max-width: 50%;
    }

    .text > h1 {
        font-size: 40px; 
    }

    .text > p {
        font-size: 18px; 
    }

    .form-box {
        width: 90%; 
    }
}




