/* Estilos gerais do site */

body {
    font-family: 'Josefin Sans', sans-serif;
    color: #151615;
    background-color: #100f0f;
    margin: 0px;
    padding: 0px;
    background-image: url(./img/fotos/fundo.png);
}

.contato-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    background: #191919;
    /* Dark background color */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    opacity: 95%;
}

.contato-container h2 {
    font-size: 24px;
    color: #e8e9ec;
    /* Accent color */
    text-align: center;
    margin-bottom: 20px;
    opacity: 75%;
}

.contato-form {
    display: flex;
    flex-direction: column;
    opacity: 75%;
}

.contato-form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #e2b9c6;
    /* Light pink color */
    opacity: 75%;
}

.contato-form input,
.contato-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 16px;
    width: 97%;
    background-color: #100f0f;
    /* Dark background for inputs */
    color: #ffffff;
    /* White text color */
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: #f9004d;
    /* Accent color */
    outline: none;
    opacity: 75%;
}

.contato-form button {
    padding: 10px 20px;
    background-color: #f9004d;
    /* Accent color */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    opacity: 75%;
}

.contato-form button:hover {
    background-color: #0cc78c;
    /* Hover color */
}

.contato-form textarea {
    resize: vertical;
}