/* HERO CONTAINER */
#hero-video {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* VIDEO BACKGROUND */
.video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#heroPlayer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* OVERLAY CLARO */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    z-index: 2;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* LOGO */
.hero-logo {
    max-width: 420px;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
}

/* DATE */
.hero-date {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: #FFBE00;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

/* BUTTON */
.btn-hero {
    background-color: #002341;
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-hero:hover {
    background-color: #FFBE00;
    color: #002341 !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 260px;
    }

    .hero-date {
        font-size: 1.4rem;
    }

    .btn-hero {
        width: 100%;
        max-width: 280px;
        padding: 14px 0;
    }
}

/* ===== FEES SECTION ===== */
#section-register {
    padding: 100px 0;
    background: #f9fafc;
}

/* TITULO */
#section-register h1 {
    font-weight: 700;
    color: #002341;
}

/* PRICING CARD OVERRIDE */
.pricing-s1 {
    background: #ffffff !important;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.pricing-s1:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.pricing-s1 .top h2 {
    color: #002341;
    font-weight: 700;
}

.pricing-s1 .price {
    color: #002341;
    font-size: 2.4rem;
}

.pricing-s1 .currency {
    color: #FFBE00;
}

/* BOTÓN FEES */
.pricing-s1 .btn-custom {
    background-color: #002341 !important;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-s1 .btn-custom:hover {
    background-color: #FFBE00 !important;
    color: #002341 !important;
    transform: translateY(-2px);
}

/* ===== EMPTY STATE (NO FEES) ===== */
.fees-empty-box {
    max-width: 780px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.fees-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255,190,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fees-icon i {
    font-size: 36px;
    color: #FFBE00;
}

.fees-empty-title {
    font-size: 2rem;
    font-weight: 700;
    color: #002341;
    margin-bottom: 16px;
}

.fees-empty-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
    #section-register {
        padding: 70px 20px;
    }

    .fees-empty-title {
        font-size: 1.6rem;
    }
}

.role-text{
    color: #ffffff !important;
}
.item-fee-text{
    color: #dfdfdf !important;
}

/* FEES ALERT */
.fees-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 190, 0, 0.15);
    border-left: 5px solid #FFBE00;
    border-radius: 14px;
    padding: 20px 24px;
}

.fees-alert i {
    font-size: 28px;
    color: #FFBE00;
    margin-top: 2px;
}

.fees-alert-text {
    color: #002341;
    font-size: 1rem;
    line-height: 1.6;
}

.fees-alert-text strong {
    font-weight: 700;
}

/* MOBILE */
@media (max-width: 768px) {
    .fees-alert {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* FOOTER BASE */
.site-footer {
    color: #ffffff;
    padding: 40px 0 30px;
    font-size: 0.95rem;
}

/* LOGO */
.footer-logo img {
    max-height: 70px;
    max-width: 220px;
    width: auto;
    height: auto;
    display: inline-block;
}

/* TEXTO */
.footer-text {
    line-height: 1.6;
    color: #e5e5e5;
}

.footer-link {
    color: #FFBE00;
    font-weight: 600;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* SOCIAL */
.footer-social a {
    color: #ffffff;
    margin-left: 14px;
    font-size: 1.2rem;
    transition: color 0.25s ease;
}

.footer-social a:hover {
    color: #FFBE00;
}

.footer-mail {
    display: inline-block;
    margin-left: 14px;
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
}

.footer-mail:hover {
    color: #FFBE00;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-logo img {
        max-height: 60px;
        margin-bottom: 10px;
    }

    .footer-social a,
    .footer-mail {
        margin-left: 10px;
        margin-right: 10px;
    }
}

