/* ============================================
   MUNDIAL CENTELSA — CAMPAIGN LANDING PAGE
   ============================================ */

/* =========================
   HERO
   ========================= */
.mundial-hero {
    position: relative;
    min-height: 100svh;
    background-image: var(--gradient-blue-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 2rem 5rem;
    text-align: center;
}

.mundial-hero__field-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(94, 229, 153, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94, 229, 153, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.mundial-hero__ball-deco {
    position: absolute;
    right: -6%;
    top: 8%;
    width: clamp(260px, 42vmin, 480px);
    height: clamp(260px, 42vmin, 480px);
    pointer-events: none;
    opacity: 0.5;
}

.mundial-hero__ball-deco svg {
    width: 100%;
    height: 100%;
}

.mundial-hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.mundial-hero__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.mundial-hero__logo {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.mundial-hero__logo-sep {
    color: var(--accent-yellow);
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 0.7;
}

.mundial-hero__partner-badge {
    color: rgba(240, 240, 240, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

.mundial-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(242, 238, 87, 0.12);
    border: 1.5px solid rgba(242, 238, 87, 0.45);
    color: var(--accent-yellow);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
}

.mundial-hero__title {
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.mundial-hero__title--highlight {
    color: var(--accent-yellow);
    text-shadow: 0 0 60px rgba(242, 238, 87, 0.35);
}

.mundial-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(240, 240, 240, 0.65);
    margin-bottom: 1.5rem;
}

.mundial-hero__subtitle strong {
    color: var(--accent-green);
    font-weight: 700;
}

.mundial-hero__text {
    font-size: 1.05rem;
    color: rgba(240, 240, 240, 0.7);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}

.mundial-hero__text strong {
    color: white;
    font-weight: 700;
}

.mundial-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

.mundial-hero__meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.mundial-hero__meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(240, 240, 240, 0.45);
    font-weight: 600;
}

.mundial-hero__meta-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
}

.mundial-hero__meta-divider {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.mundial-hero__cta {
    display: inline-block;
    background: var(--accent-green);
    color: var(--base-darker);
    font-size: 1.05rem;
    font-weight: 800;
    padding: 1rem 2.75rem;
    border-radius: var(--round-radius);
    text-decoration: none;
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.mundial-hero__cta:hover {
    background: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(94, 229, 153, 0.35);
}

/* =========================
   PRIZE — split panel
   ========================= */
.mundial-prize {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

/* Left: dark branded panel */
.mundial-prize__left {
    background: var(--corpwhite);
    background-image:
        radial-gradient(ellipse at 10% 90%, rgba(94, 229, 153, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 10%, rgba(242, 238, 87, 0.06) 0%, transparent 50%);
    display: flex;
    align-items: center;
    padding: 5rem 4.5rem;
}

.mundial-prize__content {
    max-width: 500px;
}

.mundial-prize__eyebrow {
    display: inline-block;
    color: var(--accent-green);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}

.mundial-prize__headline {
    font-size: clamp(2.2rem, 3.5vw, 3.6rem);
    font-weight: 900;
    color: var(--base-darker);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.mundial-prize__headline--accent {
    color: var(--accent-green);
    text-shadow: 0 0 50px rgba(242, 238, 87, 0.3);
}

.mundial-prize__copy {
    font-size: 1rem;
    color: var(--base-dark);
    line-height: 1.72;
    margin-bottom: 2rem;
}

.mundial-prize__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.mundial-prize__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.93rem;
    color: var(--base-dark);
    font-weight: 500;
}

.mundial-prize__feature-icon {
    color: var(--accent-green);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.mundial-prize__cta {
    display: inline-block;
    background: var(--accent-green);
    color: var(--base-darker);
    font-size: 0.97rem;
    font-weight: 800;
    padding: 0.9rem 2.25rem;
    border-radius: var(--round-radius);
    text-decoration: none;
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.mundial-prize__cta:hover {
    background: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(94, 229, 153, 0.35);
}

/* Right: full-bleed image */
.mundial-prize__right {
    position: relative;
    overflow: hidden;
}

.mundial-prize__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mundial-prize__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(13, 31, 45, 0.85) 100%
    );
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    padding: 2rem 2.5rem;
}

.mundial-prize__badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mundial-prize__badge-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-green);
}

.mundial-prize__badge-date {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.01em;
}

/* =========================
   HOW IT WORKS
   ========================= */
.mundial-how {
    background: radial-gradient(ellipse at 75% 15%, rgba(94, 229, 153, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 85%, rgba(94, 229, 153, 0.06) 0%, transparent 50%),
        linear-gradient(145deg, #0d1f2d 0%, var(--base-darker) 45%, #0c2714 100%);
    text-align: center;
}

.mundial-how__container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 5.5rem 2rem;
}

.mundial-how__eyebrow {
    display: inline-block;
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
}

.mundial-how__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 3.5rem;
}

.mundial-how__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.mundial-how__step {
    flex: 1;
    min-width: 210px;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    transition: var(--transition-smooth);
}

.mundial-how__step:hover {
    background: rgba(94, 229, 153, 0.07);
    border-color: rgba(94, 229, 153, 0.25);
    transform: translateY(-5px);
}

.mundial-how__step-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.mundial-how__step-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.mundial-how__step-text {
    font-size: 0.88rem;
    color: rgba(240, 240, 240, 0.58);
    line-height: 1.65;
}

.mundial-how__arrow {
    color: rgba(94, 229, 153, 0.45);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* =========================
   INFO: TICKETS + CONDITIONS (2-col)
   ========================= */
.mundial-info {
    background: var(--white);
}

.mundial-info__container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 5.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.mundial-info__col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Inner ticket elements — left-aligned inside column */
.mundial-tickets__eyebrow {
    display: inline-block;
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
}

.mundial-tickets__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--base-darker);
    margin-bottom: 0.75rem;
}

.mundial-tickets__subtitle {
    font-size: 0.93rem;
    color: rgba(56, 65, 73, 0.62);
    margin: 0 0 1.5rem;
    line-height: 1.65;
}

.mundial-tickets__table {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(33, 53, 75, 0.1);
    margin-bottom: 1.75rem;
}

.mundial-tickets__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.mundial-tickets__row--header {
    background: var(--gradient-blue-yellow);
    color: white;
}

.mundial-tickets__row--header span {
    padding: 1rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
}

.mundial-tickets__row:not(.mundial-tickets__row--header) span {
    padding: 1.2rem 1rem;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(33, 53, 75, 0.07);
}

.mundial-tickets__row:nth-child(even):not(.mundial-tickets__row--header) {
    background: white;
}

.mundial-tickets__row:nth-child(odd):not(.mundial-tickets__row--header) {
    background: var(--white);
}

.mundial-tickets__row--green {
    background: rgba(94, 229, 153, 0.1) !important;
}

.mundial-tickets__row--gold {
    background: rgba(242, 238, 87, 0.1) !important;
}

.mundial-tickets__range {
    font-weight: 700;
    color: var(--base-darker);
    text-align: left;
    padding-left: 1.5rem !important;
}

.mundial-tickets__count {
    font-weight: 600;
    color: var(--base-dark);
}

.mundial-tickets__extra {
    color: rgba(56, 65, 73, 0.4);
}

.mundial-tickets__extra--green {
    color: var(--accent-green);
    font-weight: 700;
    color: #2aac6b;
}

.mundial-tickets__extra--gold {
    color: #a08800;
    font-weight: 700;
}

.mundial-tickets__scarcity {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(242, 238, 87, 0.1);
    border: 1.5px solid rgba(242, 238, 87, 0.4);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.mundial-tickets__scarcity-icon {
    color: #a08800;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.mundial-tickets__scarcity p {
    font-size: 0.9rem;
    color: var(--base-dark);
    line-height: 1.6;
}

.mundial-tickets__scarcity strong {
    color: var(--base-darker);
}

/* =========================
   CONDITIONS (inside .mundial-info__col)
   ========================= */
.mundial-conditions__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--base-darker);
    margin-bottom: 1.5rem;
    text-align: left;
}

.mundial-conditions__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mundial-conditions__list li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.93rem;
    color: var(--base-dark);
    line-height: 1.65;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 10px;
    border-left: 3px solid var(--accent-green);
}

.mundial-conditions__list li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 0.08rem;
    font-size: 1rem;
}

.mundial-conditions__list strong {
    color: var(--base-darker);
}

/* =========================
   REGISTRATION FORM
   ========================= */
.mundial-form {
    background: var(--white);
    text-align: center;
}

.mundial-form__container {
    max-width: 540px;
    margin: 0 auto;
    padding: 2rem 2rem;
    padding-bottom: 5.5rem;
}

.mundial-form__eyebrow {
    display: inline-block;
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
}

.mundial-form__title {
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 900;
    color: var(--base-darker);
    margin-bottom: 1rem;
}

.mundial-form__subtitle {
    font-size: 0.93rem;
    color: rgba(56, 65, 73, 0.62);
    max-width: 440px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}

.mundial-form__form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    text-align: left;
}

.mundial-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mundial-form__label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--base-dark);
    letter-spacing: 0.04em;
}

.mundial-form__required {
    color: #c0392b;
}

.mundial-form__input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--white);
    border: 1.5px solid rgba(56, 65, 73, 0.2);
    border-radius: 10px;
    color: var(--base-darker);
    font-size: 0.97rem;
    font-family: inherit;
    transition: var(--transition-base);
    box-sizing: border-box;
}

.mundial-form__input::placeholder {
    color: rgba(56, 65, 73, 0.35);
}

.mundial-form__input:focus {
    outline: none;
    border-color: var(--accent-green);
    background: white;
    box-shadow: 0 0 0 3px rgba(94, 229, 153, 0.15);
}

.mundial-form__input.is-invalid {
    border-color: #e74c3c;
}

.mundial-form__phone-wrap {
    display: flex;
    align-items: stretch;
}

.mundial-form__prefix {
    padding: 0 1rem;
    background: var(--white);
    border: 1.5px solid rgba(56, 65, 73, 0.2);
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: rgba(56, 65, 73, 0.5);
    font-size: 0.97rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.mundial-form__input--phone {
    border-radius: 0 10px 10px 0 !important;
    flex: 1;
}

.mundial-form__error {
    font-size: 0.78rem;
    color: #c0392b;
    display: none;
}

.mundial-form__error.is-visible {
    display: block;
}

.mundial-form__error--network {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Checkboxes */
.mundial-form__checks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mundial-form__check-label {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    cursor: pointer;
    position: relative;
}

.mundial-form__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.mundial-form__checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 5px;
    border: 2px solid rgba(56, 65, 73, 0.25);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.mundial-form__checkbox:checked+.mundial-form__checkmark {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.mundial-form__checkbox:checked+.mundial-form__checkmark::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2.5px solid var(--base-darker);
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.mundial-form__checkbox.is-invalid+.mundial-form__checkmark {
    border-color: #e74c3c;
}

.mundial-form__check-text {
    font-size: 0.83rem;
    color: rgba(56, 65, 73, 0.65);
    line-height: 1.55;
}

.mundial-form__check-text strong {
    color: var(--base-darker);
}

.mundial-form__link {
    color: var(--base-darker);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: var(--transition-base);
}

.mundial-form__link:hover {
    color: var(--accent-green);
}

/* Submit button */
.mundial-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
    font-family: inherit;
    letter-spacing: 0.02em;
    width: 100%;
}

.mundial-form__submit:hover {
    background: #20ba5c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.mundial-form__submit:active {
    transform: translateY(0);
}

.mundial-form__submit svg {
    flex-shrink: 0;
}

.mundial-form__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.mundial-form__countdown {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    background: rgba(37, 211, 102, 0.08);
    border: 1.5px solid rgba(37, 211, 102, 0.35);
    border-radius: 10px;
    color: var(--base-dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.mundial-form__countdown.is-visible {
    display: flex;
}

.mundial-form__countdown svg {
    color: #25D366;
    flex-shrink: 0;
}

.mundial-form__countdown strong {
    font-size: 1.15rem;
    font-weight: 900;
    color: #25D366;
    display: inline-block;
    min-width: 0.75ch;
    transition: transform 0.15s ease;
}

/* Select input */
.mundial-form__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23384149' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Field groups (persona / empresa toggle) */
.mundial-form__group {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
    .mundial-hero__ball-deco {
        right: -15%;
        top: auto;
        bottom: -5%;
        opacity: 0.25;
    }

    .mundial-hero__meta {
        flex-direction: column;
        gap: 1rem;
    }

    .mundial-hero__meta-divider {
        width: 40px;
        height: 1px;
    }

    /* Prize: stack on mobile */
    .mundial-prize {
        grid-template-columns: 1fr;
    }

    .mundial-prize__left {
        padding: 4rem 2rem;
    }

    .mundial-prize__right {
        min-height: 340px;
    }

    .mundial-prize__img {
        position: relative;
        inset: auto;
        width: 100%;
        height: 340px;
    }

    .mundial-how__steps {
        flex-direction: column;
        align-items: center;
    }

    .mundial-how__step {
        max-width: 100%;
        width: 100%;
    }

    .mundial-how__arrow {
        transform: rotate(90deg);
    }

    /* Stack info columns on mobile */
    .mundial-info__container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }
}

@media (max-width: 480px) {
    .mundial-hero {
        padding: 7rem 1.5rem 4rem;
    }

    .mundial-tickets__row--header span {
        font-size: 0.68rem;
        padding: 0.85rem 0.5rem;
    }

    .mundial-tickets__row:not(.mundial-tickets__row--header) span {
        padding: 1rem 0.5rem;
        font-size: 0.83rem;
    }

    .mundial-tickets__range {
        padding-left: 0.75rem !important;
    }

    .mundial-prize__left {
        padding: 3rem 1.5rem;
    }
}