/* ============================================================
 *  CAREERS — css/careers.css  v2
 *  PLP (/careers/) + detalle (/careers/{slug}/)
 *  Dependencias: style.css (variables globales), servicios.css
 * ============================================================ */


/* ═══════════════════════════════════════════════════════════
   SHARED — fondo oscuro para todo el bloque careers
   ═══════════════════════════════════════════════════════════ */

.careers-page-wrap {
    background: var(--bg-dark, #1a0f16);
    position: relative;
}
.careers-page-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(141,9,107,.15) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 70%, rgba(113,200,217,.08) 0%, transparent 50%);
}
.careers-page-wrap > * {
    position: relative;
    z-index: 1;
}


/* ═══════════════════════════════════════════════════════════
   PLP — Hero
   ═══════════════════════════════════════════════════════════ */

.careers-hero {
    padding: 7rem 0 3.5rem;
    text-align: center;
}

.careers-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--secondary, #71c8d9);
    margin-bottom: 1.25rem;
}
.careers-hero__eyebrow svg {
    opacity: .7;
}

.careers-hero h1 {
    font-family: "Doppio One", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    margin: 0 0 1.25rem;
}
.careers-hero h1 span {
    color: var(--secondary, #71c8d9);
}

.careers-hero__intro {
    color: rgba(255,255,255,.6);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

/* Counters row */
.careers-hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}
.careers-hero__stat-number {
    font-family: "Doppio One", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}
.careers-hero__stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: .15rem;
}


/* ═══════════════════════════════════════════════════════════
   PLP — Tarjetas de vacantes
   ═══════════════════════════════════════════════════════════ */

.careers-listing {
    padding: 0 0 4rem;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
}

.careers-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.careers-card {
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
    position: relative;
    overflow: hidden;
}
.careers-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--main, #8d096b), var(--secondary, #71c8d9));
    opacity: 0;
    transition: opacity .3s ease;
}
.careers-card-link:hover .careers-card {
    border-color: rgba(141,9,107,.3);
    background: rgba(255,255,255,.06);
    transform: translateY(-2px);
}
.careers-card-link:hover .careers-card::before {
    opacity: 1;
}

.careers-card__title {
    font-family: "Doppio One", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 .6rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.careers-card__badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: rgba(141,9,107,.2);
    color: var(--main, #8d096b);
    padding: .2em .6em;
    border-radius: 5px;
    line-height: 1.4;
}

.careers-card__desc {
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.careers-card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 1.5rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255,255,255,.06);
}

.careers-card__meta {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
}
.careers-card__tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    color: rgba(255,255,255,.45);
}
.careers-card__tag svg { opacity: .5; }

.careers-card__action {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--secondary, #71c8d9);
    white-space: nowrap;
    transition: gap .2s ease;
}
.careers-card-link:hover .careers-card__action {
    gap: .55rem;
}


/* ═══════════════════════════════════════════════════════════
   PLP — Sin vacantes
   ═══════════════════════════════════════════════════════════ */

.careers-empty {
    text-align: center;
    padding: 4rem 1rem 3rem;
}
.careers-empty__icon {
    margin: 0 auto 1.5rem;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(141,9,107,.1);
    border: 1px solid rgba(141,9,107,.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.careers-empty__icon svg {
    color: var(--main, #8d096b);
    opacity: .7;
}
.careers-empty h2 {
    font-family: "Doppio One", sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: .75rem;
}
.careers-empty p {
    color: rgba(255,255,255,.55);
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-size: .95rem;
}


/* ═══════════════════════════════════════════════════════════
   PLP — "Cómo trabajamos" grid
   ═══════════════════════════════════════════════════════════ */

.careers-culture {
    padding: 4rem 0 5rem;
}

.careers-culture__eyebrow {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--secondary, #71c8d9);
    margin-bottom: .75rem;
    text-align: center;
}

.careers-culture__title {
    font-family: "Doppio One", sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: #fff;
    text-align: center;
    margin-bottom: 2.5rem;
}

.careers-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.careers-feature {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color .3s ease, background .3s ease;
}
.careers-feature:hover {
    border-color: rgba(141,9,107,.25);
    background: rgba(255,255,255,.05);
}

.careers-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(141,9,107,.12);
    border: 1px solid rgba(141,9,107,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}
.careers-feature__icon svg {
    color: var(--main, #8d096b);
}

.careers-feature h3 {
    font-family: "Doppio One", sans-serif;
    font-size: 1.05rem;
    color: #fff;
    margin: 0 0 .5rem;
    font-weight: 600;
}
.careers-feature p {
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    line-height: 1.65;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════════
   VIEW — Hero de vacante individual
   ═══════════════════════════════════════════════════════════ */

.cv-hero {
    padding: 6.5rem 0 3rem;
    background: transparent; /* inherits from .careers-page-wrap */
}

.cv-breadcrumb {
    font-size: .82rem;
    margin-bottom: 1.75rem;
    color: rgba(255,255,255,.35);
}
.cv-breadcrumb a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
}
.cv-breadcrumb a:hover { color: #fff; }
.cv-breadcrumb span { margin: 0 .4rem; }

.cv-hero__title {
    font-family: "Doppio One", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 .85rem;
    line-height: 1.15;
}

.cv-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: rgba(141,9,107,.2);
    color: var(--main, #8d096b);
    padding: .25em .7em;
    border-radius: 5px;
    margin-bottom: .85rem;
}

.cv-hero__meta {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.cv-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .9rem;
    color: rgba(255,255,255,.5);
}
.cv-hero__meta svg { opacity: .55; }

.cv-hero__desc {
    color: rgba(255,255,255,.65);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 700px;
    margin-bottom: 2.25rem;
}

/* CTA button in hero */
.cv-hero .cv-btn-primary {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.8rem;
    background: var(--main, #8d096b);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .15s;
    cursor: pointer;
    font-family: inherit;
    width: fit-content;
    margin: auto;
}
.cv-hero .cv-btn-primary:hover {
    background: #a00b7d;
    color: #fff;
    transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════════════════
   VIEW — Grid principal + sidebar
   ═══════════════════════════════════════════════════════════ */

.cv-detail {
    padding: 2rem 0 4rem;
}

.cv-detail__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

/* ── Secciones de contenido (cards) ───────────────────────── */
.cv-section {
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: border-color .3s ease;
}
.cv-section:hover {
    border-color: rgba(255,255,255,.14);
}

.cv-section__header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.cv-section__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cv-section__icon svg {
    width: 20px;
    height: 20px;
}

/* Color variants por sección */
.cv-section--requisitos .cv-section__icon {
    background: rgba(141,9,107,.12);
    border: 1px solid rgba(141,9,107,.18);
    color: var(--main, #8d096b);
}
.cv-section--deseables .cv-section__icon {
    background: rgba(113,200,217,.1);
    border: 1px solid rgba(113,200,217,.15);
    color: var(--secondary, #71c8d9);
}
.cv-section--ofrecemos .cv-section__icon {
    background: rgba(244,182,28,.1);
    border: 1px solid rgba(244,182,28,.15);
    color: var(--gold, #f4b61c);
}

.cv-section--condiciones .cv-section__icon {
    background: rgba(113,200,217,.1);
    border: 1px solid rgba(113,200,217,.15);
    color: var(--secondary, #71c8d9);
}
.cv-section--condiciones li::before {
    background: var(--secondary, #71c8d9);
    opacity: .5;
}

.cv-section h2 {
    font-family: "Doppio One", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.cv-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cv-section li {
    position: relative;
    padding: .65rem 0 .65rem 2rem;
    color: rgba(255,255,255,.7);
    font-size: .92rem;
    line-height: 1.65;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.cv-section li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.cv-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.05em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.cv-section--requisitos li::before {
    background: var(--main, #8d096b);
    opacity: .6;
}
.cv-section--deseables li::before {
    background: var(--secondary, #71c8d9);
    opacity: .5;
}
.cv-section--ofrecemos li::before {
    background: var(--gold, #f4b61c);
    opacity: .55;
}


/* ── Sidebar ──────────────────────────────────────────────── */
.cv-detail__sidebar {
    position: sticky;
    top: 5.5rem;
}

.cv-sidebar-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}
.cv-sidebar-card h3 {
    font-family: "Doppio One", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1.1rem;
}
.cv-sidebar-card p {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    line-height: 1.65;
    margin: 0;
}
.cv-sidebar-card strong {
    color: rgba(255,255,255,.8);
}

.cv-sidebar-card dl { margin: 0; }
.cv-sidebar-card dt {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255,255,255,.35);
    margin-bottom: .2rem;
}
.cv-sidebar-card dd {
    font-size: .92rem;
    color: rgba(255,255,255,.75);
    margin: 0 0 .9rem;
}
.cv-sidebar-card dd:last-of-type {
    margin-bottom: 1.5rem;
}

.cv-sidebar-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    width: 100%;
    padding: .75rem 1rem;
    background: var(--main, #8d096b);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .15s;
    cursor: pointer;
}
.cv-sidebar-card__btn:hover {
    background: #a00b7d;
    color: #fff;
    transform: translateY(-1px);
}

/* Sidebar — mini banner "por qué Asdrubal" */
.cv-sidebar-why {
    background: linear-gradient(135deg, rgba(141,9,107,.12) 0%, rgba(113,200,217,.08) 100%);
    border: 1px solid rgba(141,9,107,.15);
    border-radius: 14px;
    padding: 1.75rem;
}
.cv-sidebar-why h3 {
    font-family: "Doppio One", sans-serif;
    font-size: .95rem;
    color: #fff;
    margin: 0 0 .75rem;
}
.cv-sidebar-why ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cv-sidebar-why li {
    padding: .35rem 0;
    padding-left: 1.4rem;
    position: relative;
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    line-height: 1.6;
}
.cv-sidebar-why li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary, #71c8d9);
    font-weight: 700;
    font-size: .8rem;
}


/* ═══════════════════════════════════════════════════════════
   VIEW — CTA final
   ═══════════════════════════════════════════════════════════ */

.cv-cta {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.06);
}
.cv-cta__label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--secondary, #71c8d9);
    margin-bottom: .75rem;
}
.cv-cta h2 {
    font-family: "Doppio One", sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #fff;
    margin-bottom: .75rem;
}
.cv-cta h2 span {
    color: var(--secondary, #71c8d9);
}
.cv-cta p {
    color: rgba(255,255,255,.55);
    max-width: 520px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
    font-size: .95rem;
}
.cv-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .75rem 1.6rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, border-color .2s;
}
.cv-cta__btn:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.25);
    color: #fff;
}


/* ═══════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
    .cv-detail__grid {
        grid-template-columns: 1fr;
    }
    .cv-detail__sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .careers-grid {
        grid-template-columns: 1fr;
    }
    .careers-hero {
        padding: 5.5rem 0 2.5rem;
    }
    .careers-hero__stats {
        gap: 1.5rem;
    }
    .cv-hero {
        padding: 5rem 0 2rem;
    }
    .cv-hero__title {
        font-size: 1.7rem;
    }
    .cv-hero__meta {
        flex-direction: column;
        gap: .5rem;
    }
    .cv-section {
        padding: 1.5rem;
    }
    .careers-card__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
    }
    .careers-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .careers-hero h1 {
        font-size: 1.5rem;
    }
    .cv-hero__title {
        font-size: 1.45rem;
    }
    .cv-detail__sidebar {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════════════════════════════════
   FORMULARIO DE CANDIDATURA
   ═══════════════════════════════════════════════════════════ */

.cv-form-section {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,.06);
}

.cv-form-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.cv-form-header {
    text-align: center;
    margin-bottom: 2rem;
}
.cv-form-header h2 {
    font-family: "Doppio One", sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    color: #fff;
    margin: 0 0 .35rem;
}
.cv-form-header p {
    color: rgba(255,255,255,.5);
    font-size: .95rem;
    margin: 0;
}
.cv-form-header strong {
    color: rgba(255,255,255,.8);
}

/* Mensajes éxito / error */
#cv-sendmessage {
    display: none;
    background: rgba(113,200,217,.12);
    border: 1px solid rgba(113,200,217,.35);
    color: var(--secondary, #71c8d9);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}
#cv-errormessage {
    display: none;
    background: rgba(220,53,69,.1);
    border: 1px solid rgba(220,53,69,.35);
    color: #f87171;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: .9rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Honeypot */
#cv-honeypot {
    display: none !important;
}

/* Grid rows */
.cv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.cv-form-group {
    display: flex;
    flex-direction: column;
}
.cv-form-group--full {
    margin-bottom: 1.25rem;
}

.cv-form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    margin-bottom: .45rem;
}
.cv-form-group label small {
    font-weight: 400;
    color: rgba(255,255,255,.35);
}
.cv-required {
    color: var(--main, #8d096b);
}

/* Inputs */
.cv-form-control {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    color: #fff;
    padding: .7rem 1rem;
    font-size: .9rem;
    font-family: inherit;
    transition: border-color .2s, background .2s;
    width: 100%;
}
.cv-form-control::placeholder {
    color: rgba(192,182,189,.5);
}
.cv-form-control:focus {
    background: rgba(255,255,255,.08);
    border-color: var(--secondary, #71c8d9);
    box-shadow: 0 0 0 3px rgba(113,200,217,.12);
    outline: none;
    color: #fff;
}
textarea.cv-form-control {
    resize: vertical;
    min-height: 120px;
}

/* File inputs */
.cv-file-input {
    position: relative;
    background: rgba(255,255,255,.03);
    border: 1px dashed rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.cv-file-input:hover {
    border-color: rgba(141,9,107,.4);
    background: rgba(255,255,255,.05);
}
.cv-file-input input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.cv-file-input__label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    pointer-events: none;
}
.cv-file-input__label svg {
    color: rgba(255,255,255,.35);
}
.cv-file-input__label span {
    font-size: .88rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
}
.cv-file-input__label small {
    font-size: .75rem;
    color: rgba(255,255,255,.3);
}
.cv-file-input__name {
    display: none;
    margin-top: .6rem;
    font-size: .8rem;
    color: var(--secondary, #71c8d9);
    font-weight: 600;
    word-break: break-all;
}

/* Legal checkbox */
.cv-form-legal {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.cv-form-legal input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--main, #8d096b);
}
.cv-form-legal a {
    color: var(--secondary, #71c8d9);
}
.cv-form-legal a:hover {
    text-decoration: underline;
}

/* Submit */
.cv-form-submit {
    text-align: center;
}
.cv-form-submit .cv-btn-primary {
    cursor: pointer;
    font-family: inherit;
}
.cv-form-submit .cv-btn-primary:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 600px) {
    .cv-form-row {
        grid-template-columns: 1fr;
    }
}

/* ── Botón primario (base compartida) ─────────────────────── */
.cv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.8rem;
    background: var(--main, #8d096b);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .15s;
    cursor: pointer;
    font-family: inherit;
}
.cv-btn-primary:hover {
    background: #a00b7d;
    color: #fff;
    transform: translateY(-1px);
}
.cv-btn-primary:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}