/* Tipografías Personalizadas */
/* Google Fonts: Merriweather (serif, bold) & Open Sans (sans-serif, regular) */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Open+Sans:wght@400&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* Evita scroll innecesario */
}

/* Logo Adhoc posicionado arriba a la izquierda */
.header-logo {
    position: absolute;
    top: 50px;
    left: 60px;
}

.header-logo img {
    height: 55px; /* Ajuste proporcional al diseño original */
    width: auto;
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 85%;
    gap: 40px;
}

/* Contenedor de la ilustración mantenimiento.svg */
.illustration-box {
    flex: 1.2;
    display: flex;
    justify-content: center;
}

.illustration-box img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* Contenedor del texto */
.text-content {
    flex: 1;
}

h1 {
    font-family: 'Merriweather', serif;
    font-size: 82px; /* Tamaño prominente */
    margin: 0;
    color: #000000;
    font-weight: 700;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    line-height: 1.3;
    margin: 10px 0 0 0;
    color: #1a1a1a;
    font-weight: 400;
}

.hint {
    font-size: 18px;
    color: #666666;
    margin-top: 20px;
}

.progress-track {
    margin-top: 10px;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background-color: #000000;
    border-radius: 2px;
    /* transition controlled by wait.js — set dynamically per probe cycle */
}

/* Adaptación para pantallas pequeñas */
@media (max-width: 992px) {
    .main-container {
        flex-direction: column;
        text-align: center;
        margin-top: 120px;
    }
    .header-logo {
        left: 50%;
        transform: translateX(-50%);
        top: 30px;
    }
    h1 { font-size: 60px; }
    p { font-size: 20px; }
}
