:root {
    --vx-primary: #4f46e5;
    --vx-primary-dark: #3730a3;
    --vx-accent: #ec4899;
    --vx-accent-dark: #be185d;
    --vx-violet: #7c3aed;
    --vx-ink: #0f172a;
    --vx-ink-soft: #334155;
    --vx-muted: #64748b;
    --vx-border: #e2e8f0;
    --vx-bg: #ffffff;
    --vx-bg-alt: #f8fafc;
    --vx-bg-dark: #0b0f1a;
    --vx-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    --vx-gradient-soft: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(236, 72, 153, 0.06) 100%);
    --vx-radius: 16px;
    --vx-radius-lg: 24px;
    --vx-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
    --vx-shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
    --vx-shadow-lg: 0 20px 50px rgba(79, 70, 229, 0.18), 0 8px 16px rgba(15, 23, 42, 0.06);
    --vx-font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --vx-font-display: 'Sora', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--vx-font-sans);
    color: var(--vx-ink);
    background: var(--vx-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--vx-font-display); font-weight: 700; letter-spacing: -0.02em; }
a { color: var(--vx-primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--vx-primary-dark); }

.text-gradient {
    background: var(--vx-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.05);
    background: rgba(255, 255, 255, 0.95);
}

.site-header .navbar { padding-block: 0.75rem; }
.navbar-brand { font-weight: 800; font-size: 1.35rem; }
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    background: var(--vx-gradient);
    color: #fff;
    border-radius: 10px;
    font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}
.brand-text {
    font-family: var(--vx-font-display);
    background: var(--vx-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}
.navbar-toggler { border: none; font-size: 1.5rem; color: var(--vx-ink); }
.navbar-toggler:focus { box-shadow: none; }

.nav-link {
    color: var(--vx-ink-soft) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--vx-primary) !important; background: var(--vx-gradient-soft); }

.btn { font-weight: 600; border-radius: 12px; padding: 0.65rem 1.4rem; transition: all 0.25s ease; border: none; }
.btn-lg { padding: 0.95rem 1.8rem; font-size: 1rem; }

.btn-cta {
    background: var(--vx-gradient);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.32);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.42);
    color: #fff !important;
}

.btn-cta-accent {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.32);
}
.btn-cta-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.42);
    color: #fff !important;
}

.btn-ghost {
    background: transparent;
    color: var(--vx-ink) !important;
    border: 1px solid var(--vx-border);
}
.btn-ghost:hover { background: var(--vx-bg-alt); border-color: var(--vx-primary); color: var(--vx-primary) !important; }

.btn-cta-light { background: #fff; color: var(--vx-primary) !important; box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15); }
.btn-cta-light:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2); color: var(--vx-primary) !important; }

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.45); color: #fff !important; }

/* ===== Pill de saldo (header) ===== */
.btn-balance {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.85rem 0.3rem 0.35rem;
    border-radius: 999px;
    background: var(--vx-gradient-soft);
    border: 1px solid rgba(79, 70, 229, 0.22);
    color: var(--vx-ink) !important;
    font-weight: 600;
    line-height: 1;
    box-shadow: var(--vx-shadow-sm);
    transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-balance:hover {
    transform: translateY(-1px);
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.18);
    color: var(--vx-ink) !important;
}

.btn-balance .balance-icon {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: var(--vx-gradient);
    color: #fff;
    font-size: 0.85rem;
    flex: 0 0 auto;
}

.btn-balance .balance-amount {
    font-family: var(--vx-font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--vx-ink);
    letter-spacing: -0.01em;
}

.btn-balance .balance-cur {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--vx-muted);
}

.hero { position: relative; padding: 6rem 0 5rem; overflow: hidden; }
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 50% at 80% 10%, rgba(124, 58, 237, 0.18) 0%, transparent 60%),
        radial-gradient(50% 50% at 10% 90%, rgba(236, 72, 153, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    z-index: 0;
}
.hero-title { font-size: clamp(2.25rem, 4.5vw, 3.75rem); line-height: 1.08; margin-bottom: 1.25rem; }
.hero-subtitle { font-size: 1.15rem; color: var(--vx-ink-soft); margin-bottom: 2rem; max-width: 32rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.25rem; color: var(--vx-muted); font-size: 0.95rem; }
.meta-item { display: flex; align-items: center; gap: 0.4rem; }
.meta-item i { color: #10b981; }

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    background: var(--vx-gradient-soft);
    color: var(--vx-primary);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

.hero-visual { position: relative; }
.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--vx-radius-lg);
    box-shadow: var(--vx-shadow-lg);
    background: var(--vx-bg-alt);
    aspect-ratio: 6 / 5;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    box-shadow: var(--vx-shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--vx-border);
}
.floating-card i { font-size: 1.35rem; color: var(--vx-primary); }
.floating-card.card-2 i { color: var(--vx-accent); }
.fc-label { font-size: 0.75rem; color: var(--vx-muted); }
.fc-value { font-weight: 700; font-size: 0.95rem; color: var(--vx-ink); }
.floating-card.card-1 { top: 12%; left: -20px; }
.floating-card.card-2 { bottom: 12%; right: -10px; }

.trusted { padding: 2.5rem 0; background: var(--vx-bg-alt); border-block: 1px solid var(--vx-border); }
.trusted-label { color: var(--vx-muted); text-align: center; margin-bottom: 1rem; font-size: 0.9rem; }
.trusted-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center;
    color: var(--vx-ink-soft);
    font-weight: 600;
}
.trusted-logos span { display: flex; align-items: center; gap: 0.5rem; font-size: 1.05rem; opacity: 0.85; }
.trusted-logos i { font-size: 1.3rem; }

.section-header { margin-bottom: 2.5rem; }
.section-eyebrow {
    display: inline-block;
    color: var(--vx-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
}
.section-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 0.85rem; line-height: 1.15; }
.section-subtitle { color: var(--vx-ink-soft); font-size: 1.1rem; max-width: 38rem; margin: 0 auto; }

.services { padding: 6rem 0 5rem; }

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    padding: 2.25rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--vx-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow-lg); border-color: transparent; }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--vx-gradient-soft);
    color: var(--vx-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.service-card--accent .service-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(249, 115, 22, 0.08) 100%);
    color: var(--vx-accent);
}

.service-price { margin-bottom: 1rem; }
.price-amount { font-family: var(--vx-font-display); font-weight: 800; font-size: 2rem; color: var(--vx-ink); }
.price-detail { color: var(--vx-muted); margin-left: 0.5rem; font-size: 0.95rem; }

.service-title { font-size: 1.45rem; margin-bottom: 0.75rem; }
.service-desc { color: var(--vx-ink-soft); margin-bottom: 1.5rem; }
.service-features { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.service-features li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.4rem 0; color: var(--vx-ink-soft); }
.service-features i { color: var(--vx-primary); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
.service-card--accent .service-features i { color: var(--vx-accent); }

.service-detail { padding: 5rem 0; }
.service-detail--alt { background: var(--vx-bg-alt); }
.lead-text { font-size: 1.15rem; color: var(--vx-ink-soft); margin-bottom: 1.75rem; }

.detail-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.detail-step { display: flex; gap: 1rem; }
.step-badge {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--vx-gradient);
    color: #fff;
    font-weight: 700;
    display: grid;
    place-items: center;
}
.detail-step h4 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.detail-step p { color: var(--vx-ink-soft); margin: 0; }

.detail-visual img {
    width: 100%;
    border-radius: var(--vx-radius-lg);
    box-shadow: var(--vx-shadow-lg);
    background: #fff;
    aspect-ratio: 6 / 5;
    object-fit: cover;
}

.detail-visual--gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.detail-visual--gallery img {
    aspect-ratio: 1 / 1;
    border-radius: var(--vx-radius);
    box-shadow: var(--vx-shadow-md);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.detail-feature {
    background: #fff;
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius);
    padding: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-detail--alt .detail-feature { background: #fff; }
.detail-feature:hover { transform: translateY(-3px); box-shadow: var(--vx-shadow-md); }
.detail-feature i {
    font-size: 1.5rem;
    color: var(--vx-accent);
    margin-bottom: 0.6rem;
    display: block;
}
.detail-feature h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.detail-feature p { color: var(--vx-ink-soft); margin: 0; font-size: 0.92rem; }

.how { padding: 6rem 0 5rem; }
.how-card {
    background: #fff;
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.how-card:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow-md); }
.how-number {
    font-family: var(--vx-font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: var(--vx-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.18;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}
.how-icon {
    font-size: 2rem;
    color: var(--vx-primary);
    margin-bottom: 1rem;
    display: block;
}
.how-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.how-card p { color: var(--vx-ink-soft); margin: 0; }

.pricing { padding: 6rem 0 5rem; background: var(--vx-bg-alt); }
.price-card {
    background: #fff;
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--vx-shadow-md); }
.price-card--featured { border-color: transparent; box-shadow: var(--vx-shadow-lg); }
.price-card--featured::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: var(--vx-radius-lg);
    background: var(--vx-gradient);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.featured-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vx-gradient);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.price-card-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.price-card-head i { font-size: 1.5rem; color: var(--vx-primary); }
.price-card--featured .price-card-head i { color: var(--vx-accent); }
.price-card-head h3 { font-size: 1.4rem; margin: 0; }

.price-tag { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 1.5rem; }
.price-tag .currency { color: var(--vx-muted); font-weight: 600; font-size: 1rem; }
.price-tag .amount { font-family: var(--vx-font-display); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--vx-ink); }
.price-tag .period { color: var(--vx-muted); font-size: 0.95rem; }

.price-features { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.price-features li { display: flex; align-items: flex-start; gap: 0.55rem; padding: 0.5rem 0; color: var(--vx-ink-soft); border-bottom: 1px solid var(--vx-border); }
.price-features li:last-child { border-bottom: none; }
.price-features i { color: var(--vx-primary); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.price-card--featured .price-features i { color: var(--vx-accent); }

.price-note { color: var(--vx-muted); font-size: 0.85rem; text-align: center; margin: 0.85rem 0 0; }

.pricing-foot { color: var(--vx-muted); font-size: 0.95rem; }
.pricing-foot i { color: #10b981; margin-right: 0.35rem; }

.faq { padding: 6rem 0 5rem; }
.faq .accordion { max-width: 760px; }
.faq .accordion-item {
    border: 1px solid var(--vx-border);
    border-radius: var(--vx-radius) !important;
    margin-bottom: 0.85rem;
    overflow: hidden;
    background: #fff;
}
.faq .accordion-button {
    font-weight: 600;
    color: var(--vx-ink);
    padding: 1.15rem 1.25rem;
    font-size: 1.02rem;
    background: #fff;
}
.faq .accordion-button:not(.collapsed) {
    background: var(--vx-gradient-soft);
    color: var(--vx-primary);
    box-shadow: none;
}
.faq .accordion-button:focus { box-shadow: none; border-color: transparent; }
.faq .accordion-body { color: var(--vx-ink-soft); padding: 0 1.25rem 1.25rem; }

.cta-final { padding: 5rem 0; }
.cta-box {
    background: var(--vx-gradient);
    border-radius: var(--vx-radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--vx-shadow-lg);
}
.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(50% 50% at 80% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(40% 40% at 10% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: 0.85rem; color: #fff; }
.cta-box p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 1.75rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem; }

.site-footer { background: var(--vx-bg-dark); color: #cbd5e1; padding: 4rem 0 2rem; }
.site-footer h4 { color: #fff; font-family: var(--vx-font-display); font-size: 1rem; margin-bottom: 1rem; font-weight: 600; }
.footer-brand { font-weight: 800; font-size: 1.35rem; color: #fff; margin-bottom: 1rem; }
.footer-brand .brand-text {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.footer-tag { color: #94a3b8; max-width: 280px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    transition: all 0.25s ease;
}
.footer-social a:hover { background: var(--vx-gradient); color: #fff; transform: translateY(-2px); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: #94a3b8; font-size: 0.95rem; }
.footer-links a:hover { color: #fff; }
.footer-divider { margin: 3rem 0 1.5rem; border-color: rgba(255, 255, 255, 0.08); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}
.footer-tag-small { font-style: italic; opacity: 0.7; }

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: var(--vx-radius);
        border: 1px solid var(--vx-border);
        box-shadow: var(--vx-shadow-md);
    }
    .nav-link { padding: 0.75rem 1rem !important; }
    .navbar-nav .btn-cta { margin-top: 0.5rem; width: 100%; text-align: center; }
    .hero { padding: 4rem 0 3rem; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; text-align: center; }
    .floating-card { display: none; }
    .services, .how, .pricing, .faq { padding: 4rem 0 3rem; }
    .service-detail { padding: 3.5rem 0; }
    .detail-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 3rem 1.5rem; }
    .cta-actions { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== Widget de calificación (votar + mensaje) ===== */
.vote-widget {
    max-width: 640px;
    margin: 2.5rem auto 0;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border: 1px solid #e9ebf2;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.vote-title {
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 0 .35rem;
    color: var(--vx-ink, #0f172a);
}

.vote-title i { color: var(--vx-accent, #ec4899); }

.vote-sub {
    color: var(--vx-muted, #64748b);
    font-size: .92rem;
    margin: 0 0 1rem;
}

.vote-stars {
    display: inline-flex;
    gap: .35rem;
    margin-bottom: 1rem;
}

.vote-star {
    background: none;
    border: none;
    padding: .15rem;
    cursor: pointer;
    font-size: 1.9rem;
    line-height: 1;
    color: #f59e0b;
    transition: transform .12s ease;
}

.vote-star:hover { transform: scale(1.15); }
.vote-star i { pointer-events: none; }
.vote-star.is-active { color: #f59e0b; }

.vote-message {
    width: 100%;
    border: 1px solid #e2e5ee;
    border-radius: 12px;
    padding: .75rem .9rem;
    font-size: .95rem;
    font-family: inherit;
    resize: vertical;
    color: var(--vx-ink, #0f172a);
}

.vote-message:focus {
    outline: none;
    border-color: var(--vx-primary, #4f46e5);
    box-shadow: 0 0 0 .2rem rgba(79, 70, 229, 0.15);
}

.vote-count {
    font-size: .75rem;
    color: var(--vx-muted, #94a0b4);
    text-align: right;
    margin: .25rem 0 1rem;
}

.vote-send { min-width: 200px; }
.vote-send:disabled { opacity: .55; cursor: not-allowed; }

.vote-thanks {
    padding: 1rem 0;
    color: #16a34a;
}

.vote-thanks i { font-size: 2.4rem; }

.vote-thanks-title {
    margin: .5rem 0 .25rem;
    font-weight: 600;
    color: var(--vx-ink, #0f172a);
}

.vote-thanks-stars {
    justify-content: center;
    margin: .5rem 0;
}

.vote-star--readonly {
    cursor: default;
    pointer-events: none;
}

.vote-star--readonly:hover { transform: none; }

.vote-thanks-msg {
    margin: .75rem auto 0;
    max-width: 480px;
    padding: .75rem 1rem;
    font-size: .9rem;
    line-height: 1.5;
    color: var(--vx-muted, #64748b);
    background: #f8f9fc;
    border-radius: 10px;
    border: 1px solid #eceef5;
    white-space: pre-wrap;
    text-align: left;
}
