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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    color: #333;
}

.main-content {
    min-height: calc(100vh - 120px); /* Ajuste para altura do rodapé */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.maintenance-container {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 200px;
    height: auto;
}

h1 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #FF6B00;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FF6B00;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.whatsapp-button:hover {
    background-color: #E65000;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 1rem 0 0.2rem 0;
    color: #7f8c8d;
    font-size: 0.95rem;
    background: transparent;
    margin-top: auto;
}

.footer p {
    margin: 0.2rem 0;
    letter-spacing: 0.5px;
} 