/* ─────────────────────────────────────────
   Componentes
   ───────────────────────────────────────── */

/* ─── NAV ─── */
nav {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo img {
    height: 44px;
}

.nav-badge {
    background: var(--yellow);
    color: var(--black);
    font-size: 10px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: var(--gray);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--yellow-dark);
}

.nav-ham {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
}

/* ─── BUTTONS ─── */
.btn-wa {
    background: #25D366;
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-wa:hover { background: #1da851; transform: translateY(-1px); }

.btn-blue {
    background: var(--blue);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }

.btn-y {
    background: var(--yellow);
    color: var(--black);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.btn-y:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.btn-hero {
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero.primary { background: var(--yellow); color: var(--black); }
.btn-hero.primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 209, 0, .3); }
.btn-hero.outline-dark { background: transparent; border: 2px solid var(--blue); color: var(--blue); }
.btn-hero.outline-dark:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-hero.wa { background: #25D366; color: #fff; }
.btn-hero.wa:hover { background: #1da851; transform: translateY(-2px); }

/* ─── HERO ─── */
.hero {
    background: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: visible;
    border: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hero-left { padding: 30px 0; }

.hero h1 {
    color: var(--black);
    font-size: 46px;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 10px;
}

.hero-bait-logo {
    height: 46px;
    vertical-align: middle;
    margin-left: 6px;
}

.hero .hero-slogan {
    color: var(--yellow);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.hero p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 480px;
    line-height: 1.7;
    text-align: justify;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-stats {
    display: flex;
    gap: 0;
    background: var(--black);
    border-radius: 12px;
    overflow: hidden;
}

.hero-stat {
    text-align: center;
    flex: 1;
    padding: 12px 8px;
    border-right: 1px solid #333;
}
.hero-stat:last-child { border: none; }
.hero-stat .hs-num { font-size: 22px; font-weight: 900; color: var(--yellow); }
.hero-stat .hs-label { font-size: 9px; color: #999; font-weight: 500; }

.hero-visual {
    text-align: center;
    line-height: 0;
}

.hero-img {
    max-height: 520px;
    display: block;
    margin: 0 auto;
}

/* ─── MODELOS DE NEGOCIO ─── */
.modelos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.modelo-card {
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    cursor: default;
}
.modelo-card:hover { transform: translateY(-4px); }
.modelo-card.mayorista { background: var(--black); color: var(--white); border: 2px solid var(--yellow); }
.modelo-card.independiente { background: var(--white); color: var(--black); border: 2px solid var(--blue); }

.modelo-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
}
.mayorista .modelo-tag { background: var(--yellow); color: var(--black); }
.independiente .modelo-tag { background: var(--blue-light); color: var(--blue); }

.modelo-card h3 { font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.mayorista h3 { color: var(--yellow); }
.independiente h3 { color: var(--blue); }

.modelo-card .modelo-sub { font-size: 13px; margin-bottom: 20px; opacity: .7; }

.modelo-list { list-style: none; margin-bottom: 20px; }
.modelo-list li {
    font-size: 13px;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.modelo-list li i { flex-shrink: 0; margin-top: 3px; font-size: 14px; }
.mayorista .modelo-list li i { color: var(--yellow); }
.independiente .modelo-list li i { color: var(--blue); }

.modelo-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.independiente .modelo-bottom { border-color: var(--gray-border); }

.modelo-invest { font-size: 11px; font-weight: 600; opacity: .6; text-transform: uppercase; }
.modelo-range { font-size: 20px; font-weight: 900; }
.mayorista .modelo-range { color: var(--yellow); }
.independiente .modelo-range { color: var(--blue); }

.modelo-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 0;
    gap: 12px;
    max-width: 900px;
}
.modelo-vs-line { flex: 1; height: 1px; background: var(--gray-border); }
.modelo-vs-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    white-space: nowrap;
}

/* ─── BENEFICIOS ─── */
.ben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ben-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1.5px solid var(--gray-border);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.ben-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    border-color: var(--yellow);
}
.ben-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform .3s;
}
.ben-card:hover::before { transform: scaleX(1); }

.ben-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.ben-card h3 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.ben-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ─── CALCULADORA ─── */
.calc-wrap { max-width: 700px; margin: 0 auto; }

.calc-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .08);
    border: 2px solid var(--gray-border);
}

.calc-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 24px;
    text-align: center;
}

.calc-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.calc-tab {
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--blue);
    background: transparent;
    color: var(--blue);
    cursor: pointer;
    transition: all .2s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.calc-tab:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.calc-tab.active-may,
.calc-tab.active-ind {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}
.calc-tab.active-may:hover,
.calc-tab.active-ind:hover {
    background: var(--yellow-dark);
    color: var(--black);
    border-color: var(--yellow-dark);
}

.calc-row { margin-bottom: 20px; }
.calc-row label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    display: block;
    margin-bottom: 6px;
}
.calc-row input[type=range] {
    width: 100%;
    accent-color: var(--yellow);
    height: 6px;
}
.calc-row .calc-val {
    float: right;
    font-weight: 800;
    color: var(--blue);
    font-size: 15px;
}

.calc-result {
    background: var(--black);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    margin-top: 20px;
}
.calc-result .cr-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .5px;
}
.calc-result .cr-val {
    font-size: 42px;
    font-weight: 900;
    color: var(--yellow);
    margin-top: 4px;
}

.calc-note {
    text-align: center;
    font-size: 11px;
    color: var(--gray);
    margin-top: 12px;
}

.niveles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.nivel {
    background: var(--white);
    border-radius: 14px;
    padding: 20px;
    border: 1.5px solid var(--gray-border);
    text-align: center;
    transition: all .3s;
}
.nivel:hover { border-color: var(--yellow); transform: translateY(-2px); }

.nv-icon-box {
    background: var(--yellow);
    color: var(--black);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 8px;
}
.nv-icon-box.top {
    background: var(--black);
    color: var(--yellow);
}

.nivel .nv-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.nivel .nv-range { font-size: 18px; font-weight: 900; color: var(--black); }
.nivel .nv-desc { font-size: 10px; color: var(--gray); margin-top: 4px; }

/* ─── PROCESO ─── */
.proc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.proc-step {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--gray-border);
    transition: all .3s;
    position: relative;
}
.proc-step:hover {
    border-color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}

.proc-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.proc-step h3 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.proc-step p { font-size: 13px; color: var(--gray); }

/* ─── PRODUCTOS ─── */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.prod-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1.5px solid var(--gray-border);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    border-color: var(--yellow);
}
.prod-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform .3s;
}
.prod-card:hover::before { transform: scaleX(1); }

.prod-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.prod-card h3 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.prod-card .pd { font-size: 13px; color: var(--gray); margin-bottom: 12px; }

.prod-feat { list-style: none; margin-top: 12px; }
.prod-feat li {
    font-size: 11px;
    padding: 3px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
.prod-feat li i { color: var(--yellow); font-size: 13px; }

/* ─── TESTIMONIOS ─── */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.test-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1.5px solid var(--gray-border);
}

.test-stars {
    color: var(--yellow);
    font-size: 14px;
    margin-bottom: 12px;
}

.test-card blockquote {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.test-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
}

.test-author { font-size: 12px; font-weight: 700; color: var(--black); }
.test-role { font-size: 11px; color: var(--gray); }

/* ─── FAQ ─── */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-section-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-section-title.second {
    margin-top: 32px;
}
.faq-section-title.distribuidor i { color: var(--yellow-dark); }
.faq-section-title.vendedor i { color: var(--blue); }

.faq-item {
    border: 1.5px solid var(--gray-border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .3s;
}
.faq-item.active { border-color: var(--yellow); }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    background: var(--white);
}
.faq-q i {
    transition: transform .3s;
    color: var(--yellow);
    font-size: 18px;
}
.faq-item.active .faq-q i { transform: rotate(180deg); }

.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}
.faq-item.active .faq-a { display: block; }

/* ─── CONTACTO ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}
.contact-info h3 span {
    color: var(--yellow-dark);
}
.contact-info p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 24px;
}

.ci-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--black);
    font-size: 14px;
}
.ci-item i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-cta {
    margin-top: 24px;
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .06);
    border: 1.5px solid var(--gray-border);
}
.contact-form h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    text-align: center;
}

.cf-field { margin-bottom: 14px; }
.cf-field label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}
.cf-field input,
.cf-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color .2s;
    background: var(--white);
}
.cf-field input:focus,
.cf-field select:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 209, 0, .15);
}

.cf-submit {
    width: 100%;
    padding: 14px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    margin-top: 8px;
}
.cf-submit:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.cf-note {
    text-align: center;
    font-size: 10px;
    color: var(--gray);
    margin-top: 10px;
}

/* ─── CTA FINAL ─── */
.cta-final {
    background: var(--gray-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final h2 {
    color: var(--black);
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.cta-final h2 span { color: var(--yellow-dark); }
.cta-final p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.cta-final-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ─── FOOTER ─── */
footer {
    background: var(--white);
    border-top: 3px solid var(--yellow);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.fb-logo img { height: 45px; margin-bottom: 10px; }

.footer-brand p {
    color: var(--gray);
    font-size: 12px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: .5px;
}

.footer-col a {
    display: block;
    color: var(--gray);
    font-size: 12px;
    padding: 3px 0;
    transition: color .2s;
}
.footer-col a:hover { color: var(--yellow-dark); }

.footer-bottom {
    border-top: 1px solid var(--gray-border);
    padding-top: 16px;
    text-align: center;
    color: var(--gray);
    font-size: 11px;
}

/* ─── SEPARADOR TRIANGULAR ─── */
.separator-triangle {
    background: var(--black);
    height: 50px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-top: -1px;
}
