body {
    min-height: 100vh;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Gradients - Primarily used in index.html */
.gold-gradient-text {
    background: linear-gradient(to right, #C5A059, #E5C580, #C5A059);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Title - Refactored from index.html H1 */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    line-height: 1.25;
    /* matches leading-tight */
    margin-bottom: 1.5rem;
    /* matches mb-6 */
    text-transform: none;
    font-size: 2.25rem;
    /* matches text-4xl */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /*agrega un efecto de sombra al texto*/
}

/* Sombra para los subtítulos pequeños */
.hero-subtitle {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
        /* matches md:text-6xl */
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
        /* matches lg:text-7xl */
    }
}