/* Resetando padrões */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo da página */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Seção de boas-vindas */
.welcome {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a, #4d4d4d);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.welcome .content {
    max-width: 600px;
}

.title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #00e6a4;
}

.description {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #ccc;
}

.sub-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #bbb;
}

.cta-btn {
    padding: 15px 25px;
    background-color: #00e6a4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #009c6a;
}

/* Seção de Contato */
.contact {
    padding: 60px 0;
    background-color: #222;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00e6a4;
}

.contact p {
    font-size: 1.2em;
    color: #bbb;
    margin-bottom: 30px;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
}

.contact input {
    padding: 15px;
    width: 80%;
    margin-bottom: 20px;
    font-size: 1.2em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    padding: 15px 25px;
    background-color: #00e6a4;
    color: #fff;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 85%;
}

.contact button:hover {
    background-color: #009c6a;
}

/* Footer */
footer {
    background-color: #121212;
    padding: 20px 0;
    text-align: center;
    color: #bbb;
}

footer a {
    color: #00e6a4;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .title {
        font-size: 2.5em;
    }

    .description,
    .sub-description {
        font-size: 1.2em;
    }

    .cta-btn {
        font-size: 1em;
        padding: 10px 20px;
    }

    .contact input {
        width: 90%;
    }

    .contact button {
        width: 90%;
    }
}
