.blue-background {
    background-color: #124DDE;
}

.text-color {
    color: white;
}

.image-background {
    background-image: url("assets/SVGs/lentesBackground-1e12f406f8100969f896efb314848f52.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    border-radius: 0.5rem;
    min-height: 400px;
}

.contenedor-input {
    padding: 10px;
}

.input-select {
    padding: 15px;
}

.container {
    text-align: center;
}

h1 {
    font-weight: bold;
    color: #000;
}

.icono-container {
    position: relative;
    display: inline-block; /* Para alinear los íconos horizontalmente */
    text-align: center;
    margin: 0 15px; /* Espaciado entre íconos */
}

.icono-container .icono-faq {
    width: 80px; /* Tamaño del ícono */
    height: 80px;
    object-fit: contain;
}

.icono-container::after {
    content: '';
    position: absolute;
    bottom: -10px; /* Ajusta la distancia entre el ícono y la línea */
    left: 0;
    right: 0;
    margin: auto;
    width: 40px; /* Longitud inicial de la línea */
    height: 2px; /* Grosor de la línea */
    background-color: #124DDE; /* Color azul de la línea */
    transition: width 0.3s ease-in-out; /* Efecto suave */
}

.icono-container:hover::after {
    width: 100%; /* La línea se extiende al pasar el cursor */
}

.icono-faq {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    position: relative;
    transition: transform 0.3s; /* Animación suave para el desplazamiento */
}

.icono-faq:hover {
    transform: translateY(-10px); /* Efecto de elevación del ícono */
}

.icono-faq::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Ajusta la posición de la línea */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px; /* Grosor de la línea */
    background-color: #007bff; /* Color de la línea */
    transition: width 0.3s; /* Animación para el crecimiento de la línea */
}

.icono-faq:hover::after {
    width: 100%; /* La línea se extiende al 100% del ícono */
}

.icono-faq::before {
    content: '➤';
    position: absolute;
    bottom: -12px;
    right: 50%;
    transform: translateX(-50%);
    color: #007bff;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.icono-faq:hover::before {
    opacity: 15; /* La flecha se hace visible */
    transform: translateX(100%); /* La flecha se mueve al final de la línea */
}

p {
    font-size: 1rem;
    font-weight: bold;
    color: #007bff; /* Azul */
    margin-top: 10px;
}

@media (max-width: 768px) {
    .row .col-6 {
        margin-bottom: 1.5rem; /* Espaciado extra entre los íconos en pantallas pequeñas */
    }
}

/* CSS */
.modal-content {
    background-color: #ffffff;  /* Fondo blanco puro */
    color: #212529;  /* Texto oscuro */
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);  /* Sombra suave */
}
.modal-header {
    border: none;
}
.modal-footer {
    border-top: 1px solid #e0e0e0;
}
.btn-secondary {
    background-color: #6c757d;  /* Color de botón más suave */
    border: none;
}

.modal-title {
    text-align: center;
    width: 90%;
    font-weight: bold;
}

.modal-title i {
    font-size: 1.4em; /* Tamaño del ícono */
    margin-right: 8px; /* Espacio entre ícono y texto */
    vertical-align: middle; /* Alineación vertical */
}

.modal-header {
    background-color: #f4f4f4 !important;   /* Color suave o acorde a tu paleta */
    border-bottom: 2px solid #007bff !important; /* Borde resaltante */
}

.modal-title {
    color: #007bff !important;  /* Color del título */
    font-weight: bold !important;
}

.modal-body {
    padding: 60px !important;      /* Espaciado interno mayor */
    line-height: 1.6 !important;   /* Mejorar la legibilidad del texto */
    color: #444 !important;        /* Color de texto más suave */
}

.btn-secondary {
    background-color: #007bff !important;  /* Color de tu paleta */
    border: none !important;
    transition: background-color 0.3s !important;
}

.btn-secondary:hover {
    background-color: #007bff !important;  /* Oscurecer al pasar el cursor */
}

/* Aplicar a tu contenedor principal de preguntas */
.contenedor-questions {
    min-height: 600px;  /* Ajusta según tus necesidades */
}





