* {
	box-sizing: border-box;
}
/* estilos generales del contenedor de preguntas y respuestas */
.faq-two-columns {
	width: 80%;
	max-width: 1400px;
	margin: 80px auto;
	font-family: 'Segoe UI', sans-serif;
}

.faq-header-centered {
	text-align: center;
	margin-bottom: 50px;
}

.faq-header-centered h2 {
	font-size: 2.8rem;
	color: #2C3E50;
	margin-bottom: 10px;
}
.faq-header-centered span {
	color: #AED6F1;
}

.faq-split-container {
	display: flex;
	width: 100%;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
	height: 750px;
	overflow: hidden;
	border: 1px solid #eee;
}

/* Columna de Preguntas*/
.faq-questions-list {
	flex: 0 0 35%;
	background-color: #fcfcfc;
	overflow-y: auto;
	border-right: 1px solid #eee;
}

.faq-nav-item {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: 0.2s;
    font-size: 1.05rem;
    color: #444;
}

.faq-nav-item.active {
    background-color: #fff;
    color: #2C3E50;
    border-left: 6px solid #AED6F1;
    font-weight: bold;
}

/* Columna de Respuestas (65%) */
.faq-answers-display {
    flex: 0 0 65%;
    background-color: #fff;
    overflow-y: auto;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
}

.faq-content {
    display: none;
    width: 100%;
    animation: fadeIn 0.4s ease forwards;
}

.faq-content.active {
	display: block !important;
}

.faq-content h3 {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 4px solid #AED6F1;
    display: inline-block;
    text-align: left;
}

.faq-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Barra desplazamiento preguntas */
.faq-questions-list::-webkit-scrollbar {
    width: 8px; 
}

.faq-questions-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.faq-questions-list::-webkit-scrollbar-thumb {
    background: #AED6F1;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

.faq-questions-list::-webkit-scrollbar-thumb:hover {
    background: #85c1e9;
}

/* Barra desplazamiento de respuestas */
.faq-answers-display::-webkit-scrollbar {
    width: 8px;
}

.faq-answers-display::-webkit-scrollbar-track {
    background: #ffffff; 
}

.faq-answers-display::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 10px;
}

.faq-answers-display::-webkit-scrollbar-thumb:hover {
    background: #AED6F1;/* Se vuelve azul al interactuar */
}

.faq-questions-list, .faq-answers-display {
    scrollbar-width: thin;
    scrollbar-color: #AED6F1 #f1f1f1;
}

/* Estilo de tabla */
.notary-table-container {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    border: 1px solid #eee;
}

.notary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: #444;
    background-color: #fff;
}

.notary-table caption {
    padding: 15px;
    font-weight: bold;
    color: #2C3E50;
    background-color: #f8f9fa;
    border-bottom: 2px solid #AED6F1;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.notary-table th {
    background-color: #AED6F1;
    color: #2C3E50;
    font-weight: 700;
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid #85c1e9;
}

.notary-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    line-height: 1.5;
}

.notary-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.notary-table tr:hover {
    background-color: #f0f7ff;
}

.notary-table td:first-child {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #2980b9;
}

/* estilo para ulr */
.faq-content a {
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #AED6F1; /* Subrayado estilo marca */
    transition: all 0.3s ease;
}

.faq-content a:hover {
    background-color: #f0f7ff;
    color: #1a5276;
    border-bottom-color: #2980b9;
}


/* Estilos para imagenes */
.faq-content li img {
    display: block;           /* Evita espacios en blanco extraños */
    margin: 20px auto;        /* Centra la imagen y da espacio vertical */
    border-radius: 8px;       /* Bordes suaves */
    border: 1px solid #e1e8ed; /* Marco fino para definir límites */
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); /* Sombra elegante para dar profundidad */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto al pasar el cursor */
.faq-content li img:hover {
    transform: scale(1.02);   /* Un pequeño zoom muy profesional */
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-color: #AED6F1;    /* Resalta con tu azul característico */
}

/* Soporte para el ancho que definas en el HTML */
.faq-content img[width="90%"] {
    max-width: 90%;
    height: auto;
}

.title-display {
    font-size: 38px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
    text-align: center;
}


.lista-preguntas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-preguntas li {
  padding: 12px 16px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

li:last-child {
  border-bottom: none;
}

li:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}







/* --- Nuevo estilo lista de preguntas --- */
.menu-question-nuevo {
    background-color: #f7fafc;
    border-radius: 12px;
    padding: 20px;
    max-width: 450px;
    border: 1px solid #e2e8f0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.secciones-container-nuevo {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seccion-item-nuevo {
    margin-bottom: 30px;
    list-style: none;
}

.seccion-titulo-nuevo {
    display: block;
    color: #2d3748;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #3182ce;
}

.lista-preguntas-nuevo {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-preguntas-nuevo li {
    margin-bottom: 10px;
}

.lista-preguntas-nuevo a {
    display: block;
    padding: 14px 16px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lista-preguntas-nuevo a:hover {
    background-color: #ffffff;
    border-color: #3182ce;
    color: #3182ce;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.1);
}

/* --- Nuevo estilo respuestas --- */
.titulo-respuesta {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.25em;
    color: #2980b9;
}

.contenido-respuesta {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
}

/* --- Nuevo estilo bullets --- */
ul {
	list-style-type: disc !important; 
	margin-left: 20px; 
	padding-left: 10px;
}

ul li {
	display: list-item; 
	margin-bottom: 5px;
	cursor: default;
	cursor: text !important;
}

ol {
	list-style-type: decimal !important;
	margin-left: 20px;
	padding-left: 10px;
}

ol li {
	display: list-item; 
	margin-bottom: 5px;
	cursor: default;
	cursor: text !important;
}

