﻿/* --- Manteniendo tus estilos base --- */
.contenedor-encuesta {
    padding-top: 50px;
    padding-bottom: 80px;
}

/* Ajuste al contenedor para albergar los círculos */
.contenedor-barra-pasos {
    position: relative;
    padding: 10px 0 40px 0; /* Espacio para que no choque con lo de abajo */
    display: flex;
    align-items: center;
}

.barra-progresiva-fondo {
    height: 15px;
    border-radius: 6px;
    background-color: #e9ecef;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

.barra-progresiva-relleno {
    background-color: #2C7BB6;
    transition: width 0.5s ease-in-out;
    height: 100%;
}

.indicador-paso-texto {
    font-size: 1.5rem;
    color: #2C7BB6;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

/* --- Nuevos Estilos para los Círculos --- */
.punto-paso {
    width: 35px;
    height: 35px;
    background-color: #e9ecef; /* Color gris de fondo */
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #adb5bd;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Posición: Paso 1 al inicio, Paso 2 al final */
#punto1 {
    left: 0%;
}

#punto2 {
    right: 0%;
}

/* Estado Activo: Cuando el paso está completado o en curso */
.punto-paso.activo {
    background-color: #2C7BB6;
    color: white;
    box-shadow: 0 0 8px rgba(44, 123, 182, 0.5);
}

.paso-oculto {
    display: none;
}

.tarjeta-pregunta {
    margin-top: 20px;
    padding: 15px;
    border-left: 4px solid #007bff;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.contenedor-boton-centrado {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
