/* TODOS OCULTOS */
.section-home {
    display: none;
}

.section-activa {
    display: block;
}

/* CONTENEDOR GENERAL */
.section-home-filtros {
    width: 100%;
    background-color: #ffffff;
}

/* CONTENEDOR BOTONES */
.home-filtros {
    display: flex;
    justify-content: center;
}

/* GRUPO BOTONES */
.botones-home {
    display: flex;
    flex-wrap: wrap; /* 👈 clave para responsive */
    gap: 15px;
    justify-content: center;
}

/* BOTONES */
.filtro-home {
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #141c3a;
    padding: 10px 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

/* LINEA INFERIOR BASE */
.filtro-home::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #ccc;
    transition: all 0.3s ease;
}

/* HOVER */
.filtro-home:hover {
    background: rgba(106, 0, 244, 0.08);
}

.filtro-home:hover::after {
    height: 2px;
    background: #6a00f4;
}

/* ACTIVO */
.filtro-home.activo {
    background: #6a00f4;
    color: #ffffff;
    border-radius: 6px;
}

.filtro-home.activo::after {
    height: 2px;
    background: #ffffff;
}


@media (max-width: 900px) {
    .filtro-home {
        font-size: 15px;
    }
}
/* <= 768px */
@media (max-width: 600px) {
    .filtro-home {
        font-size: 14px;
        padding: 8px 12px;
    }

    .botones-home {
        gap: 10px;
    }
}

/* <= 576px */
@media (max-width: 400px) {
    .botones-home {
        gap: 8px;
    }

    .filtro-home {
        font-size: 13px;
        padding: 7px 10px;
    }
}