/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f6f7f6;
    color: #3A3030;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    line-height: 1.25;
}

/* Contenedor central */
.construction-container {
    width: 90%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

.construction-box {
    background-color: #ffffff;
    padding: 50px 30px;
    border-radius: 6px;
    border: 1px solid #F1F1F1;
}

.construction-box h1 {
    font-size: 2.5rem;
    color: #3A3030;
    margin-bottom: 20px;
}

.construction-box p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 30px;
}

/* Detalle visual con el color corporativo */
.status-badge {
    display: inline-block;
    background-color: #E40912;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}