body {
    background-color: #ffffff;
    color: #040833;
}

/* Ocultar barra de scroll pero permitir scroll */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Zoom en imágenes de tarjetas al hacer hover */
.card-image-zoom {
    transition: transform 0.7s ease;
}
.group:hover .card-image-zoom {
    transform: scale(1.05);
}

/* Acordeón */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-icon {
    transition: transform 0.3s ease;
}
.accordion-active .accordion-icon {
    transform: rotate(180deg);
}