
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f6f9;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}


.maintenance-container {
    background: #ffffff;
    max-width: 600px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 5px solid #dc143c; 
}


.image-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.maintenance-img {
    max-width: 85%;
    height: auto;
    object-fit: contain;

    animation: floatAnimation 4s ease-in-out infinite;
}


.title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}


.status-box {
    display: inline-flex;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 40px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #ff9800; 
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}


.status-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ff9800;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulse 2s infinite;
    opacity: 0.4;
}

.status-text {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}


.maintenance-footer {
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    font-size: 13px;
    color: #999999;
    line-height: 1.5;
}

.maintenance-footer a {
    color: #dc143c;
    text-decoration: none;
    font-weight: 600;
}

.maintenance-footer a:hover {
    text-decoration: underline;
}


@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}


@media (max-width: 480px) {
    .maintenance-container {
        padding: 30px 20px;
    }
    .title {
        font-size: 22px;
    }
    .description {
        font-size: 14px;
    }
}


.parent {
    position: fixed;
    top: 20px;     
    left: 20px;      
    z-index: 1000;   
}

.child {
    background-color: #005eff; 
    color: white;              
    border: none;             
    padding: 10px 20px;        
    font-size: 16px;           
    font-family: sans-serif;  
    border-radius: 5px;        
    cursor: pointer;           
    transition: background 0.3s ease; 
}


.child:hover {
    background-color: #b30000; 
}

button{
      animation: 
        0.8s cubic-bezier(0.25, 1, 0.5, 1) 0s 0.8 running myFrameDash,
        moverDegradado 1.1s linear infinite;
        
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease, filter 0.25s ease;
}


@keyframes myFrameDash {
    0% {
        transform: scale(0);  
        opacity: 0;            
    }
    70% {
        transform: scale(1.2); 
        opacity: 0.8;
    }
    100% {
        transform: scale(1);   
        opacity: 1;           
    }
}