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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.maintenance-container {
    background: #1a1a1a;
    border: 2px solid #dc2626;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    max-width: 600px;
    width: 100%;
    overflow: hidden;
}

.maintenance-content {
    padding: 60px 40px;
    text-align: center;
}

.logo-section {
    margin-bottom: 30px;
}

.logo-image {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.maintenance-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.maintenance-message {
    font-size: 1.3rem;
    color: #e5e5e5;
    margin-bottom: 50px;
    font-weight: 500;
}

.search-section {
    margin-top: 40px;
}

.search-title {
    font-size: 1.1rem;
    color: #e5e5e5;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.6;
    white-space: nowrap;
    word-wrap: normal;
    overflow: visible;
}

.cep-form {
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.cep-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #404040;
    border-radius: 10px;
    font-size: 1rem;
    background: #2d2d2d;
    color: #e5e5e5;
    transition: all 0.3s ease;
    outline: none;
}

.cep-input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.cep-input::placeholder {
    color: #999;
}

.search-btn {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border: none;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.5);
}

.search-btn:active {
    transform: translateY(0);
}

.animation-container {
    margin-top: 30px;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid #404040;
    border-top: 4px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.animation-text {
    color: #dc2626;
    font-weight: 600;
    font-size: 1rem;
}

.message-container {
    margin-top: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.redirect-message {
    color: #e5e5e5;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.5);
}

.footer {
    background: #2d2d2d;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #404040;
}

.footer p {
    color: #999;
    font-size: 0.9rem;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .maintenance-content {
        padding: 40px 20px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .search-btn {
        width: 100%;
    }
}
