:root {
    --bg: #f4f1fb;
    --bg-soft: #ede7fb;
    --white: #ffffff;
    --text: #1f1840;
    --text-soft: #6d6790;
    --primary: #6c43f3;
    --primary-dark: #4d2fc7;
    --primary-light: #efe9ff;
    --border: #ddd4f7;
    --shadow: 0 18px 45px rgba(93, 64, 211, 0.12);
    --shadow-soft: 0 10px 25px rgba(93, 64, 211, 0.08);
    --container: 1180px;
    --section-inline: clamp(18px, 3vw, 32px);
    --header-height: 78px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
}

body.public-mobile-menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.78),
        rgba(255, 255, 255, 0.50)
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 35px rgba(108, 67, 243, 0.08);
}

.site-header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 24px;
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand picture {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    min-width: 0;
}

.nav-link {
    font-size: 1rem;
    color: #4b3f88;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.login-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: #4b3f88;
    padding: 8px 10px;
    transition: color 0.25s ease;
}

.login-link:hover {
    color: var(--primary);
}

.btn-primary {

    white-space: nowrap;
}

.register-button,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.register-button,
.btn-primary {
    background: linear-gradient(135deg, #5e30f6, #b088f5);
    box-shadow: 0 12px 30px rgba(167, 72, 240, 0.35);
    color: #fff;
}

.register-button:hover,
.btn-primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow:
        0 0 20px rgba(108, 67, 243, 0.4),
        0 0 40px rgba(108, 67, 243, 0.2);
}

.btn-secondary {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-secondary:hover {
    background: rgb(61, 40, 136);
    color: #fff;
}

/* SECTIONS */
.section {
    position: relative;
    scroll-margin-top: var(--header-height);
}

.section-center {
    width: 100%;
}

/* HERO */
.hero-section {
    min-height: auto;
    padding: calc(var(--header-height) + clamp(18px, 3vw, 34px)) var(--section-inline) clamp(46px, 6vw, 78px);
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.96) 0%, transparent 20%),
        radial-gradient(circle at 78% 26%, rgba(159, 114, 238, 0.18) 0%, transparent 24%),
        radial-gradient(circle at 66% 74%, rgba(108, 67, 243, 0.16) 0%, transparent 28%),
        radial-gradient(circle at 36% 82%, rgba(183, 154, 240, 0.14) 0%, transparent 22%),
        linear-gradient(
            175deg,
            #ffffff 5%,
            #ffffff 12%,
            #ffffff 24%,
            #f5f5f5 38%,
            #dccff8 52%,
            #cbb5f4 66%,
            #b79af0 80%,
            #a982ee 92%,
            #9f72ee 100%
        );
}

.hero-container {
    width: min(100%, var(--container));
    max-width: var(--container);
    margin: 0 auto;
    min-height: clamp(610px, calc(100svh - var(--header-height)), 760px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
}

.hero-container-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 3.2vw, 40px);
    text-align: center;
}

.hero-content {
    max-width: 620px;
}

.hero-container-column .hero-content {
    max-width: 900px;
}

.hero-container-column .hero-description {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-container-column .hero-actions,
.hero-container-column .hero-proof {
    justify-content: center;
}
.hero-content {
    max-width: 620px;
}

.hero-badge,
.section-badge {
    display: inline-flex;
    align-items: center;
    background: #e9e0ff;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 18px;
}

.hero-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.25rem, 4.6vw, 4.25rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 18px;
    color: #1d163b;
}

.hero-title span {
    text-shadow: 0 4px 20px rgba(108, 67, 243, 0.3);
    background: linear-gradient(135deg, #6c43f3, #9f72ee);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.75;
    color: var(--text-soft);
    max-width: 660px;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-proof {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-proof-avatars {
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    width: min(100%, 980px);
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    max-height: clamp(300px, 43vw, 520px);
    object-fit: contain;
    filter: drop-shadow(0 26px 46px rgba(61, 39, 138, 0.16));
}


/* FEATURES */
.features-section {
    min-height: auto;
    padding: clamp(74px, 8vw, 112px) var(--section-inline) clamp(58px, 7vw, 90px);
    background:
        radial-gradient(circle at 60% 40%, rgba(92, 49, 235, 0.18), transparent),
        #ffffff;
    overflow: visible;
}

.features-container {
    width: min(100%, var(--container));
    max-width: var(--container);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 940px;
    margin: 0 auto clamp(24px, 3vw, 36px);
}

.section-header h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.12;
    margin-bottom: 12px;
    color: #1d163b;
}

.section-header p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.98rem, 1.1vw, 1.06rem);
    line-height: 1.7;
    color: var(--text-soft);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.feature-card {
    position: relative;
    min-height: 164px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 247, 255, 0.74)),
        rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(221, 212, 247, 0.72);
    border-radius: 18px;
    padding: 24px 20px;
    box-shadow: 0 12px 28px rgba(93, 64, 211, 0.08);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(108, 67, 243, 0.28),
        rgba(176, 136, 245, 0.38),
        transparent 70%
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 67, 243, 0.34);
    box-shadow:
        0 18px 34px rgba(31, 24, 64, 0.10),
        0 0 20px rgba(108, 67, 243, 0.10);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .feature-icon {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(108, 67, 243, 0.16);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #efe8ff, #ffffff);
    color: var(--primary);
    font-size: 1.08rem;
    margin-bottom: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #1f1840;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-soft);
}

.feature-card:nth-child(5),
.feature-card:nth-child(7),
.feature-card:nth-child(12) {
    background: rgba(255, 255, 255, 0.78);
}

/* REPRESENTANTES */
.representantes-section {
    position: relative;
    overflow: hidden;
    padding:
        calc(var(--header-height) + clamp(24px, 4vw, 42px))
        var(--section-inline)
        clamp(58px, 7vw, 84px);
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 10%, rgba(108, 67, 243, 0.18), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(176, 136, 245, 0.12), transparent 25%),
        radial-gradient(circle at 54% 94%, rgba(108, 67, 243, 0.10), transparent 32%),
        linear-gradient(180deg, #14111f 0%, #191428 100%);
}

.representantes-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.045), transparent 24%),
        radial-gradient(circle at 72% 72%, rgba(176, 136, 245, 0.055), transparent 28%);
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.representantes-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%, transparent 82%, rgba(255, 255, 255, 0.04));
    opacity: 1;
}

.representantes-container {
    position: relative;
    z-index: 2;
    width: min(100%, var(--container));
    max-width: var(--container);
    margin: 0 auto;
}

.representantes-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: clamp(28px, 4vw, 46px);
    align-items: center;
    margin-bottom: clamp(24px, 3vw, 34px);
}

.representantes-copy {
    max-width: 680px;
}

.representantes-badge,
.representantes-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(176, 136, 245, 0.25);
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 16px;
    color: #c9b3ff;
    background: rgba(108, 67, 243, 0.18);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.representantes-copy h1,
.representantes-copy h2 {
    max-width: 680px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: clamp(2.1rem, 3.6vw, 3.45rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.representantes-copy p {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.75;
}

.representantes-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.representantes-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 9px 12px;
    color: rgba(255, 255, 255, 0.80);
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.82rem;
    font-weight: 700;
}

.public-icon {
    display: inline-grid;
    place-items: center;
    width: 1rem;
    height: 1rem;
    color: #b088f5;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
}

.public-icon-building::before { content: "B"; }
.public-icon-percent::before { content: "%"; }
.public-icon-chart::before { content: "/"; }

.representantes-highlights .public-icon {
    flex: 0 0 auto;
}

.representantes-dashboard {
    position: relative;
    min-height: 318px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.04);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.22),
        0 0 22px rgba(108, 67, 243, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rep-dashboard-top,
.rep-dashboard-progress > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.rep-dashboard-top span,
.rep-dashboard-summary small,
.rep-dashboard-progress span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
}

.rep-dashboard-top strong {
    border-radius: 999px;
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(108, 67, 243, 0.24);
    border: 1px solid rgba(176, 136, 245, 0.28);
    font-size: 0.82rem;
}

.rep-dashboard-summary {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 12px;
    margin: 26px 0 14px;
}

.rep-dashboard-summary > div {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.rep-dashboard-summary strong {
    display: block;
    margin-top: 6px;
    color: #ffffff;
    font-size: 1.55rem;
    line-height: 1.1;
}

.rep-dashboard-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 18px;
}

.rep-dashboard-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
}

.rep-dashboard-list span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
}

.rep-dashboard-list strong {
    color: #c9b3ff;
    font-size: 0.82rem;
}

.rep-progress-track {
    height: 9px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.rep-progress-track span {
    display: block;
    width: 70%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #6c43f3, #b088f5);
}

.representantes-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1060px;
    margin: 0 auto;
}

.representante-card {
    position: relative;
    grid-column: span 2;
    min-height: 176px;
    padding: 22px 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.representante-card:hover {
    transform: translateY(-5px);
    border-color: rgba(176, 136, 245, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.055);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.22),
        0 0 22px rgba(108, 67, 243, 0.12);
}

.representante-card-raised {
    transform: translateY(10px);
}

.representante-card-raised:hover {
    transform: translateY(4px);
}

.representante-card-soft {
    background: rgba(255, 255, 255, 0.035);
}

.representante-card-wide {
    grid-column: span 2;
}

.representante-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, #6c43f3, #a982ee);
    box-shadow: 0 12px 24px rgba(108, 67, 243, 0.18);
    font-size: 0.95rem;
    font-weight: 800;
}

.representante-icon::before {
    line-height: 1;
}

.representante-icon-coins::before { content: "$"; }
.representante-icon-desktop::before { content: "[]"; font-size: 0.78rem; }
.representante-icon-chart::before { content: "/"; }
.representante-icon-target::before { content: "O"; }
.representante-icon-link::before { content: "#"; }
.representante-icon-trend::before { content: "^"; }

.representante-card h2,
.representante-card h3 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.04rem;
}

.representante-card p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
    line-height: 1.6;
}

.representantes-how {
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    gap: clamp(22px, 3vw, 32px);
    align-items: center;
    max-width: 1060px;
    margin: clamp(28px, 4vw, 38px) auto 0;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.representantes-how h2,
.representantes-how h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.2;
}

.representantes-how p {
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.65;
}

.representantes-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.representantes-steps div {
    position: relative;
    min-height: 108px;
    padding: 12px 12px 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
}

.representantes-steps div:nth-child(even) {
    padding-top: 20px;
}

.representantes-steps strong {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(108, 67, 243, 0.45);
    border: 1px solid rgba(176, 136, 245, 0.38);
    font-size: 0.9rem;
}

.representantes-steps span {
    display: block;
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.35;
}

.representantes-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    margin-top: 32px;
    text-align: center;
}

.public-inline-actions,
.representantes-cta-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.representantes-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    border-radius: 16px;
    padding: 14px 26px;
    color: #ffffff;
    background: linear-gradient(135deg, #6c43f3, #b088f5);
    box-shadow: 0 12px 28px rgba(108, 67, 243, 0.26);
    font-size: 1rem;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.representantes-cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 36px rgba(108, 67, 243, 0.32),
        0 0 22px rgba(108, 67, 243, 0.14);
}

.representantes-cta-secondary {
    background: transparent;
    color: #d9ccff;
    border: 1.5px solid rgba(217, 204, 255, 0.55);
    box-shadow: none;
}

.representantes-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.representantes-cta p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

/* PRICING BANNER */
.pricing-banner {
    position: relative;
    z-index: 4;
    background: #ffffff;
    padding: clamp(30px, 4vw, 52px) var(--section-inline);
}

.pricing-banner-container {
    position: relative;
    overflow: hidden;
    width: min(100%, var(--container));
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(18px, 3vw, 36px);
    padding: clamp(26px, 4vw, 42px) clamp(30px, 6vw, 86px);
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #5e30f6, #9f72ee);
    box-shadow: 0 18px 44px rgba(108, 67, 243, 0.22);
}

.pricing-text h3 {
    color: #ffffff;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    line-height: 1.15;
    margin-bottom: 8px;
}

.pricing-text p {
    color: rgba(255,255,255,0.85);
    max-width: 660px;
    font-size: clamp(0.95rem, 1.1vw, 1.04rem);
    line-height: 1.6;
}

.pricing-banner .btn-primary {
    background: #ffffff;
    color: #6c43f3;
    box-shadow: 0 10px 24px rgba(31, 24, 64, 0.10);
    flex-shrink: 0;
}

.pricing-banner .btn-primary:hover {
    background: #631feb;
    color: white;
}

.banner-icon {
    position: absolute;
    width: 60px;
    height: auto;
    opacity: 0.68;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 8px 18px rgba(31,24,64,0.14));
    transition: transform 0.3s ease;
}

.banner-icon.left {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-icon.right {
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(6deg);
}

.pricing-banner-container:hover .banner-icon.left {
    transform: translateY(-50%) rotate(-4deg) scale(1.05);
}

.pricing-banner-container:hover .banner-icon.right {
    transform: translateY(-50%) rotate(2deg) scale(1.05);
}

/* SEMANTIC CONTENT */
.semantic-section,
.faq-section {
    padding: clamp(64px, 8vw, 104px) var(--section-inline);
    background: #ffffff;
}

.semantic-container,
.faq-container {
    width: min(100%, var(--container));
    max-width: var(--container);
    margin: 0 auto;
}

.semantic-container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: center;
}

.semantic-content h2 {
    max-width: 780px;
    margin-bottom: 16px;
    color: #1d163b;
    font-size: clamp(2rem, 3vw, 2.85rem);
    line-height: 1.15;
}

.semantic-content p {
    max-width: 760px;
    margin-bottom: 14px;
    color: var(--text-soft);
    font-size: clamp(0.96rem, 1.08vw, 1.04rem);
    line-height: 1.75;
}

.semantic-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.semantic-links a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid rgba(221, 212, 247, 0.78);
    border-radius: 16px;
    color: #4b3f88;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 247, 255, 0.82));
    box-shadow: 0 10px 24px rgba(93, 64, 211, 0.07);
    font-weight: 700;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.semantic-links a:hover,
.semantic-links a:focus {
    transform: translateY(-2px);
    border-color: rgba(108, 67, 243, 0.34);
    color: var(--primary);
}

.faq-section {
    background:
        radial-gradient(circle at 50% 20%, rgba(92, 49, 235, 0.12), transparent 34%),
        #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(221, 212, 247, 0.78);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(93, 64, 211, 0.07);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    color: #1f1840;
    font-weight: 800;
    list-style-position: outside;
}

.faq-item p {
    padding: 0 20px 18px;
    color: var(--text-soft);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* CONTACT */

.contact-box {
    width: min(100%, var(--container));
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(32px, 5vw, 58px) clamp(22px, 4vw, 48px);
    border-radius: 28px;

    background:
        radial-gradient(circle at 8% 0%, rgba(108, 67, 243, 0.10), transparent 34%),
        rgb(241, 235, 246);
    backdrop-filter: blur(10px);

    border: 1px solid var(--border);
    box-shadow: 0 18px 44px rgba(93, 64, 211, 0.10);
}

.contact-section {
    min-height: auto;
    padding: clamp(68px, 8vw, 108px) var(--section-inline) clamp(70px, 8vw, 112px);
    background:
        radial-gradient(circle at 60% 40%, rgba(92, 49, 235, 0.18), transparent),
        #ffffff;
}

.contact-container {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 1.18fr);
    gap: clamp(44px, 6vw, 86px);
    align-items: start;
}

.contact-content {
    align-self: start;
    margin-bottom: 0;
    padding-top: clamp(2px, 0.8vw, 10px);
}

.contact-content h2 {
    font-size: clamp(2.15rem, 3.6vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 18px;
    color: #1d163b;
}

.contact-content p {
    font-size: clamp(0.98rem, 1.08vw, 1.05rem);
    line-height: 1.75;
    color: rgba(31, 24, 64, 0.72);
    margin-bottom: 34px;
    max-width: 520px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.contact-card {
    position: relative;
    display: grid;
    gap: 4px;
    width: clamp(280px, 56%, 340px);
    min-height: 66px;
    padding: 11px 14px;
    border: 1px solid rgba(159, 114, 238, 0.14);
    border-radius: 12px;
    background: #f7f2ff;
    box-shadow: 0 6px 14px rgba(93, 64, 211, 0.035);
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(108, 67, 243, 0.28);
    background: #fbf8ff;
    box-shadow: 0 10px 20px rgba(93, 64, 211, 0.075);
}

.contact-card:focus-visible {
    outline: 3px solid rgba(108, 67, 243, 0.22);
    outline-offset: 3px;
}

.contact-card strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.22;
}

.contact-card span {
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 500;
    color: #241b48;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-card-primary {
    border-color: rgba(108, 67, 243, 0.20);
    background: #efe4ff;
    box-shadow: 0 7px 16px rgba(93, 64, 211, 0.05);
}

.contact-card-primary strong {
    color: #4d2fc7;
}

.contact-card-badge {
    position: absolute;
    top: 9px;
    right: 12px;
    justify-self: start;
    width: fit-content;
    margin-bottom: 1px;
    padding: 1px 6px;
    border-radius: 999px;
    background: rgba(108, 67, 243, 0.075);
    color: var(--primary-dark) !important;
    font-size: 0.62rem !important;
    font-weight: 600;
    line-height: 1.25 !important;
}

.contact-form-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: auto;
    isolation: isolate;
}

.contact-form {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    background: rgba(184, 167, 227, 0.88);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 34px 28px;
    box-shadow: 0 20px 46px rgba(61, 39, 138, 0.14);
    border: 1px solid rgba(221, 212, 247, 0.7);
    margin-top: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
}

.contact-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 500;
}

.contact-alert.success {
    background: rgba(34, 197, 94, 0.14);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.22);
}

.contact-alert.error {
    background: rgba(239, 68, 68, 0.14);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.22);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #1b003f;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 14px 16px;
    font-size: 0.98rem;
    outline: none;
    transition: 0.2s ease;

    background: rgba(255, 255, 255, 0.28);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);

    color: var(--text, #1f1840);
    -webkit-text-fill-color: var(--text, #1f1840);
    caret-color: var(--text, #1f1840);
    appearance: none;
    -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(70, 56, 105, 0.55);
    opacity: 1;
    -webkit-text-fill-color: rgba(70, 56, 105, 0.55);
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
    color: rgba(70, 56, 105, 0.55);
    opacity: 1;
    -webkit-text-fill-color: rgba(70, 56, 105, 0.55);
}

.contact-form input:-webkit-autofill,
.contact-form textarea:-webkit-autofill,
.contact-form select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.28) inset;
    -webkit-text-fill-color: var(--text, #1f1840);
    caret-color: var(--text, #1f1840);
    transition: background-color 9999s ease-out;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 67, 243, 0.14);
}

.contact-form button {
    width: 100%;
    margin-top: 6px;
}

/* FOOTER */
.site-footer {
    background: #191428;
    color: #ffffff;
    padding: 18px 24px;
}

.site-footer-container {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
    font-size: 0.92rem;
}
.menu-dropdown {
    position: relative;
    justify-self: end;
}

.public-menu-overlay {
    display: none;
}

.menu-dropdown:hover .mobile-menu,
.menu-dropdown:focus-within .mobile-menu,
.mobile-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .representantes-hero {
        grid-template-columns: 1fr;
    }

    .representantes-dashboard {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .contact-character {
        left: -40px;
        width: 160px;
        top: 18px;
    }
}

@media (max-width: 1300px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 8px;
        justify-items: center;
    }

    .hero-container {
        min-height: auto;
        padding-top: 12px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-proof {
        justify-content: center;
    }

    .hero-image-wrapper {
        min-height: auto;
        max-width: 920px;
    }

    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .representantes-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .representante-card,
    .representante-card-wide {
        grid-column: auto;
    }

    .representante-card-raised {
        transform: none;
    }

    .representante-card-raised:hover {
        transform: translateY(-5px);
    }

    .representantes-how {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        justify-content: center;
        min-height: auto;
        width: 100%;
        padding-top: 10px;
        align-items: flex-start;
    }

    .contact-form {
        max-width: 620px;
        margin: 0 auto;
    }

    .contact-content {
        margin-bottom: 0;
        width: 100%;
        max-width: 620px;
        text-align: center;
    }

    .contact-content p {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
    }

    .contact-info {
        align-items: stretch;
        gap: 10px;
    }

    .contact-card {
        max-width: 100%;
        text-align: left;
    }

    .contact-character,
    .contact-character-mobile {
        display: none !important;
    }
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #4b3f88;
    border-radius: 999px;
    transition: 0.25s ease;
}

.mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(260px, calc(100vw - 32px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(221, 212, 247, 0.8);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(93, 64, 211, 0.14);
    padding: 12px;
    z-index: 1001;

    display: flex;
    flex-direction: column;
    gap: 6px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

@media (max-width: 970px) {
    .site-header-container {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        min-height: 52px;
        position: relative;
        justify-items: stretch;
    }

    .brand {
        justify-content: start;
    }

    .brand-logo {
        height: 32px;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 10200;
        display: inline-flex;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(221, 212, 247, 0.84);
        box-shadow: 0 14px 34px rgba(93, 64, 211, 0.16);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    body.public-mobile-menu-open .menu-toggle {
        background: rgba(108, 67, 243, 0.94);
        border-color: rgba(108, 67, 243, 0.34);
    }

    body.public-mobile-menu-open .menu-toggle span {
        background: #ffffff;
    }

    .mobile-menu {
        position: fixed;
        top: 70px;
        right: 12px;
        z-index: 10100;
        width: min(320px, calc(100vw - 24px));
        max-width: 100%;
        height: auto;
        max-height: calc(100vh - 88px);
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(221, 212, 247, 0.8);
        border-radius: 18px;
        box-shadow: 0 18px 45px rgba(93, 64, 211, 0.16);
        padding: 12px;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: rgba(108, 67, 243, 0.32) rgba(108, 67, 243, 0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(0.98);
        transform-origin: top right;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .mobile-menu::-webkit-scrollbar {
        width: 6px;
    }

    .mobile-menu::-webkit-scrollbar-track {
        background: rgba(108, 67, 243, 0.08);
        border-radius: 999px;
    }

    .mobile-menu::-webkit-scrollbar-thumb {
        background: rgba(108, 67, 243, 0.32);
        border-radius: 999px;
    }

    .mobile-menu.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .public-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 900;
        display: block;
        background: transparent;
        opacity: 1;
        pointer-events: none;
    }

    .public-menu-overlay.is-visible {
        pointer-events: auto;
    }

    .public-menu-overlay[hidden] {
        display: none;
    }

    .mobile-nav-link {
        display: block;
        padding: 12px 14px;
        border-radius: 12px;
        color: #4b3f88;
        font-weight: 500;
        transition: 0.2s ease;
    }

    .mobile-nav-link:hover {
        background: rgba(108, 67, 243, 0.08);
        color: var(--primary);
    }

    .mobile-menu-divider {
        height: 1px;
        margin: 6px 4px;
        background: rgba(221, 212, 247, 0.85);
    }

    .mobile-action {
        text-align: center;
        font-weight: 600;
    }

    .mobile-primary {
        background: linear-gradient(135deg, #5e30f6, #b088f5);
        color: #fff;
        box-shadow: 0 10px 24px rgba(167, 72, 240, 0.24);
    }

    .mobile-primary:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        color: #fff;
    }

    .mobile-secondary {
        border: 1px solid rgba(108, 67, 243, 0.45);
        color: var(--primary);
        background: rgba(255, 255, 255, 0.55);
    }

    .mobile-secondary:hover {
        background: rgba(108, 67, 243, 0.08);
        color: var(--primary);
    }

    .mobile-register {
        background: linear-gradient(135deg, #5e30f6, #b088f5);
        color: #fff;
        text-align: center;
        margin-top: 6px;
    }

    .mobile-register:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        color: #fff;
    }

    .menu-dropdown:hover .mobile-menu:not(.show),
    .menu-dropdown:focus-within .mobile-menu:not(.show) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(0.98);
    }

    .mobile-menu.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }
}
@media (max-width: 900px) {

    .main-nav {
        gap: 18px;
        flex-wrap: wrap;
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .representantes-section {
        padding: calc(var(--header-height) + 24px) 18px 56px;
    }

    .representantes-copy {
        text-align: center;
        margin: 0 auto;
    }

    .representantes-copy p,
    .representantes-highlights {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .representantes-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 24px 28px;
    }

    .pricing-banner .btn-primary {
        width: 100%;
        max-width: 260px;
    }

    .contact-content {
        text-align: center;
    }

    .contact-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .semantic-container,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {

    .contact-card {
        width: 100%;
    }

    .contact-form-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0;
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    .pricing-banner-container {
        padding: 24px;
        text-align: center;
    }

    .banner-icon {
        display: none;
    }

}
@media (max-width: 600px) {
    .menu-toggle {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .mobile-menu {
        top: 58px;
        right: 10px;
        width: min(300px, calc(100vw - 20px));
        max-height: calc(100vh - 70px);
        padding: 12px;
    }

    .main-nav {
        gap: 14px;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .register-button,
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-proof {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .semantic-links {
        grid-template-columns: 1fr;
    }

    .representantes-cards,
    .representantes-steps {
        grid-template-columns: 1fr;
    }

    .representantes-hero {
        gap: 22px;
        margin-bottom: 22px;
    }

    .representantes-copy h1,
    .representantes-copy h2 {
        font-size: 2.15rem;
    }

    .representantes-copy p {
        font-size: 0.96rem;
    }

    .representantes-highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .representantes-dashboard {
        min-height: 300px;
        padding: 18px;
        border-radius: 20px;
    }

    .representante-card {
        min-height: auto;
        grid-column: auto;
    }

    .representante-card-raised,
    .representante-card-raised:hover {
        transform: none;
    }

    .rep-dashboard-summary {
        grid-template-columns: 1fr;
    }

    .representantes-how {
        padding: 18px;
        border-radius: 20px;
    }

    .representantes-steps div {
        min-height: auto;
    }

    .representantes-cta-button {
        width: 100%;
        min-width: 0;
    }

    .section-header h2,
    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 22px 18px;
    }
}
