/* Hero Section */
.hero-eventos {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-content-box {
    background: linear-gradient(135deg, var(--pb-accent-50), var(--pb-black-30));
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    margin-top: -320px;
    border: 1px solid var(--pb-gold-20);
    box-shadow: var(--shadow-hero);
}

.hero-title {
    margin-bottom: 1.2rem;
    text-shadow: var(--shadow-gold-md);
}

.hero-subtitle {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--pb-white-95);
    text-shadow: var(--shadow-gold-sm);
}

.hero-eventos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, transparent 0%, var(--pb-accent-50) 50%, transparent 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-eventos h1 {
    font-size: 3.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-eventos .lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.trust-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin: 2.5rem 0 0 0;
    justify-content: center;
}

.trust-chip {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(15px);
    padding: 0.32rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 400;
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.trust-chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--pb-gold-30), transparent);
    transition: left 0.6s ease;
}

.trust-chip:hover::before {
    left: 100%;
}

.trust-chip:hover {
    background: linear-gradient(135deg, var(--pb-gold-30), rgba(255,255,255,0.15));
    border-color: var(--pb-green-custom);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--pb-gold-40);
    color: white;
}

.trust-chip i {
    color: var(--pb-gold);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.trust-chip:hover i {
    color: white;
    transform: scale(1.1);
}

.trust-chip[data-tooltip] {
    position: relative;
}

.trust-chip[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
    margin-bottom: 8px;
}

.trust-chip[data-tooltip]::after {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hero-ctas {
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-ctas .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.hero-eventos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-eventos h1 {
        font-size: 2.5rem;
    }

    .trust-chips {
        justify-content: center;
    }

    .trust-chip {
        font-size: 0.55rem;
        padding: 0.18rem 0.5rem;
        font-weight: 400;
    }
}

@media (max-width: 576px) {
    .hero-eventos {
        padding: 10px 0 60px;
    }

    .hero-eventos .lead {
        font-size: 1.1rem;
    }

    .hero-ctas .btn {
        display: block;
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .trust-chips {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .trust-chip {
        flex: 1 1 100%;
        min-width: 180px;
        max-width: 95vw;
        margin: 0.25rem auto;
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
        text-align: center;
    }
}
