/* manutencao.css */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1d;
    color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.maintenance-container {
    text-align: center;
    max-width: 500px;
    padding: 20px;
    border-radius: 10px;
    background-color: #222;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.maintenance-icon {
    width: 100px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    color: #25d366;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 1em;
    color: #ddd;
}

.contact-info a {
    color: #25d366;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #128c7e;
}

/* Responsividade */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }
}
