/* --------------------------------------------------------------------------
   PROGRAMA DE PARTNERS / EMBAJADORES - MAIN INDEX DESIGN SYSTEM MATCH
   -------------------------------------------------------------------------- */

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Header Nav Layout */
.navbar .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    height: 100%;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
    padding: 0 4px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

/* Ambassador Hero Section with Main Homepage Radial Glow */
.hero-badge-alert {
    background-color: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.ambassador-hero {
    padding: 50px 0 80px;
    background: radial-gradient(circle at 50% 0%, rgba(13, 138, 106, 0.09) 0%, rgba(13, 138, 106, 0.02) 45%, transparent 70%), #ffffff;
}

.ambassador-hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.ambassador-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.ambassador-hero-subtitles {
    margin-bottom: 28px;
    max-width: 540px;
}

.hero-sub-bold {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.ambassador-hero-top-subheadline {
    font-size: 1.18rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 4px;
    margin-bottom: 0;
}

.ambassador-trust-list {
    margin-bottom: 32px;
}

.ambassador-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.trust-sub-badge {
    font-size: 0.84rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Right Hero Visual Composition (Matching Target Design in Image 1) */
.ambassador-hero-visual {
    position: relative;
    width: 100%;
    min-height: 480px;
}

.hero-visual-composition {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-person-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-person-photo {
    width: 100%;
    max-width: 440px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.08));
}

/* Floating Dark Badge Top Right */
.floating-notif-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    z-index: 10;
    background: #072a20;
    color: white;
    padding: 12px 18px;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.notif-check-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-check-icon svg {
    width: 18px;
    height: 18px;
}

.notif-text {
    display: flex;
    flex-direction: column;
}

.notif-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.notif-val {
    font-size: 1.2rem;
    font-weight: 800;
    color: #34d399;
    line-height: 1.1;
}

.notif-sublabel {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Floating Card Bottom Center/Left: Mis Comisiones */
.floating-comm-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: auto;
    z-index: 11;
    background: white;
    padding: 18px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 250px;
}

.card-comm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.card-comm-title {
    font-weight: 700;
    color: var(--text-primary);
}

.card-comm-dropdown {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.card-comm-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.card-comm-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.card-comm-sum {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.card-comm-cnt {
    display: inline-block;
    align-self: flex-start;
    margin-top: 4px;
}

.card-comm-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 42px;
    padding-top: 6px;
    border-top: 1px solid var(--border-light);
}

.b-bar {
    flex: 1;
    background-color: var(--primary-light);
    border-radius: 3px;
}

.b-bar.h-4 { height: 40%; }
.b-bar.h-7 { height: 70%; }
.b-bar.h-5 { height: 50%; }
.b-bar.h-9 { height: 85%; }
.b-bar.h-10 { height: 100%; }

.b-bar.active {
    background-color: var(--primary);
}

/* Cash Stack Visual Bottom Right */
.cash-stack-visual {
    position: absolute;
    bottom: -30px;
    right: 5px;
    width: 155px;
    z-index: 13;
    pointer-events: none;
}

.cash-stack-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.22));
}

/* Users Circle Badge Middle Right */
.users-badge-circle {
    position: absolute;
    top: 46%;
    right: -15px;
    left: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.users-badge-circle svg {
    width: 24px;
    height: 24px;
}

/* SECTION 2: ASÍ DE FÁCIL ES GANAR DINERO (MAIN VALUE GRID GLOW) */
.easy-steps-section {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 50%, rgba(13, 138, 106, 0.05) 0%, transparent 65%), #ffffff;
}

.steps-process-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
}

.step-card {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon-wrapper {
    margin-bottom: 20px;
}

.step-heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.step-index {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.step-title {
    margin-bottom: 0;
}

.step-desc {
    margin-top: 8px;
}

.step-bullet-list {
    text-align: center;
    list-style: none;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0;
    margin-top: 8px;
}

.step-arrow {
    color: var(--primary);
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow svg {
    width: 26px;
    height: 26px;
}

/* SECTION 3: ¿A QUIÉN PUEDES RECOMENDAR REFERRATUM? (SIDE GLOWS FROM MAIN INDEX) */
.target-professions-section {
    padding: 70px 0 90px;
    background: radial-gradient(circle at 12% 25%, rgba(13, 138, 106, 0.06) 0%, transparent 55%),
                radial-gradient(circle at 88% 75%, rgba(13, 138, 106, 0.06) 0%, transparent 55%),
                #ffffff;
}

.professions-flex-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-top: 52px;
    flex-wrap: wrap;
}

.prof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
    min-width: 90px;
}

.prof-icon-circle {
    margin-bottom: 0;
    transition: transform var(--transition-fast);
}

.prof-item:hover .prof-icon-circle {
    transform: scale(1.12);
}

.dots-circle {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.prof-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
}

/* SECTION 4: ¿POR QUÉ ES TAN FÁCIL RECOMENDAR REFERRATUM? (FEATURE SHOWCASE GRADIENT) */
.why-easy-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(13, 138, 106, 0.04) 50%, #ffffff 100%);
}

.why-easy-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.why-easy-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.dots-pattern-backdrop {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(rgba(13, 138, 106, 0.25) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    z-index: 1;
}

.mockup-cards-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 380px;
}

.mockup-header-card {
    padding: 32px 28px;
}

.green-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    margin-right: 6px;
}

.brand-line {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.mockup-h {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
}

.mockup-sub-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-feature-card {
    padding: 16px 8px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mini-icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.left-aligned {
    text-align: left;
}

.why-intro-text {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.why-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    list-style: none;
    padding: 0;
}

.why-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-primary);
}

.check-icon-green, .check-circle-svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

.why-quote-box {
    font-size: 1.02rem;
    color: var(--text-primary);
    padding-left: 16px;
    border-left: 3px solid var(--primary);
    line-height: 1.5;
}

/* SECTION 5: IMAGINA ESTO... (MAIN HOMEPAGE AMBIENT GLOW) */
.imagine-section {
    padding: 80px 0;
    background: radial-gradient(circle at 85% 50%, rgba(13, 138, 106, 0.05) 0%, transparent 60%), #ffffff;
}

.imagine-container-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 36px;
}

.scenarios-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scenario-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.scen-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.scen-desc {
    flex: 1;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.scen-payout {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.lbl-recibes {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.val-payout {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.imagine-side-card {
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.side-icon-mint {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
}

.side-heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
}

/* SECTION 6: FAQ ACCORDION MATCHING HOMEPAGE STYLE */
.faq-section {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 40%, rgba(13, 138, 106, 0.05) 0%, transparent 65%), #ffffff;
}

.faq-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card-item {
    padding: 0;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
}

.chevron-svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-card-item.active .chevron-svg {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-card-item.active .faq-body {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* SECTION 7: AMBASSADOR BOTTOM CTA BANNER MATCHING MAIN HOMEPAGE DARK BANNER */
.ambassador-bottom-banner {
    background: radial-gradient(circle at 15% 20%, rgba(34, 197, 94, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 85% 80%, rgba(13, 138, 106, 0.35) 0%, transparent 50%),
                var(--dark-emerald);
    padding: 80px 0;
}

.ambassador-banner-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.banner-headline {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.25;
    color: white;
}

.highlight-text-light {
    color: #34d399;
}

.banner-col-mid {
    display: flex;
    align-items: center;
    gap: 16px;
}

.banner-user-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-user-icon-circle svg {
    width: 26px;
    height: 26px;
}

.banner-payout-text {
    display: flex;
    flex-direction: column;
}

.payout-prefix {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

.payout-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.05;
}

.payout-suffix {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.banner-col-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.banner-cta-btn {
    width: 100%;
    justify-content: center;
}

.banner-checks-row {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.ambassador-footer {
    padding: 36px 0;
}

/* RESPONSIVE MEDIA QUERIES FOR EMBAJADORES */
@media (max-width: 1100px) {
    .ambassador-hero-container {
        grid-template-columns: 1fr;
    }

    .ambassador-banner-container {
        grid-template-columns: 1fr;
    }

    .ambassador-hero-visual {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 440px !important;
        margin: 0 auto !important;
        overflow: visible !important;
        display: block !important;
    }

    .hero-visual-composition {
        position: absolute !important;
        top: 0 !important;
        left: 50% !important;
        width: 540px !important;
        height: 480px !important;
        transform: translateX(-50%) scale(0.85) !important;
        transform-origin: top center !important;
    }
}

@media (max-width: 768px) {
    .ambassador-title {
        font-size: 2.5rem;
    }

    .steps-process-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .professions-flex-row {
        justify-content: center;
    }

    .why-easy-container,
    .imagine-container-grid,
    .faq-grid-container {
        grid-template-columns: 1fr;
    }

    .ambassador-hero-visual {
        height: 370px !important;
    }

    .hero-visual-composition {
        transform: translateX(-50%) scale(0.72) !important;
    }
}

@media (max-width: 500px) {
    .ambassador-title {
        font-size: 1.9rem;
    }

    .ambassador-subtitle {
        font-size: 0.92rem;
    }

    .ambassador-hero-visual {
        height: 310px !important;
    }

    .hero-visual-composition {
        transform: translateX(-50%) scale(0.60) !important;
    }
}

@media (max-width: 400px) {
    .ambassador-hero-visual {
        height: 270px !important;
    }

    .hero-visual-composition {
        transform: translateX(-50%) scale(0.52) !important;
    }
}
