/**
 * Estilos para el plugin Texto con Leer Más
 * Version: 1.0.0
 */

.contenedor-leer-mas {
    margin: 15px 0;
    position: relative;
}

.texto-resumen, .texto-completo {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.texto-resumen {
    display: block;
}

.texto-completo {
    display: none;
}

.boton-leer-mas {
    background-color: #2271b1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.boton-leer-mas:hover {
    background-color: #135e96;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.boton-leer-mas.activo {
    background-color: #d63638;
}

.boton-leer-mas.activo:hover {
    background-color: #b32d2e;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .boton-leer-mas {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .contenedor-leer-mas {
        margin: 10px 0;
    }
}

/* Efectos de animación */
.texto-resumen, .texto-completo {
    transition: opacity 0.3s ease;
}

.contenedor-leer-mas.animando .texto-resumen,
.contenedor-leer-mas.animando .texto-completo {
    opacity: 0.7;
}