:root {
    --ink: #2b2523;
    --ink-soft: #5a5451;
    --surface: #f7f8f7;
    --white: #ffffff;
    --brand: #1cb6b5;
    --brand-deep: #00908c;
    --yellow: #ffbe00;
    --line: rgba(6, 40, 58, .14);
    --shadow: 0 22px 60px rgba(6, 40, 58, .12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.hidden {
    display: none !important;
}
.alert {
    margin: 12px 0 0 0;
    padding: 12px 16px;
    color: var(--white);
    font-size: 13px;
    line-height: 1.4;
    border-radius: var(--radius-md);
    background: #1F9D6C;
}
.alert-datos {
    margin: 0;
    padding: 12px 16px;
    color: var(--white);
    font-size: 13px;
    line-height: 1.4;
    border-radius: var(--radius-md);
    background: #1F9D6C;
}
.alert-modal {
    margin-top: 4px;
    padding: 12px 16px;
    color: var(--white);
    border-radius: 12px;
}
.alert-recover {
    padding: 20px;
}
.alert-registro {
    margin-top: 6px;
    padding: 18px;
    line-height: 1.55;
    font-size: 13.5px;
}
.alert-registro small {
    line-height: 1.4;
    font-size: 12.5px;
}
.alert-error {
    background: #E5484D;
}
/* spinner */
.spinner {
  position: relative;
}
.spinner:before {
  content: ":";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 0px;
  border-radius: 50%;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: -0.7rem;
  color: var(--brand-deep);
  /*box-shadow: 5px 5px 12px 2px rgba(0, 0, 0, 0.5);*/

  -webkit-animation: animation-spinner 0.5s linear infinite;
  animation: animation-spinner 0.5s linear infinite;
}

.over {
    max-height: 82vh;
    overflow-y: auto;
    padding-right: 30px;
}

.input-pass {
    position: relative;
    /*width: 90%;*/
}
.ojo {
    position: absolute;
    right: 10px;
    top: 16px;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 5;
    padding: 24px 0;
    color: var(--ink);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    width: 142px;
    transition: opacity .2s ease;
}

.logo:hover {
    opacity: .82;
}

.logo-cgc svg {
    display: block;
    width: 100%;
    height: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-create {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    color: #2b2523;
    background: #ffbe00;
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease;
    border: 0;
    font-family: inherit;
    cursor: pointer;
}

/* inicio */
.field-helper {
    display: block;
    margin-top: 0;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
}

.header-create:hover {
    background: #ffd45b;
    transform: translateY(-1px);
}

.header-link {
    padding: 0 0 4px;
    border: 0;
    color: inherit;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid rgba(43, 37, 35, .45);
    transition: opacity .2s ease;
    cursor: pointer;
}

.header-link:hover {
    opacity: .72;
}

.header-help {
    font-size: 12px;
    display: flex;
    align-items: center;
}

.header-help svg {
    width: 18px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    padding: 162px 0 86px;
    color: var(--ink);
    background: linear-gradient(118deg, #ffffff 0%, #dff6f4 42%, #1cb6b5 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    right: -370px;
    bottom: -420px;
    border: 1px solid rgba(255, 190, 0, .82);
    border-radius: 50%;
    box-shadow: 0 0 0 88px rgba(255, 190, 0, .13), 0 0 0 176px rgba(255, 190, 0, .09), 0 0 0 264px rgba(255, 190, 0, .06);
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -335px;
    right: 14%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 64%);
    filter: blur(8px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .72fr);
    gap: clamp(42px, 8vw, 118px);
    align-items: end;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #1cb6b5;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
}

h1 {
    max-width: 710px;
    color: #2b2523;
    margin: 0;
    font-size: clamp(48px, 6vw, 80px);
    line-height: .95;
    letter-spacing: -.075em;
    font-weight: 800;
}

.hero-copy {
    max-width: 540px;
    margin: 28px 0 0;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.45;
    color: rgba(43, 37, 35, .86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #2b2523;
    background: #ffbe00;
}

.button-primary:hover {
    background: #ffd45b;
}

.button-secondary {
    color: var(--ink);
    border-color: rgba(43, 37, 35, .22);
    background: rgba(255, 255, 255, .42);
}

.button-secondary:hover {
    border-color: rgba(43, 37, 35, .5);
    background: rgba(255, 255, 255, .82);
}

.hero-card {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(43, 37, 35, .16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 20px 45px rgba(43, 37, 35, .10);
    backdrop-filter: blur(12px);
}

.hero-card h2 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -.035em;
}

.steps {
    display: grid;
    gap: 18px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 13px;
    align-items: start;
    color: rgba(43, 37, 35, .78);
    font-size: 15px;
    line-height: 1.35;
}

.step-number {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: #2b2523;
    background: #ffbe00;
    font-size: 12px;
    font-weight: 900;
}

.hero-note {
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(43, 37, 35, .12);
    color: rgba(43, 37, 35, .58);
    font-size: 12px;
    line-height: 1.45;
}

.section {
    padding: clamp(76px, 10vw, 132px) 0;
}

.essentials-section {
    background: #ffffff;
}

.essentials-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
    gap: clamp(42px, 10vw, 160px);
    align-items: start;
}

.essentials-copy {
    position: sticky;
    top: 30px;
}

.essentials-copy p:not(.section-kicker) {
    max-width: 430px;
    margin: 23px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: -.025em;
}

.essentials-list {
    border-top: 1px solid var(--line);
}

.essential-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.essential-number {
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 800;
}

.essential-row strong {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    letter-spacing: -.035em;
}

.essential-row p {
    max-width: 420px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
}

.faq-section {
    background: #e8e2dd;
}

.faq-wrap {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(390px, 1.28fr);
    gap: clamp(42px, 10vw, 144px);
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 30px;
}

.faq-intro > p:not(.section-kicker) {
    max-width: 360px;
    margin: 22px 0 0;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.55;
}

.section-kicker {
    margin: 0 0 18px;
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

h2 {
    margin: 0;
    font-size: clamp(35px, 4.7vw, 62px);
    line-height: 1;
    letter-spacing: -.065em;
}

.large-copy {
    max-width: 650px;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(19px, 2.1vw, 25px);
    line-height: 1.46;
    letter-spacing: -.025em;
}

.faq-list {
    border-top: 1px solid var(--line);
}

details {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
    font-size: 18px;
    font-weight: 760;
    letter-spacing: -.035em;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    color: var(--brand-deep);
    font-size: 29px;
    font-weight: 400;
    line-height: 1;
}

details[open] summary::after {
    content: "−";
}

details p {
    max-width: 700px;
    margin: 16px 44px 0 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(54px, 7vw, 90px);
    border-radius: var(--radius-lg);
    color: var(--white);
    background: linear-gradient(125deg, #00908c, #1cb6b5);
}

.final-cta::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -110px;
    top: -170px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    box-shadow: 0 0 0 64px rgba(255, 255, 255, .1), 0 0 0 128px rgba(255, 255, 255, .08);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
}

.final-cta h2 {
    max-width: 690px;
    font-size: clamp(38px, 5.2vw, 68px);
}

.final-cta p {
    max-width: 580px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.45;
}

.final-cta .button-primary {
    flex: 0 0 auto;
}

footer {
    padding: 28px 0 36px;
    color: var(--ink-soft);
    font-size: 12px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a:hover {
    color: var(--brand-deep);
}

.hero-card .section-kicker {
    margin-bottom: 16px;
    color: var(--brand-deep);
}

.hero-card h2 {
    max-width: 360px;
    font-size: clamp(28px, 3.1vw, 38px);
    line-height: 1.05;
    letter-spacing: -.055em;
}

.hero-card-copy {
    margin: 18px 0 0;
    color: rgba(43, 37, 35, .72);
    font-size: 15px;
    line-height: 1.55;
}

.hero-card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 23px;
}

.hero-card-pills span {
    padding: 8px 11px;
    border: 1px solid rgba(43, 37, 35, .14);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, .65);
    font-size: 12px;
    font-weight: 700;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(43, 37, 35, .50);
    backdrop-filter: blur(8px);
}

.modal-dialog {
    position: relative;
    width: min(100%, 470px);
    padding: 32px;
    padding-right: 2px;
    padding-top: 42px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 28px 90px rgba(43, 37, 35, .25);
    transform: translateY(12px) scale(.98);
    transition: transform .22s ease;
}

.modal.is-open .modal-dialog {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 16px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.modal-close:hover {
    background: var(--surface);
}

.modal-eyebrow {
    margin: 0 0 10px;
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.modal-dialog h2 {
    max-width: 340px;
    font-size: 36px;
    line-height: 1.05;
}

.modal-dialog > p:not(.modal-eyebrow) {
    margin: 14px 0 24px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
}

.login-form {
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 3px;
}

.field-control {
    position: relative;
}

.field label {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 12px;
    padding: 0 5px;
    transform: translateY(-50%);
    color: var(--ink-soft);
    background: var(--white);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.field input {
    width: 100%;
    height: 54px;
    padding: 16px 14px 8px;
    border: 1px solid rgba(43, 37, 35, .18);
    border-radius: 12px;
    outline: none;
    color: var(--ink);
    background: var(--white);
    font: inherit;
    font-size: 14px;
}

.field input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(28, 182, 181, .14);
}

.field-error input {
    border-color: #d65b52;
    background: #fffdfd;
}

.field-error input:focus {
    border-color: #d65b52;
    box-shadow: 0 0 0 4px rgba(214, 91, 82, .12);
}

.field-error-message {
    margin-top: 4px;
    margin-bottom: 4px;
    color: #b6423a;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    display: none;
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated textarea:invalid {
    border-color: #d65b52 !important;
}

.was-validated input:invalid ~ .field-error-message,
.was-validated select:invalid ~ .field-error-message,
.was-validated textarea:invalid ~ .field-error-message {
    display: block;
}

.login-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 8px;
}

.login-actions a {
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 700;
}

.login-actions .button {
    min-height: 48px;
}

.modal-view[hidden] {
    display: none;
}

.modal-back,
.text-link,
.inline-link {
    padding: 0;
    border: 0;
    color: var(--brand-deep);
    background: transparent;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.modal-back {
    margin: 0 0 20px;
    font-size: 12px;
}

.text-link {
    font-size: 13px;
    text-align: left;
}

.inline-link {
    display: inline;
    font-size: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.modal-back:hover,
.text-link:hover,
.inline-link:hover {
    color: var(--ink);
}

.modal-register {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
}

.modal-register a {
    color: var(--brand-deep);
    font-weight: 800;
}

.sticky-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    padding: 12px 0;
    border-bottom: 1px solid rgba(43, 37, 35, .11);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 28px rgba(43, 37, 35, .08);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(-110%);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease;
}

.sticky-header.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.sticky-logo {
    display: inline-flex;
    width: 150px !important;
}

.sticky-logo svg {
    display: block;
    width: 100%;
    height: auto;
}

.sticky-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-login,
.sticky-create {
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.sticky-login {
    border: 1px solid rgba(43, 37, 35, .22);
    color: var(--ink);
    background: transparent;
}

.sticky-create {
    border: 1px solid transparent;
    color: var(--ink);
    background: #ffbe00;
}

.sticky-login:hover,
.sticky-create:hover {
    transform: translateY(-1px);
}

.sticky-login:hover {
    background: #f6f3f1;
}

.sticky-create:hover {
    background: #ffd45b;
}

.sticky-help {
    font-size: 12px;
    display: flex;
    align-items: center;
}

.sticky-help svg {
    width: 18px;
}

.closing-shell {
    margin-top: 0;
    color: var(--white);
    background: #1cb6b5;
}

.closing-content {
    position: relative;
    z-index: 1;
    padding: clamp(60px, 7vw, 86px) 0 clamp(52px, 6vw, 72px);
    overflow: hidden;
}

/* Sin anillos en este bloque de cierre: el footer queda limpio y separado. */
.closing-content::after {
    content: none;
    display: none;
}

.closing-content > * {
    position: relative;
    z-index: 1;
}

.closing-shell::before,
.closing-shell::after,
.site-footer::before,
.site-footer::after {
    content: none !important;
    display: none !important;
}

.closing-shell .final-cta {
    margin-bottom: clamp(52px, 6vw, 78px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.closing-shell .final-cta::after {
    content: none;
    display: none;
}

.final-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.final-cta-kicker,
.about-cgc-kicker {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.closing-shell .final-cta h2 {
    max-width: 680px;
    margin: 0;
    color: var(--white);
    font-size: clamp(42px, 4.4vw, 60px);
    line-height: .98;
    letter-spacing: -.065em;
}

.closing-shell .final-cta p {
    max-width: 610px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 1.45;
}

.closing-shell .button-primary {
    flex: 0 0 auto;
    min-width: 154px;
    color: var(--ink);
    background: #ffbe00;
}

.closing-shell .button-primary:hover {
    background: #ffd45b;
}

/* Bloque editorial: evita que el texto institucional quede como una caja ancha o un acordeón aislado. */
.about-cgc {
    border-top: 1px solid rgba(255, 255, 255, .34);
    border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.about-cgc-layout {
    display: grid;
    grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
    gap: clamp(42px, 8vw, 118px);
    padding: clamp(44px, 5vw, 62px) 0;
}

.about-cgc-title {
    margin: 0;
    color: var(--white);
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.about-cgc-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 38px;
    max-width: 850px;
}

.about-cgc-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 1.52;
    letter-spacing: -.02em;
}

.about-cgc-copy .about-cgc-lead {
    grid-column: 1 / -1;
    max-width: 790px;
    color: var(--white);
}

.site-footer {
    color: var(--white);
    background: #1cb6b5;
    padding: 0 0 32px;
}

.footer-main {
    display: grid;
    grid-template-columns: 76px minmax(320px, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 34px 0 38px;
}

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

.footer-logo {
    display: block;
    width: 52px !important;
    height: 52px !important;
    max-height: 52px !important;
    object-fit: contain;
    object-position: left center;
    filter: none;
}

.footer-info {
    display: grid;
    gap: 3px !important;
    max-width: 460px;
    font-size: 14px;
    line-height: 1.16 !important;
}

.footer-info p {
    margin: 0;
    line-height: 1.16 !important;
}

.footer-info a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-social {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.footer-social > span {
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 37px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .56);
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-social-links a:hover {
    color: var(--ink);
    background: var(--white);
    transform: translateY(-1px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .30);
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a:hover {
    color: var(--white);
}

@media (max-width:860px) {
    .hero {
        min-height: auto;
        padding: 135px 0 66px;
    }

    .hero-grid,
    .essentials-layout,
    .faq-wrap,
    .about-cgc-layout {
        grid-template-columns: 1fr;
    }

    .essentials-copy,
    .faq-intro {
        position: static;
    }

    .hero-card {
        max-width: 600px;
    }

    .final-cta-content {
        align-items: start;
        flex-direction: column;
    }

    .about-cgc-layout {
        gap: 22px;
    }

}

@media (max-width:560px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .site-header {
        padding: 18px 0;
    }

    .header-actions {
        gap: 12px;
    }

    .sticky-actions {
        gap: 8px;
    }

    .sticky-login,
    .sticky-create {
        min-height: 35px;
        padding: 0 11px;
        font-size: 11px;
    }

    .header-link {
        font-size: 12px;
    }

    .header-create {
        min-height: 35px;
        padding: 0 12px;
        font-size: 11px;
    }

    .logo {
        width: 118px;
    }

    .sticky-header .sticky-logo {
        width: 116px !important;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-card {
        padding: 24px;
    }

    .section {
        padding: 72px 0;
    }

    .closing-content {
        padding: 54px 0 42px;
    }

    .about-cgc-copy {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-cgc-copy .about-cgc-lead {
        grid-column: auto;
    }

    .about-cgc-copy p {
        font-size: 16px;
    }

    .footer-main {
        grid-template-columns: 54px 1fr;
        gap: 16px;
        align-items: start;
        padding: 30px 0;
    }

    .site-footer .footer-logo {
        width: 46px !important;
        height: 46px !important;
    }

    .footer-social {
        grid-column: 1 / -1;
        justify-items: start;
        margin-top: 5px;
    }

    .footer-social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links {
        gap: 12px;
    }

}

/* terminos */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(43, 37, 35, .42);
    font-size: 13px;
    font-weight: 800;
    transition: opacity .2s ease
}

.back-link:hover {
    opacity: .7
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 160px 0 94px;
    background: linear-gradient(118deg, #fff 0%, #dff6f4 42%, #1cb6b5 100%)
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    right: -260px;
    bottom: -440px;
    border: 1px solid rgba(255, 190, 0, .82);
    border-radius: 50%;
    box-shadow: 0 0 0 74px rgba(255, 190, 0, .13), 0 0 0 148px rgba(255, 190, 0, .09), 0 0 0 222px rgba(255, 190, 0, .06)
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    top: -340px;
    right: 16%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 64%);
    filter: blur(8px)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 830px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--brand-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor
}

#terminos h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.075em
}

#terminos .hero-copy {
    max-width: 630px;
    margin: 28px 0 0;
    color: rgba(43, 37, 35, .82);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.45
}

.page-content {
    padding: clamp(72px, 10vw, 132px) 0;
    background: var(--white)
}

.content-grid {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: clamp(44px, 10vw, 150px);
    align-items: start
}

.toc {
    position: sticky;
    top: 92px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.toc-title {
    margin: 0 0 14px;
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}

.toc a {
    display: block;
    padding: 8px 0;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    transition: color .2s ease
}

.toc a:hover,
.toc a.is-active {
    color: var(--brand-deep)
}

.legal-copy {
    max-width: 770px
}

.updated {
    margin: 0 0 38px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 600
}

.legal-section {
    padding: 0 0 35px;
    margin: 0 0 35px;
    border-bottom: 1px solid var(--line)
}

.legal-section:last-child {
    border-bottom: 0;
    margin-bottom: 0
}

.legal-section h2 {
    margin: 0 0 15px;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.08;
    letter-spacing: -.055em
}

.legal-section h3 {
    margin: 28px 0 10px;
    font-size: 18px;
    letter-spacing: -.03em
}

.legal-section p,
.legal-section li {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5
}

.legal-section p {
    margin: 0 0 14px
}

.legal-section ul {
    padding-left: 22px
}

.legal-section li+li {
    margin-top: 7px
}

.legal-section strong {
    color: var(--ink)
}

#terminos .closing-shell {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    color: var(--white);
    background: #1cb6b5
}

#terminos .closing-shell::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -120px;
    top: -230px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    box-shadow: 0 0 0 64px rgba(255, 255, 255, .1), 0 0 0 128px rgba(255, 255, 255, .08)
}

#terminos .closing-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px
}

#terminos .closing-kicker {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}

#terminos .closing-shell h2 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(38px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -.065em
}

#terminos .closing-shell p:not(.closing-kicker) {
    max-width: 580px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 17px;
    line-height: 1.45
}

#terminos .button {
    border: 0;
    background: #ffbe00;
    color: var(--ink);
}

#terminos .button:hover {
    transform: translateY(-2px);
    background: #ffd45b
}

@media(max-width:860px) {
    #terminos .page-hero {
        padding: 135px 0 70px
    }

    .content-grid {
        grid-template-columns: 1fr
    }

    .toc {
        position: static
    }

    #terminos .closing-content {
        align-items: start;
        flex-direction: column
    }

}

@media(max-width:560px) {
    .back-link {
        font-size: 12px
    }

    #terminos .page-hero {
        padding-top: 128px
    }

    #terminos .page-content {
        padding: 68px 0
    }

}

/* home */
.user-session {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.user-profile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(43, 37, 35, .24);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, .26);
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.user-profile-link:hover {
    border-color: rgba(43, 37, 35, .46);
    background: rgba(255, 255, 255, .70);
    transform: translateY(-1px);
}

.user-profile-link.disabled {
    border-color: var(--brand-deep);
    border-width: 2px;
}

.user-profile-link.logout {
    border: 0;
    font-weight: 500;
    font-size: 11px;
    padding: 0;
    background: transparent;
}

.user-avatar {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(43, 37, 35, .18);
    border-radius: 50%;
    color: var(--white);
    background: var(--brand-deep);
    box-shadow: 0 5px 14px rgba(0, 144, 140, .18);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .025em;
}

.sticky-header .user-profile-link {
    min-height: 40px;
    background: transparent;
    font-size: 12px;
}

.sticky-header .user-avatar {
    width: 40px;
    height: 40px;
}

.sticky-header .user-profile-link.logout {
    border: 0;
    font-weight: 500;
    font-size: 11px;
    padding: 0;
    background: transparent;
}


@media (max-width:560px) {
    .user-session {
        gap: 7px;
    }

    .user-profile-link,
    .sticky-header .user-profile-link {
        min-height: 35px;
        padding: 0 12px;
        font-size: 11px;
    }

    .user-avatar,
    .sticky-header .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 10px;
    }

}


/* mis datos */
#mis-datos .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 12px 0;
    border-bottom: 1px solid rgba(43, 37, 35, .11);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 28px rgba(43, 37, 35, .07);
    backdrop-filter: blur(14px)
}

#mis-datos .logo {
    display: inline-flex;
    width: 150px
}

.user-area {
    display: flex;
    align-items: center;
    gap: 12px
}

.profile-link {
    min-height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 37, 35, .2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800
}

.avatar {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--brand-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .03em
}

#mis-datos .page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(68px, 8vw, 104px) 0 clamp(58px, 7vw, 86px);
    background: linear-gradient(118deg, #fff 0%, #dff6f4 48%, #1cb6b5 100%)
}

#mis-datos .page-hero:after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    right: -270px;
    bottom: -400px;
    border: 1px solid rgba(255, 190, 0, .86);
    border-radius: 50%;
    box-shadow: 0 0 0 78px rgba(255, 190, 0, .13), 0 0 0 156px rgba(255, 190, 0, .08)
}

#mis-datos .hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
    gap: 56px;
    align-items: end;
    max-width: inherit;
}

#mis-datos .hero-copy {
   max-width: 650px;
   margin: 25px 0 0;
   color: rgba(43, 37, 35, .82);
   font-size: clamp(18px, 2vw, 22px);
   line-height: 1.45
}

.hero-status {
   padding: 27px 28px;
   border: 1px solid rgba(43, 37, 35, .15);
   border-radius: var(--radius-lg);
   background: rgba(255, 255, 255, .8);
   box-shadow: 0 18px 42px rgba(43, 37, 35, .09);
   backdrop-filter: blur(12px)
}

.hero-status p {
   margin: 0
}

.status-label {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}

.status-value {
    margin-top: 11px !important;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.045em
}

.progress {
    height: 8px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(43, 37, 35, .1)
}

.progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--brand-deep)
}

.status-note {
    margin-top: 13px !important;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.45
}

.dashboard {
    padding: clamp(62px, 8vw, 104px) 0 108px;
    background: var(--white)
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(42px, 8vw, 112px);
    align-items: start
}

.side-nav {
    position: sticky;
    top: 90px
}

.side-nav-title {
    margin: 0 0 15px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}

.side-nav ul {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none
}

.side-nav li {
    border-bottom: 1px solid var(--line)
}

.side-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease
}

.side-nav a:after {
    content: "→";
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity .2s ease, transform .2s ease
}

.side-nav a:hover,
.side-nav a.is-active {
    color: var(--brand-deep)
}

.side-nav a.is-active {
    font-weight: 800
}

.side-nav a.is-active:after,
.side-nav a:hover:after {
    opacity: 1;
    transform: translateX(0)
}

.side-help {
    margin: 28px 0 0;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.5
}

.side-help a {
    color: var(--brand-deep);
    font-weight: 800
}

.intro-row {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: end;
    margin-bottom: 34px
}

#mis-datos .section-kicker {
    margin: 0 0 14px;
    color: var(--brand-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase
}

.intro-row h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -.065em
}

.intro-row p {
    max-width: 390px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55
}

.profile-sections {
    display: grid;
    gap: 18px
}

.profile-card {
    scroll-margin-top: 108px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white)
}

.profile-card-header {
    margin-bottom: 25px
}

.profile-card-header h3 {
    margin: 0;
    font-size: 23px;
    letter-spacing: -.04em
}

.profile-card-header p {
    max-width: 600px;
    margin: 7px 0 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    align-items: start;
}

.field {
    display: grid;
    gap: 7px
}

.field.full {
    grid-column: 1/-1
}

#mis-datos .field label {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    position: relative;
    left: 0;
    padding: 0;
    transform: none;
    line-height: inherit;
}

.field input,
.field select {
    width: 100%;
    height: 51px;
    padding: 0 14px;
    border: 1px solid rgba(43, 37, 35, .18);
    border-radius: 12px;
    outline: none;
    color: var(--ink);
    background: var(--white);
    font-size: 14px
}

.field input:focus,
.field select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(28, 182, 181, .14)
}

.field.is-error input,
.field.is-error select {
    border-color: #d65b52;
    background: #fffdfd
}

.field.is-error input:focus,
.field.is-error select:focus {
    border-color: #d65b52;
    box-shadow: 0 0 0 4px rgba(214, 91, 82, .12)
}

/*.field-error-message {
    margin: 0;
    color: #b6423a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4
}*/

.field-error-message:before {
    content: "•";
    margin-right: 5px
}

.field small {
    color: var(--ink-soft);
    font-size: 11px;
    line-height: 1.4
}

.validation-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 1px;
    color: var(--brand-deep);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4
}

.validation-note:before {
    content: "✓";
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--brand-deep);
    font-size: 10px;
    font-weight: 900;
    flex: 0 0 auto
}

.password-note {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--ink-soft);
    background: #f5f3f1;
    font-size: 12px;
    line-height: 1.5
}

.cv-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 17px;
    border: 1px solid rgba(0, 144, 140, .3);
    border-radius: 14px;
    background: #f4fbfa
}

.file-icon {
    display: grid;
    width: 44px;
    height: 48px;
    place-items: center;
    border-radius: 11px;
    color: var(--brand-deep);
    background: #d9f2ef;
    font-size: 11px;
    font-weight: 900
}

.file-name {
    margin: 0;
    font-size: 14px;
    font-weight: 800
}

.file-meta {
    margin: 3px 0 0;
    color: var(--ink-soft);
    font-size: 12px
}

.small-link {
    padding: 0;
    border: 0;
    color: var(--brand-deep);
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer
}

.upload-zone {
    margin-top: 16px;
    padding: 25px;
    border: 1px dashed rgba(0, 144, 140, .5);
    border-radius: 14px;
    text-align: center;
    background: #fbfefd
}

.upload-zone strong {
    display: block;
    font-size: 14px
}

.upload-zone p {
    margin: 5px 0 0;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.45
}

.upload-zone label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 14px;
    padding: 0 14px;
    border: 1px solid rgba(43, 37, 35, .2);
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800
}

.upload-zone input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none
}

.upload-zone.is-error {
    border-color: #d65b52;
    background: #fffdfd
}

.upload-zone .field-error-message {
    display: block;
    margin-top: 10px
}

.save-bar {
    position: sticky;
    bottom: 0;
    z-index: 12;
    padding: 14px 0;
    border-top: 1px solid rgba(43, 37, 35, .11);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 -10px 28px rgba(43, 37, 35, .05);
    backdrop-filter: blur(14px)
}

.save-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.save-message {
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px
}

.save-message strong {
    color: var(--ink)
}

#mis-datos .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease
}

#mis-datos .button:hover {
    transform: translateY(-1px)
}

#mis-datos .button-primary {
    color: var(--ink);
    background: var(--yellow) !important;
}

#mis-datos .button-primary:hover {
    background: #ffd45b !important;
}

.mt-md {
    margin-top: 10px;
}
.disabled {
    pointer-events: none;
    opacity: .8;
}

.card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px
}

.card-title-row .profile-card-header {
    margin-bottom: 25px
}

.section-edit {
    padding: 0;
    border: 0;
    color: var(--brand-deep);
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer
}

.section-edit:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.timeline {
    margin: 0;
    padding: 0;
    list-style: none
}

.timeline-item {
    position: relative;
    padding: 0 0 19px 23px;
    border-left: 1px solid rgba(0, 144, 140, .24);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
}

.timeline-item:last-child {
    padding-bottom: 0;
    border-left-color: transparent
}

.timeline-item:before {
    content: "";
    position: absolute;
    top: 4px;
    left: -5px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--brand-deep);
    border-radius: 50%;
    background: var(--white)
}

.timeline-item strong {
    display: block;
    font-size: 13px;
    line-height: 1.35
}

.timeline-item span,
.timeline-item p {
    display: block;
    margin: 4px 0 0;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.45
}

.timeline-add {
    margin-top: 22px;
    padding: 0;
    border: 0;
    color: var(--brand-deep);
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer
}

.timeline-add:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

#mis-datos .modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease
}

#mis-datos .modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

#mis-datos .modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(43, 37, 35, .48);
    backdrop-filter: blur(6px)
}
#mis-datos .over {
    max-height: 82vh;
    overflow-y: auto;
    padding-right: 24px;
}
#mis-datos .modal-dialog {
    position: relative;
    width: min(100%, 540px);

    padding: 26px;
    padding-right: 2px;
    padding-top: 40px;

    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 24px 80px rgba(43, 37, 35, .24);
    transform: translateY(10px);
    transition: transform .2s ease
}

#mis-datos .modal.is-open .modal-dialog {
    transform: translateY(0)
}

#mis-datos .modal-close {
    position: absolute;
    top: 13px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    font-size: 25px;
    cursor: pointer
}

#mis-datos .modal-close:hover {
    background: var(--surface)
}

#mis-datos .modal-dialog h2 {
    margin: 0;
    font-size: 31px;
    letter-spacing: -.05em
}

#mis-datos .modal-dialog>p {
    margin: 10px 0 24px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5
}

#mis-datos .modal-form {
    display: grid;
    gap: 16px
}

#mis-datos .modal-form .button {
    justify-self: start;
    margin-top: 4px
}

#mis-datos .modal .field textarea {
    font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--ink);
    width: 100%;
    min-height: 92px;
    padding: 13px 14px;
    border: 1px solid rgba(43, 37, 35, .18);
    border-radius: 12px;
    outline: none;
    resize: vertical;
    font-size: 14px
}

#mis-datos .modal .field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(28, 182, 181, .14)
}

@media(max-width:760px) {
    .container {
        width: min(calc(100% - 30px), var(--container))
    }

    .logo {
        width: 118px
    }

    .profile-link {
        display: none
    }

    .hero-content,
    .dashboard-grid {
        grid-template-columns: 1fr
    }

    .hero-status {
        max-width: 500px
    }

    .side-nav {
        position: static;
        display: none
    }

    .intro-row {
        display: block
    }

    .intro-row p {
        margin-top: 16px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .field.full {
        grid-column: auto
    }

    .cv-box {
        grid-template-columns: auto minmax(0, 1fr)
    }

    .cv-box .small-link {
        grid-column: 2
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column
    }

    .save-bar-content {
        align-items: flex-start;
        flex-direction: column
    }

    .button {
        width: 100%
    }

    .card-title-row {
        align-items: flex-start
    }

    .modal-dialog {
        padding: 26px
    }

    .modal-form .button {
        width: 100%
    }

}

@-webkit-keyframes animation-spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes animation-spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
