@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --c-primary: #6B1A2F;
    --c-primary-mid: #8E2340;
    --c-primary-soft: rgba(107, 26, 47, 0.07);
    --c-accent: #9E8040;
    --c-accent-soft: rgba(158, 128, 64, 0.10);
    --c-focus: rgba(107, 26, 47, 0.18);

    --c-white: #FFFFFF;
    --c-ink: #1A1A1A;
    --c-ink-2: #3D3D3D;
    --c-ink-3: #6B6B6B;
    --c-ink-4: #9A9A9A;
    --c-surface: #F5F4F2;
    --c-surface-2: #ECEAE6;
    --c-tint: #FAF8F6;
    --c-rule: #E8E0D8;
    --c-danger: #B91C1C;
    --c-success: #166534;

    --font: 'Poppins', sans-serif;

    /* Radios */
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 12px;
    --r-xl: 20px;
    --r-full: 9999px;

    /* Transiciones */
    --t-fast: 120ms ease;
    --t-base: 220ms ease;
    --t-slow: 380ms ease;

    --navbar-h: 64px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--c-ink);
    background-color: var(--c-tint);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color var(--t-fast);
}

a:hover {
    color: var(--c-primary-mid);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-ink);
}

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
    background-color: var(--c-primary);
    padding: 0.35rem 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar-logos {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.topbar-logos img {
    height: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.topbar-text {
    font-size: 0.6875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.01em;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.nav-iems {
    background-color: var(--c-white);
    border-bottom: 1px solid var(--c-rule);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    height: var(--navbar-h);
}

.nav-iems .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.nav-iems .brand-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-iems .brand-logos img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-iems .brand-text-fallback {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-ink);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.nav-iems .nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--c-ink-3) !important;
    padding: 0.375rem 0.75rem !important;
    border-radius: var(--r-full);
    transition: all var(--t-fast);
}

.nav-iems .nav-link:hover,
.nav-iems .nav-link.active {
    color: var(--c-primary) !important;
    background-color: var(--c-primary-soft);
}

.nav-iems .navbar-toggler {
    border: 1px solid var(--c-rule);
    border-radius: var(--r-sm);
    padding: 0.3rem 0.5rem;
}

.nav-iems .navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--c-focus);
    outline: none;
}

/* ── BOTONES ─────────────────────────────────────────────── */
.btn-p {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    padding: 0.5625rem 1.25rem;
    border-radius: var(--r-full);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--t-fast);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.btn-p svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-lg {
    font-size: 0.9375rem;
    padding: 0.75rem 1.75rem;
}

.btn-lg svg {
    width: 16px;
    height: 16px;
}

.btn-sm {
    font-size: 0.75rem;
    padding: 0.4375rem 1rem;
}

.btn-primary {
    background-color: var(--c-primary);
    color: white;
    border-color: var(--c-primary);
}

.btn-primary:hover {
    background-color: var(--c-primary-mid);
    border-color: var(--c-primary-mid);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(107, 26, 47, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--c-primary);
    border-color: rgba(107, 26, 47, 0.28);
}

.btn-outline:hover {
    background-color: var(--c-primary-soft);
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.btn-ghost {
    background-color: transparent;
    color: var(--c-ink-3);
    border-color: var(--c-rule);
}

.btn-ghost:hover {
    background-color: var(--c-surface);
    color: var(--c-ink);
}

.btn-white {
    background-color: white;
    color: var(--c-primary);
    border-color: white;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.88);
    color: var(--c-primary);
    transform: translateY(-1px);
}

.btn-ghost-white {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost-white:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.45);
    background-color: rgba(255, 255, 255, 0.07);
}

/* ── SECCIONES BASE ─────────────────────────────────────── */
.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3.5rem 0;
}

.section-tint {
    background-color: var(--c-surface);
}

.section-white {
    background-color: var(--c-white);
}

.section-head {
    margin-bottom: 2.75rem;
}

.sh-overline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-ink-4);
    margin-bottom: 0.75rem;
}

.section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--c-ink);
    margin-bottom: 0.625rem;
    line-height: 1.15;
}

.section-head p {
    font-size: 0.9375rem;
    color: var(--c-ink-3);
    font-weight: 400;
    max-width: 540px;
    line-height: 1.75;
    margin: 0;
}

.section-head.center {
    text-align: center;
}

.section-head.center p,
.section-head.center .sh-overline {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

/* ──  ──────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-primary);
    background: var(--c-primary-soft);
    padding: 0.3rem 0.85rem;
    border-radius: var(--r-full);
    margin-bottom: 0.875rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--c-ink);
    line-height: 1.15;
}

/* ── ────────────────────────────────────────────────── */
.hero-main {
    background-color: var(--c-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(107, 26, 47, 0.93) 0%, rgba(107, 26, 47, 0.72) 50%, rgba(107, 26, 47, 0.45) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-48deg, transparent, transparent 48px, rgba(255, 255, 255, 0.012) 48px, rgba(255, 255, 255, 0.012) 49px);
    pointer-events: none;
    z-index: 1;
}

.hero-main>* {
    position: relative;
    z-index: 2;
}

.hero-main .hm-eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 0.875rem;
}

.hero-main h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.0;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-main h1 .h-thin {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.38);
}

.hero-main .hm-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.8;
    max-width: 480px;
}

.hero-main .hm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.25rem;
}

.hero-main .hm-stats {
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.hero-main .hm-stat-val {
    font-size: 1.875rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-main .hm-stat-label {
    font-size: 0.6875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── ──────────────────────────────── */
.steps-head-sticky {
    position: sticky;
    top: calc(var(--navbar-h) + 1.5rem);
}

.steps-main-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.steps-main-desc {
    font-size: 0.9375rem;
    color: var(--c-ink-3);
    line-height: 1.75;
    margin: 0;
}

.steps-list {
    display: flex;
    flex-direction: column;
}

.step-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--c-rule);
}

.step-row-num {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--c-ink-4);
    text-transform: uppercase;
    padding-top: 0.25rem;
    min-width: 22px;
    flex-shrink: 0;
}

.step-row-body {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
}

.step-row-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-ink);
    margin-bottom: 0.375rem;
}

.step-row-content p {
    font-size: 0.875rem;
    color: var(--c-ink-3);
    line-height: 1.7;
    margin: 0;
}

/* ──  ─────────────────────────────────────────── */
.form-p label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--c-ink-2);
    margin-bottom: 0.4rem;
}

.form-p .form-control,
.form-p .form-select {
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 400;
    border: 1.5px solid var(--c-rule);
    border-radius: var(--r-md);
    padding: 0.625rem 0.875rem;
    color: var(--c-ink);
    background-color: var(--c-white);
    width: 100%;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    outline: none;
    appearance: none;
}

.form-p .form-control:focus,
.form-p .form-select:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px var(--c-focus);
}

.form-p .form-control::placeholder {
    color: var(--c-ink-4);
    font-size: 0.8125rem;
}

.form-p textarea.form-control {
    resize: vertical;
    min-height: 88px;
}

.form-p .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239A9A9A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.25rem;
}

/* ──  ─────────────────────────────────────────── */
.scale-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.625rem;
}

.scale-opt input[type="radio"] {
    display: none;
}

.scale-opt label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--c-rule);
    border-radius: var(--r-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-ink-4);
    cursor: pointer;
    transition: all var(--t-fast);
    background-color: var(--c-white);
    user-select: none;
}

.scale-opt label:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background-color: var(--c-primary-soft);
}

.scale-opt input[type="radio"]:checked+label {
    background-color: var(--c-primary);
    border-color: var(--c-primary);
    color: white;
}

.scale-extremes {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3rem;
    padding: 0 2px;
}

.scale-extremes span {
    font-size: 0.6875rem;
    color: var(--c-ink-4);
}

/* ──  ─────────────────────────────────────────── */
.rc-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.625rem;
}

.radio-chip input[type="radio"] {
    display: none;
}

.radio-chip label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.875rem;
    border: 1.5px solid var(--c-rule);
    border-radius: var(--r-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--c-ink-2);
    cursor: pointer;
    transition: all var(--t-fast);
    background-color: var(--c-white);
    white-space: nowrap;
}

.radio-chip label:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background-color: var(--c-primary-soft);
}

.radio-chip input[type="radio"]:checked+label {
    border-color: var(--c-primary);
    background-color: var(--c-primary);
    color: white;
}

/* ──  ─────────────────────────────────── */
.q-block {
    background-color: var(--c-white);
    border: 1px solid var(--c-rule);
    border-radius: var(--r-md);
    padding: 1.375rem 1.5rem;
    margin-bottom: 0.625rem;
}

.q-block .q-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.q-block .q-num {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-ink-4);
}

.q-block .q-req {
    color: var(--c-danger);
    font-weight: 700;
    font-size: 0.875rem;
}

.q-block .q-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--c-ink);
    line-height: 1.45;
}

.q-block .q-hint {
    font-size: 0.8125rem;
    color: var(--c-ink-4);
    font-weight: 400;
    margin-top: 0.3rem;
}

.q-block.error {
    border-color: rgba(185, 28, 28, 0.4);
    background-color: rgba(185, 28, 28, 0.02);
}

/* ── ─────────────────────────────────── */
.survey-bar {
    background-color: var(--c-white);
    border-bottom: 1px solid var(--c-rule);
    padding: 0.75rem 0;
    position: sticky;
    top: var(--navbar-h);
    z-index: 900;
}

.survey-bar .sb-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.survey-bar .sb-steps {
    display: flex;
    gap: 3px;
    flex: 1;
}

.survey-bar .sb-pill {
    height: 3px;
    flex: 1;
    border-radius: var(--r-full);
    background-color: var(--c-surface-2);
    transition: background-color var(--t-base);
}

.survey-bar .sb-pill.active {
    background-color: var(--c-primary);
}

.survey-bar .sb-pill.done {
    background-color: var(--c-accent);
}

.survey-bar .sb-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--c-ink-4);
    white-space: nowrap;
}

/* ── ─────────────────────────────────────────────── */
.notice {
    background-color: var(--c-surface);
    border: 1px solid var(--c-rule);
    border-left: 3px solid var(--c-primary);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: 0.875rem 1.125rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.notice .n-icon svg {
    width: 15px;
    height: 15px;
    fill: var(--c-primary);
}

.notice .n-text {
    font-size: 0.8125rem;
    color: var(--c-ink-2);
    line-height: 1.65;
}

.notice .n-text strong {
    color: var(--c-primary);
    font-weight: 600;
}

/* ──  ─────────────────────────────────────────── */
.submit-area {
    background-color: var(--c-white);
    border: 1px solid var(--c-rule);
    border-top: 2px solid var(--c-primary);
    border-radius: var(--r-lg);
    padding: 2.25rem;
    text-align: center;
    margin-top: 1.5rem;
}

.submit-area .sa-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    background-color: var(--c-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.125rem;
}

.submit-area .sa-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--c-primary);
}

.submit-area h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.submit-area p {
    font-size: 0.8125rem;
    color: var(--c-ink-3);
    max-width: 380px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.submit-area .sa-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer-p {
    background-color: #111110;
    padding: 3.5rem 0 1.5rem;
}

.footer-p .fp-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-p .fp-logos img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.55;
}

.footer-p .fp-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-p .fp-tagline {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.32);
    margin: 0.625rem 0 0;
    line-height: 1.75;
    max-width: 260px;
}

.footer-p .fp-col-title {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
    margin-bottom: 1rem;
}

.footer-p .fp-link {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.5rem;
    transition: color var(--t-fast);
}

.footer-p .fp-link:hover {
    color: rgba(255, 255, 255, 0.80);
}

.footer-p .fp-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 2.5rem 0 1.25rem;
}

.footer-p .fp-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.2);
}

.footer-accent {
    height: 2px;
    background: linear-gradient(to right, var(--c-primary), var(--c-accent) 50%, transparent);
}


[data-reveal] {
    opacity: 0;
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="up"] {
    transform: translateY(28px);
}

[data-reveal="left"] {
    transform: translateX(-28px);
}

[data-reveal="right"] {
    transform: translateX(28px);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal="scale"] {
    transform: scale(0.95);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-delay="1"] {
    transition-delay: 0.08s;
}

[data-delay="2"] {
    transition-delay: 0.16s;
}

[data-delay="3"] {
    transition-delay: 0.24s;
}

[data-delay="4"] {
    transition-delay: 0.32s;
}

[data-delay="5"] {
    transition-delay: 0.40s;
}

[data-delay="6"] {
    transition-delay: 0.48s;
}

@media (max-width: 991.98px) {
    .steps-head-sticky {
        position: static;
        margin-bottom: 2rem;
    }

    :root {
        --navbar-h: 56px;
    }
}

@media (max-width: 767.98px) {
    .hero-main {
        padding: 3.5rem 0 3rem;
        min-height: auto;
    }

    .section {
        padding: 3.5rem 0;
    }

    .hide-sm {
        display: none !important;
    }

    .submit-area {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .scale-opt label {
        width: 40px;
        height: 40px;
    }

    .hero-main h1 {
        letter-spacing: -0.01em;
    }
}

@media (min-width: 992px) {
    .survey-wrap {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── MODAL PRIVACIDAD ── */
.modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.modal-header {
    padding: 0;
    border: none;
}

.modal-header-inner {
    padding: 26px 32px 20px;
}

.modal-header-inner h5 {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

.modal-header-inner p {
    font-size: .68rem;
    margin-top: 5px;
    font-weight: 500;
    letter-spacing: .04em;
}

.modal-header .btn-close {
    margin: 16px 18px;
    flex-shrink: 0;
}

.modal-body {
    padding: 26px 32px;
}

.priv-p {
    font-size: .8rem;
    color: var(--gris3);
    line-height: 1.75;
    margin-bottom: 14px;
}

.modal-footer {
    background: var(--gris4);
    border-top: 1px solid #e0e0e0;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-footer-date {
    font-size: .7rem;
    color: var(--gris3);
}

.btn-ok {
    background: var(--v1);
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    font-family: 'Montserrat', sans-serif;
    transition: .2s;
    cursor: pointer;
}

.btn-ok:hover {
    background: var(--v2);
}