.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 110px 20px 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #fff 0%, #fff4e5 40%, #ffe5c0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
}

/* Blob decorativo */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: blobFloat 10s ease-in-out infinite;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    background: rgba(255,123,0,0.18);
    top: -120px; right: -100px;
    animation-duration: 12s;
}
.hero-blob-2 {
    width: 400px; height: 400px;
    background: rgba(138,43,226,0.12);
    bottom: -100px; left: -80px;
    animation-duration: 14s; animation-delay: 3s;
}
.hero-blob-3 {
    width: 300px; height: 300px;
    background: rgba(59,180,74,0.10);
    top: 50%; left: 60%;
    animation-duration: 10s; animation-delay: 6s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%       { transform: translate(30px,-25px) scale(1.08); }
}

.hero-logo {
    position: relative; z-index: 2;
    margin-bottom: 32px;
    animation: heroIn 1s ease-out both;
}

.hero-logo img {
    width: 420px;
    max-width: 85vw;
    filter: drop-shadow(0 10px 40px rgba(255,123,0,0.3));
    transition: transform 0.4s ease;
}
.hero-logo img:hover { transform: scale(1.04); }

@keyframes heroIn {
    from { opacity: 0; transform: translateY(-24px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-tagline {
    position: relative; z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    letter-spacing: 5px;
    background: linear-gradient(90deg, var(--orange), var(--orange2), var(--green), var(--blue), var(--purple));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite, heroIn 1s ease-out 0.2s both;
    transition: opacity 0.5s;
}
@keyframes shimmer { to { background-position: 300% center; } }

.hero-sub {
    position: relative; z-index: 2;
    margin-top: 14px;
    font-size: clamp(0.78rem, 2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text2);
    animation: heroIn 1s ease-out 0.4s both;
}

.hero-btns {
    position: relative; z-index: 2;
    margin-top: 40px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroIn 1s ease-out 0.6s both;
}

.scroll-cue {
    position: absolute;
    bottom: 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    animation: cueFloat 2.5s ease-in-out infinite;
}
.scroll-cue:hover { opacity: 0.9; }
.scroll-cue p {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text2);
}
.scroll-cue span {
    display: block;
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--orange), transparent);
}
@keyframes cueFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(10px); }
}

/* ===== FECHA FESTIVAL ===== */
.hero-fecha {
    position: relative; z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 28px;
    animation: heroIn 1s ease-out 0.15s both;
}

.fecha-dias {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    line-height: 1;
    color: var(--text);
    letter-spacing: 4px;
}

.fecha-dias span:not(.fecha-sep) {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 16px rgba(255,123,0,0.35));
}

.fecha-sep {
    font-size: 0.5em;
    color: var(--text2) !important;
    -webkit-text-fill-color: var(--text2) !important;
    background: none !important;
    filter: none !important;
    letter-spacing: 0;
}

.fecha-mes {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.7rem);
    letter-spacing: 6px;
    color: var(--text);
    text-transform: uppercase;
}

.fecha-lugar {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text2);
    margin-top: 2px;
}
