/* Contenedor */
.titulo-lineas {
    display: flex;
    align-items: center;
    width: 85%;
    padding: 20px 10px;
    box-sizing: border-box;
    opacity: 0;
}

/* Líneas */
.titulo-lineas::before,
.titulo-lineas::after {
    content: "";
    flex: 1;
    height: 2vh;
    background: #40AAAA;
    transform: scaleX(0);
    transform-origin: center;
}

/* Texto */
.titulo-lineas span {
    padding: 0 10px;
    font-size: 5vh;
	font-family:Monserrat;
    font-weight: bold;
    text-align: center;
	color:#04585F;
    opacity: 0;
}

/* 🎬 Estado activo (cuando entra en pantalla) */
.titulo-lineas.activo {
    opacity: 1;
}

.titulo-lineas.activo::before,
.titulo-lineas.activo::after {
    animation: drawLine 1.5s ease forwards;
}

.titulo-lineas.activo span {
    animation: fadeText 1s ease forwards 0.5s;
}

/* Animaciones */
@keyframes drawLine {
    to {
        transform: scaleX(1);
    }
}

@keyframes fadeText {
    to {
        opacity: 1;
    }
}

/* 📱 Responsive */
@media (max-width: 600px) {
    .titulo-lineas {
        flex-direction: column;
        gap: 10px;
    }

    .titulo-lineas::before,
    .titulo-lineas::after {
        width: 60%;
    }

    .titulo-lineas span {
        font-size: 3vh;
    }
}