/* ============================================
   Estilos para Hojas de Información Médica
   ============================================ */

.contenido-hojas-informacion {
    padding: 4rem 2rem;
    background-color: var(--blanco);
    min-height: 60vh;
}

.contenedor-hojas {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--blanco);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(102, 204, 0, 0.1);
    border: 1px solid var(--verde-translucido);
}

.contenedor-hojas h1 {
    font-size: 2.5rem;
    color: var(--verde-oscuro);
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 3px solid var(--verde-intermedio);
    padding-bottom: 1rem;
}

.introduccion {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--texto-oscuro);
    margin-bottom: 3rem;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--verde-muy-claro);
    border-radius: 10px;
    border-left: 4px solid var(--verde-intermedio);
}

.hoja-informacion {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--gris-claro);
    border-radius: 12px;
    border: 2px solid var(--verde-translucido);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-in;
}

.hoja-informacion:hover {
    box-shadow: 0 6px 20px rgba(102, 204, 0, 0.15);
}

.hoja-oculta {
    display: none;
}

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

.mensaje-seleccion {
    text-align: center;
    padding: 3rem 2rem;
    font-size: 1.2rem;
    color: var(--verde-oscuro);
    background-color: var(--verde-muy-claro);
    border-radius: 12px;
    border: 2px dashed var(--verde-intermedio);
    margin: 2rem 0;
}

.hoja-informacion h2 {
    font-size: 2rem;
    color: var(--verde-oscuro);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--verde-intermedio);
}

.contenido-hoja {
    color: var(--texto-oscuro);
}

.contenido-hoja h3 {
    font-size: 1.5rem;
    color: var(--verde-oscuro);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.contenido-hoja h3:first-child {
    margin-top: 0;
}

.contenido-hoja p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.contenido-hoja ul,
.contenido-hoja ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    list-style-type: disc;
}

.contenido-hoja ul {
    list-style-type: disc;
}

.contenido-hoja ol {
    list-style-type: decimal;
}

.contenido-hoja li {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 0.75rem;
    color: var(--texto-oscuro);
    padding-left: 0.5rem;
    position: relative;
}

.contenido-hoja ul li::marker {
    color: var(--verde-intermedio);
    font-weight: bold;
}

.contenido-hoja ol li::marker {
    color: var(--verde-intermedio);
    font-weight: bold;
}

.contenido-hoja strong {
    color: var(--verde-oscuro);
    font-weight: 600;
}

.texto-pendiente {
    background-color: var(--verde-muy-claro);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px dashed var(--verde-intermedio);
    color: var(--verde-oscuro);
    font-style: italic;
    text-align: center;
}

/* Menú de Navegación de Hojas */
.menu-hojas-informacion {
    margin: 2rem 0 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--verde-muy-claro), rgba(255, 255, 255, 0.8));
    border-radius: 15px;
    border: 2px solid var(--verde-translucido);
    box-shadow: 0 4px 15px rgba(102, 204, 0, 0.1);
}

.menu-hojas-contenedor h3 {
    font-size: 1.2rem;
    color: var(--verde-oscuro);
    margin-bottom: 1.5rem;
    text-align: center;
}

.menu-hojas-botones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.boton-hoja {
    padding: 1rem 1.5rem;
    background-color: var(--verde-intermedio);
    color: var(--blanco);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 204, 0, 0.2);
    text-align: center;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
}

.boton-hoja:hover {
    background-color: var(--verde-oscuro);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 204, 0, 0.3);
}

.boton-hoja:active {
    transform: translateY(0);
}

.boton-hoja-activo {
    background-color: var(--verde-oscuro) !important;
    box-shadow: 0 4px 12px rgba(102, 204, 0, 0.4) !important;
    transform: translateY(-2px);
}

.menu-hojas-select {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--verde-translucido);
}

.menu-hojas-select label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--verde-oscuro);
    font-weight: 600;
    font-size: 1rem;
}

.menu-hojas-select select {
    width: 100%;
    max-width: 500px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--verde-intermedio);
    border-radius: 8px;
    background-color: var(--blanco);
    color: var(--texto-oscuro);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-hojas-select select:hover {
    border-color: var(--verde-oscuro);
    box-shadow: 0 2px 8px rgba(102, 204, 0, 0.2);
}

.menu-hojas-select select:focus {
    outline: none;
    border-color: var(--verde-oscuro);
    box-shadow: 0 0 0 3px var(--verde-muy-claro);
}

/* Responsive */
@media (max-width: 768px) {
    .contenido-hojas-informacion {
        padding: 2rem 1rem;
    }
    
    .contenedor-hojas {
        padding: 2rem 1.5rem;
    }
    
    .contenedor-hojas h1 {
        font-size: 2rem;
    }
    
    .hoja-informacion {
        padding: 1.5rem;
    }
    
    .hoja-informacion h2 {
        font-size: 1.5rem;
    }
    
    .contenido-hoja h3 {
        font-size: 1.3rem;
    }
    
    .contenido-hoja p,
    .contenido-hoja li {
        font-size: 0.95rem;
    }
    
    .menu-hojas-informacion {
        padding: 1.5rem;
    }
    
    .menu-hojas-botones {
        grid-template-columns: 1fr;
    }
    
    .boton-hoja {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    .menu-hojas-select select {
        max-width: 100%;
    }
}

