:root {
  --jv-cabecera: 64px;
  color-scheme: only light;
  --jv-ink: #11100f;
  --jv-paper: #FFFFFF;
  --jv-warm: #FFFFFF;
  --jv-line: rgba(17, 16, 15, .22);
  --jv-muted: #716b64;
  --jv-serif: "Cormorant Garamond", Didot, "Bodoni MT", Georgia, serif;
  --jv-sans: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
  color-scheme: only light;
  background: var(--jv-paper);
}

body.jalior-home,
body.jalior-advisors {
  color-scheme: only light;
  background: var(--jv-paper);
  color: var(--jv-ink);
}

body.jalior-home *,
body.jalior-advisors * {
  box-sizing: border-box;
}

body.jalior-home img,
body.jalior-advisors img {
  display: block;
  max-width: 100%;
}

.jv-eyebrow {
  margin: 0 0 18px;
  font-family: var(--jv-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.jv-eyebrow--light {
  color: rgba(255, 255, 255, .62);
}

.jv-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--jv-ink);
  border-radius: 0;
  font-family: var(--jv-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
}

.jv-button:hover {
  letter-spacing: .17em;
}

.jv-button--dark {
  background: var(--jv-ink);
  color: #fff;
}

.jv-button--dark:hover {
  background: #fff;
  color: var(--jv-ink);
}

.jv-button--outline {
  background: transparent;
  color: var(--jv-ink);
}

.jv-button--outline:hover {
  background: var(--jv-ink);
  color: #fff;
}

.jv-button--white {
  border-color: #fff;
  background: #fff;
  color: var(--jv-ink);
}

.jv-button--white:hover {
  background: transparent;
  color: #fff;
}

.jv-section {
  padding: 126px 7vw;
}

body.jalior-home .hd {
  border-bottom: 1px solid rgba(17, 16, 15, .12);
}

body.jalior-home .hd__fila {
  max-width: none;
}

body.jalior-home .hd__marca {
  display: inline-flex;
}

body.jalior-home .hd__nav {
  display: flex !important;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

body.jalior-home .hd__nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  font-family: var(--jv-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--jv-ink);
  border-bottom: 1px solid transparent;
}

body.jalior-home .hd__nav a:hover {
  border-bottom-color: currentColor;
  letter-spacing: .15em;
}

body.jalior-home .menu-btn,
body.jalior-home .hd__accion {
  display: none;
}

.jv-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px 4.5vw 92px;
  background: var(--jv-paper);
}

.jv-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.jv-hero__image {
  object-fit: cover;
  object-position: 72% center;
  animation: jv-hero-settle 8s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes jv-hero-settle {
  from { opacity: .82; }
  to { opacity: 1; }
}

.jv-hero__content {
  position: relative;
  z-index: 2;
  width: min(700px, 58vw);
  padding-top: 0;
  background: transparent;
}

.jv-hero h1 {
  margin: 0;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
  font-family: var(--jv-serif);
  font-size: clamp(82px, 11.5vw, 176px);
  font-weight: 400;
  letter-spacing: .085em;
  line-height: .84;
}

.jv-hero__subtitle {
  margin: 32px 0 0;
  font-family: var(--jv-serif);
  font-size: clamp(17px, 1.7vw, 24px);
  font-style: italic;
  letter-spacing: .06em;
}

.jv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.jv-scroll {
  position: absolute;
  z-index: 2;
  left: 4.5vw;
  bottom: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: var(--jv-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.jv-scroll span {
  font-size: 17px;
}

.jv-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px;
}

.jv-heading h2,
.jv-recruit__copy h1,
.jv-platform__copy h2,
.jv-application__intro h2,
.jv-faq h2 {
  margin: 0;
  font-family: var(--jv-serif);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .95;
}

.jv-heading h2 {
  font-size: clamp(52px, 6vw, 92px);
}

.jv-heading > p {
  max-width: 330px;
  margin: 0;
  color: var(--jv-muted);
  font-family: var(--jv-serif);
  font-size: 16px;
  line-height: 1.6;
}

.jv-collection {
  background: var(--jv-paper);
  padding-block: 96px 104px;
}

.jv-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jv-category {
  min-width: 0;
  color: var(--jv-ink);
}

.jv-category__image {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #FFFFFF;
}

.jv-category__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .55s ease;
}

.jv-category:hover .jv-category__image img {
  opacity: .88;
}

.jv-category__index {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  font-family: var(--jv-sans);
  font-size: 9px;
}

.jv-category__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.jv-category__meta h3 {
  margin: 0;
  font-family: var(--jv-serif);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
}

.jv-category__button {
  flex: 0 0 auto;
  min-height: 44px;
  padding-inline: 18px;
}

.jv-advisor-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 64px;
  padding: 68px 7vw 72px;
  background: var(--jv-ink);
  color: #fff;
}

.jv-advisor-compact h2 {
  margin: 0;
  font-family: var(--jv-serif);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: .95;
}

.jv-advisor-compact p:not(.jv-eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.6;
}

.jv-text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--jv-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* Página de asesoras */
body.jalior-advisors .hd {
  border-bottom: 1px solid var(--jv-line);
}

.jv-recruit {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: 1fr .9fr;
}

.jv-recruit__copy {
  padding: 9vh 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.jv-recruit__copy h1 {
  max-width: 720px;
  font-size: clamp(64px, 8vw, 124px);
}

.jv-recruit__lead {
  max-width: 610px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
}

.jv-recruit__actions {
  margin-top: 38px;
}

.jv-microcopy {
  margin: 22px 0 0;
  color: var(--jv-muted);
  font-family: var(--jv-sans);
  font-size: 9px;
  letter-spacing: .1em;
  line-height: 1.55;
  text-transform: uppercase;
}

.jv-recruit__image {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--jv-paper);
}

.jv-recruit__image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.jv-recruit__stamp {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
}

.jv-recruit__stamp span,
.jv-recruit__stamp small {
  font-family: var(--jv-sans);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.jv-recruit__stamp strong {
  margin: 3px 0;
  font-family: var(--jv-serif);
  font-size: 56px;
  font-weight: 400;
}

.jv-benefits {
  background: var(--jv-paper);
}

.jv-benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.jv-benefit-cards article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--jv-line);
  background: rgba(255, 255, 255, .46);
}

.jv-benefit-cards article > span {
  font-family: var(--jv-sans);
  color: #8b857e;
  font-size: 10px;
  letter-spacing: .14em;
}

.jv-benefit-cards h3 {
  margin: auto 0 16px;
  font-family: var(--jv-serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.05;
}

.jv-benefit-cards p {
  margin: 0;
  color: var(--jv-muted);
  font-size: 15px;
  line-height: 1.55;
}

.jv-platform {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 8vw;
  align-items: center;
  background: var(--jv-ink);
  color: #fff;
}

.jv-platform__copy h2 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  box-shadow: none !important;
  font-size: clamp(60px, 6.6vw, 104px);
  letter-spacing: -.035em;
  line-height: .9;
}

.jv-platform__copy .jv-eyebrow {
  color: rgba(255, 255, 255, .72) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .72) !important;
  background: none !important;
  box-shadow: none !important;
}

.jv-platform__copy > p:not(.jv-eyebrow) {
  max-width: 480px;
  margin: 32px 0;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.65;
}

.jv-platform__promises {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.jv-platform__promises span {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .78);
  font-family: var(--jv-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.jv-platform__window {
  overflow: hidden;
  border: 1px solid rgba(17, 16, 15, .24);
  background: var(--jv-paper);
  color: var(--jv-ink);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .3);
}

.jv-platform__topbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--jv-line);
  background: #fff;
}

.jv-profile {
  display: flex;
  align-items: center;
  gap: 13px;
}

.jv-profile img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #FFFFFF;
  object-fit: contain;
  object-position: center;
}

.jv-profile div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jv-profile strong {
  font-family: var(--jv-serif);
  font-size: 20px;
  font-weight: 400;
}

.jv-profile span,
.jv-platform__domain,
.jv-platform__welcome > span {
  font-family: var(--jv-sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.jv-profile span {
  color: #7a746d;
}

.jv-platform__domain {
  padding: 10px 12px;
  border: 1px solid var(--jv-line);
  background: var(--jv-paper);
}

.jv-platform__welcome {
  padding: 34px 28px 28px;
}

.jv-platform__welcome > span {
  color: #7a746d;
}

.jv-platform__welcome h3 {
  margin: 12px 0 0;
  font-family: var(--jv-serif);
  font-size: clamp(37px, 3.5vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.jv-platform__tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 28px 28px;
}

.jv-platform__tools article {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-top: 1px solid var(--jv-line);
  border-right: 1px solid var(--jv-line);
  background: rgba(255, 255, 255, .35);
}

.jv-platform__tools article:nth-child(even),
.jv-platform__tools article:last-child {
  border-right: 0;
}

.jv-platform__tools article:last-child {
  grid-column: 1 / -1;
  min-height: 135px;
}

.jv-platform__tools article > span {
  color: #8d867e;
  font-family: var(--jv-sans);
  font-size: 8px;
  letter-spacing: .14em;
}

.jv-platform__tools strong {
  margin-top: auto;
  font-family: var(--jv-serif);
  font-size: 21px;
  font-weight: 400;
}

.jv-platform__tools small {
  margin-top: 8px;
  color: var(--jv-muted);
  font-size: 13px;
  line-height: 1.4;
}

.jv-platform__tools .jv-platform__featured {
  background: var(--jv-ink);
  color: #fff;
}

.jv-platform__tools .jv-platform__featured > span,
.jv-platform__tools .jv-platform__featured small {
  color: rgba(255, 255, 255, .55);
}

.jv-application {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 8vw;
  padding: 88px 7vw;
  scroll-margin-top: 78px;
  background: var(--jv-warm);
}

.jv-application__intro h2 {
  font-size: clamp(52px, 5.4vw, 82px);
}

.jv-application__intro > p:not(.jv-eyebrow) {
  max-width: 440px;
  margin: 28px 0;
  font-size: 17px;
  line-height: 1.65;
}

.jv-application__note {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 44px;
  padding: 20px 0;
  border-top: 1px solid var(--jv-line);
  border-bottom: 1px solid var(--jv-line);
}

.jv-application__note strong {
  font-family: var(--jv-sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.jv-application__note span {
  color: #69635c;
  font-size: 15px;
}

.jv-application-form {
  padding: 44px;
  border: 1px solid var(--jv-ink);
  background: rgba(255, 255, 255, .66);
}

.jv-application-form .grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

.jv-application-form .field {
  margin-bottom: 22px;
}

.jv-application-form .field label {
  display: block;
  margin-bottom: 9px;
  font-family: var(--jv-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.jv-application-form input:not([type="checkbox"]),
.jv-application-form select,
.jv-application-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 16, 15, .3);
  border-radius: 0;
  background: rgba(255, 255, 255, .72);
  color: var(--jv-ink);
  outline: none;
}

.jv-application-form textarea {
  min-height: 105px;
  resize: vertical;
}

.jv-application-form input:focus,
.jv-application-form select:focus,
.jv-application-form textarea:focus {
  border-color: var(--jv-ink);
}

.jv-application-form .field--check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 14px 0;
  font-family: var(--jv-sans);
  font-size: 11px;
  line-height: 1.5;
}

.jv-application-form .field--check input {
  margin-top: 2px;
  accent-color: var(--jv-ink);
}

.jv-application-form .field--check a {
  text-decoration: underline;
}

.jv-application-form .small {
  display: block;
  margin-top: 7px;
  color: var(--jv-muted);
  font-size: 11px;
}

.jv-intake {
  margin: 0 0 28px;
  padding: 14px 16px;
  border-left: 3px solid var(--jv-ink);
  background: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.55;
}

.jv-application-form #turnstile-widget {
  min-height: 66px;
  margin: 18px 0;
}

.jv-application-form button[type="submit"] {
  width: 100%;
}

.jv-application-form button[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: .56;
}

.jv-application-form .status {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.jv-faq {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 9vw;
  background: var(--jv-paper);
}

.jv-faq h2 {
  font-size: clamp(52px, 5.5vw, 84px);
}

.jv-faq__list {
  border-top: 1px solid var(--jv-line);
}

.jv-faq__list details {
  padding: 25px 0;
  border-bottom: 1px solid var(--jv-line);
}

.jv-faq__list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--jv-serif);
  font-size: 22px;
}

.jv-faq__list summary::-webkit-details-marker {
  display: none;
}

.jv-faq__list summary::after {
  content: "+";
  float: right;
  font-family: var(--jv-sans);
  font-size: 17px;
}

.jv-faq__list details[open] summary::after {
  content: "−";
}

.jv-faq__list p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #6c665f;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  body.jalior-home .hd__nav {
    display: none !important;
  }

  body.jalior-home .menu-btn,
  body.jalior-home .hd__accion {
    display: inline-flex;
  }

  .jv-hero {
    min-height: 820px;
    align-items: end;
  }

  .jv-hero__content {
    width: 100%;
    padding-bottom: 90px;
  }

  .jv-recruit,
  .jv-platform,
  .jv-application {
    grid-template-columns: 1fr;
  }

  .jv-recruit__image {
    min-height: 560px;
  }

  .jv-platform__copy {
    max-width: 660px;
  }
}

@media (max-width: 700px) {
  .jv-section {
    padding: 88px 22px;
  }

  .jv-hero {
    height: 100svh;
    min-height: 560px;
    max-height: 940px;
    padding: 0;
    align-items: initial;
  }

  .jv-hero__image {
    object-position: 74% center;
  }

  .jv-hero__content {
    position: absolute;
    inset: auto 22px 68px;
    width: auto;
    padding: 0;
  }

  .jv-hero h1 {
    font-size: clamp(60px, 20vw, 86px);
    text-shadow: 0 1px 18px rgba(255, 255, 255, .7);
  }

  .jv-hero__subtitle {
    max-width: 310px;
    margin-top: 22px;
    font-size: clamp(15px, 4.5vw, 19px);
  }

  .jv-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    margin-top: 26px;
  }

  .jv-hero__actions .jv-button {
    width: 100%;
  }

  .jv-scroll {
    left: 22px;
    bottom: 24px;
  }

  .jv-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .jv-category-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 350px);
    gap: 14px;
    margin-right: -22px;
    padding: 0 22px 14px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .jv-category-grid::-webkit-scrollbar {
    display: none;
  }

  .jv-category {
    scroll-snap-align: start;
  }

  .jv-category__meta {
    align-items: stretch;
    flex-direction: column;
  }

  .jv-category__button {
    width: 100%;
  }

  .jv-advisor-compact {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 56px 22px 60px;
  }

  .jv-advisor-compact .jv-button {
    width: 100%;
  }

  .jv-recruit__copy {
    padding: 82px 22px 68px;
  }

  .jv-recruit__copy h1 {
    font-size: 17vw;
  }

  .jv-recruit__actions .jv-button {
    width: 100%;
  }

  .jv-recruit__image {
    min-height: 500px;
  }

  .jv-recruit__stamp {
    right: 22px;
    bottom: 22px;
    width: 140px;
    height: 140px;
  }

  .jv-benefit-cards {
    grid-template-columns: 1fr;
  }

  .jv-benefit-cards article {
    min-height: 250px;
  }

  .jv-platform {
    gap: 56px;
  }

  .jv-platform__topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .jv-platform__tools {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .jv-platform__tools article,
  .jv-platform__tools article:nth-child(even),
  .jv-platform__tools article:last-child {
    grid-column: auto;
    min-height: 132px;
    border-right: 0;
  }

  .jv-platform__welcome {
    padding-inline: 18px;
  }

  .jv-application {
    gap: 58px;
    padding: 88px 22px;
  }

  .jv-application-form {
    padding: 26px 18px;
  }

  .jv-application-form .grid--2 {
    grid-template-columns: 1fr;
  }

  .jv-faq {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

@media (max-width: 700px) and (max-height: 680px) {
  .jv-hero__image {
    object-position: 74% 42%;
  }

  .jv-hero__content {
    bottom: 18px;
  }

  .jv-hero__content .jv-eyebrow {
    margin-bottom: 10px;
    font-size: 8px;
  }

  .jv-hero h1 {
    font-size: clamp(50px, 17vw, 62px);
  }

  .jv-hero__subtitle {
    max-width: none;
    margin-top: 12px;
    font-size: 14px;
  }

  .jv-hero__actions {
    gap: 7px;
    margin-top: 16px;
  }

  .jv-hero__actions .jv-button {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 8px;
  }

  .jv-scroll {
    display: none;
  }
}

@media (max-width: 360px) {
  .jv-hero__content {
    inset-inline: 16px;
  }

  .jv-button {
    padding-inline: 16px;
    font-size: 8px;
  }

  .jv-platform__domain {
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .jv-hero__image { animation: none; transform: none; }
}

@media (prefers-color-scheme: dark) {
  html,
  body.jalior-home,
  body.jalior-advisors {
    color-scheme: only light;
    background: var(--jv-paper);
    color: var(--jv-ink);
  }

  body.jalior-home input,
  body.jalior-home select,
  body.jalior-home textarea,
  body.jalior-advisors input,
  body.jalior-advisors select,
  body.jalior-advisors textarea {
    background: #fff;
    color: var(--jv-ink);
  }
}

/* Sello de acceso: retrato editorial de trazo fino */
body.jalior-home .hd__accion--icono,
body.jalior-advisors .hd__accion--icono {
  position: relative;
  width: 50px;
  height: 50px;
  min-height: 50px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  isolation: isolate;
}

body.jalior-home .hd__accion--icono::before,
body.jalior-advisors .hd__accion--icono::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 8px 28px rgba(17, 16, 15, .1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

body.jalior-home .hd__accion--icono svg,
body.jalior-advisors .hd__accion--icono svg {
  width: 38px;
  height: 38px;
  overflow: visible;
  stroke-width: .9;
  transition: transform .25s ease;
}

body.jalior-home .hd__accion--icono .jv-profile-seal__frame,
body.jalior-advisors .hd__accion--icono .jv-profile-seal__frame {
  stroke-width: .72;
  opacity: .88;
}

body.jalior-home .hd__accion--icono:hover::before,
body.jalior-advisors .hd__accion--icono:hover::before {
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 32px rgba(17, 16, 15, .15);
  transform: scale(1.03);
}

body.jalior-home .hd__accion--icono:hover svg,
body.jalior-advisors .hd__accion--icono:hover svg {
  transform: scale(1.035);
}

@media (max-width: 700px) {
  body.jalior-home .hd__accion--icono,
  body.jalior-advisors .hd__accion--icono {
    width: 48px;
    height: 48px;
    min-height: 48px;
  }

  body.jalior-home .hd__accion--icono svg,
  body.jalior-advisors .hd__accion--icono svg {
    width: 36px;
    height: 36px;
  }
}
