body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6; /* gray-100 */
    color: #1f2937; /* gray-800 */
}
.text-glow {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}
.prose p, .prose li {
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75rem; /* leading-7 */
    color: #374151; /* gray-700 */
}
.nav-sticky {
    position: sticky;
    top: 0;
    z-index: 50;
}
.animated-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.section-card {
    background-color: white;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
}
.purpose-card {
    background-color: #f9fafb; /* gray-50 */
    border: 1px solid #e5e7eb; /* gray-200 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(217, 70, 239, 0.2);
    border-color: #d946ef; /* fuchsia-500 */
}
.gallery-item .description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
}
.gallery-item:hover .description {
    max-height: 100px; /* Adjust as needed */
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
/* Estilos para el carrusel del banner */
.banner-carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.banner-carousel-img.active {
    opacity: 1;
}
/* Estilos para el rastro de partículas mágicas */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #d946ef; /* Color fucsia */
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none; /* Para que no interfiera con los clics */
    animation: sparkle-fade 0.8s forwards;
    box-shadow: 0 0 10px #d946ef, 0 0 20px #d946ef;
}

@keyframes sparkle-fade {
    0% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}
