:root {
  --to-bg: #03152b;
  --to-bg-deep: #020f20;
  --to-blue: #0d5eff;
  --to-blue-soft: #5c8dff;
  --to-text: #08224d;
  --to-text-soft: rgba(255, 255, 255, 0.82);
  --to-border: rgba(255, 255, 255, 0.08);
  --to-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  --to-container: 1240px;
  --tls-bg:f3f4f8;
}

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

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--tls-bg);
    color: var(--tls-text);
    line-height: 1.5;
}

.to-container {
  width: min(var(--to-container), calc(100% - 48px));
  margin: 0 auto;
}

.to-header {
  position: relative;
  min-height: 68px;
  background:
    radial-gradient(circle at 50% 0%, rgba(88, 108, 255, 0.18) 0%, rgba(88, 108, 255, 0.05) 24%, rgba(3, 21, 43, 0) 52%),
    linear-gradient(180deg, #041a35 0%, #03152b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.to-header__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 25%, rgba(133, 109, 255, 0.16) 0%, rgba(133, 109, 255, 0.04) 22%, transparent 46%),
    radial-gradient(circle at 50% -15%, rgba(13, 94, 255, 0.10) 0%, transparent 38%);
}

.to-header__inner {
  position: relative;
  z-index: 2;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.to-header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.to-header__branding {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.to-header__logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.to-header__logo-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.to-header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.to-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.to-menu li {
  margin: 0;
  padding: 0;
}

.to-menu li a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  padding: 4px 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.to-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--to-blue), var(--to-blue-soft));
  transition: width 0.25s ease;
}

.to-menu li a:hover::after,
.to-menu li a:focus-visible::after {
  width: 100%;
}

.to-menu li a:hover,
.to-menu li a:focus-visible {
  transform: translateY(-1px);
}
.to-header__toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.to-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 900px) {
  .to-header {
    min-height: 62px;
  }

  .to-header__inner {
    min-height: 62px;
  }

  .to-header__logo-img {
    width: 30px;
    height: 30px;
  }

  .to-header__logo-text {
    font-size: 1rem;
  }

  .to-header__toggle {
    display: inline-flex;
  }

  .to-header__nav {
    display: none;
  }

  .to-header.is-open .to-header__nav {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    margin-left: 0;
    padding: 18px;
    background: rgba(5, 18, 37, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    box-shadow: var(--to-shadow);
    backdrop-filter: blur(14px);
  }

  .to-header.is-open .to-menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}


/* FOOTER */
.to-footer{
  background: linear-gradient(180deg, var(--to-bg-1), var(--to-bg-2));
  color: var(--to-text);
  border-top: 1px solid rgba(255,255,255,.06);
}

.to-footer__inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 18px;
}

.to-footer__grid{
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

/* Brand */
.to-footer__brandHead{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-bottom: 10px;
}

.to-footer__logo{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 153, 255, .12);
  border: 1px solid rgba(0, 153, 255, .22);
  display:grid;
  place-items:center;
  color: rgba(170, 220, 255, .95);
  flex: 0 0 auto;
}

.to-footer__logo svg{
  width: 18px;
  height: 18px;
}

.to-footer__title{
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 18px;
  line-height: 1.1;
  margin-top: 1px;
}

.to-footer__subtitle{
  font-size: 11px;
  color: var(--to-muted);
  margin-top: 3px;
}

.to-footer__desc{
  margin: 10px 0 14px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--to-muted);
  max-width: 420px;
}

.to-footer__chips{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.to-chip{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--to-chip-bg);
  border: 1px solid var(--to-chip-br);
  color: rgba(234,242,255,.86);
  font-size: 11px;
  width: fit-content;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}

.to-chip__dot{
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  position: relative;
}

.to-chip__dot::after{
  content:"";
  position:absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(170,220,255,.9);
  opacity: .8;
}

/* Columns */
.to-footer__h{
  font-size: 11px;
  letter-spacing: .7px;
  font-weight: 800;
  color: rgba(234,242,255,.88);
  margin: 2px 0 12px;
}

.to-footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display:flex;
  flex-direction: column;
  gap: 9px;
}

.to-footer__list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--to-muted);
}

/* Icons */
.to-ico{
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: rgba(170,220,255,.95);
  flex: 0 0 auto;
  opacity: .95;
}

.to-ico svg{
  width: 16px;
  height: 16px;
  display:block;
}

.to-footer__link{
  color: rgba(234,242,255,.82);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.to-footer__link:hover{
  border-bottom-color: rgba(234,242,255,.35);
}

.to-footer__divider{
  height: 1px;
  background: var(--to-line);
  margin: 18px 0 12px;
}

.to-footer__bottom{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.to-footer__copy{
  font-size: 11px;
  color: var(--to-muted2);
}

.to-footer__policies{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.to-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--to-pill-bg);
  border: 1px solid var(--to-pill-br);
  color: rgba(234,242,255,.86);
  font-size: 11px;
  text-decoration:none;
}

.to-pill:hover{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
}

.to-footer__note{
  margin: 10px 0 0;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(234,242,255,.62);
  max-width: 980px;
}

/* Responsive */
@media (max-width: 980px){
  .to-footer__grid{
    grid-template-columns: 1.2fr 1fr;
    gap: 26px;
  }
}

@media (max-width: 640px){
  .to-footer__inner{
    padding: 22px 16px 16px;
  }

  .to-footer__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .to-footer__desc{
    max-width: none;
  }
}

:root {
  --to-bg-1: #04152d;
  --to-bg-2: #031122;
  --to-muted: rgba(234, 242, 255, 0.72);
  --to-muted2: rgba(234, 242, 255, 0.58);
  --to-line: rgba(255,255,255,.08);
  --to-chip-bg: rgba(255,255,255,.05);
  --to-chip-br: rgba(255,255,255,.10);
  --to-pill-bg: rgba(255,255,255,.06);
  --to-pill-br: rgba(255,255,255,.12);
  --to-surface: #f5f5f8;
  --to-ink: #061a36;
  --to-ink-soft: #67758f;
  --to-card-border: #d8ddeb;
  --to-purple: #a77bff;
  --to-purple-2: #d8c8ff;
}

.site-main {
  display: block;
}

.to-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 60%, rgba(163, 123, 255, 0.34) 0%, rgba(163, 123, 255, 0.18) 20%, rgba(13, 94, 255, 0.10) 32%, rgba(3, 21, 43, 0) 56%),
    linear-gradient(180deg, #02172e 0%, #03152b 100%);
}

.to-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  padding: 88px 0 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.to-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.to-hero__ring {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(202, 182, 255, 0.16);
}
.to-hero__ring--1 { width: 760px; height: 760px; bottom: -500px; }
.to-hero__ring--2 { width: 1080px; height: 1080px; bottom: -720px; }
.to-hero__ring--3 { width: 1400px; height: 1400px; bottom: -940px; opacity: .5; }

.to-hero__mark{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 26px;
  transform: none;
}

.to-hero__mark img{
  display: block;
  width: 150px;   /* ajusta si lo quieres más grande o más pequeño */
  height: auto;
  margin: 0 auto;
}


.to-hero__mark span:nth-child(1), .to-hero__mark span:nth-child(5) { background: linear-gradient(180deg, #ded5ff, #8d77ff); }
.to-hero__mark span:nth-child(2), .to-hero__mark span:nth-child(4) { opacity: .82; }

.to-hero__title {
  margin: 0;
  max-width: 900px;
  color: #fff;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: .98;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.to-hero__text {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.86);
  font-size: 1rem;
  line-height: 1.55;
}

.to-hero__actions { margin-top: 26px; }

.to-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #8d62ff 0%, #5d55ff 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(106, 92, 255, 0.28);
}

.to-home-features,
.to-home-trust {
  background: var(--to-surface);
  color: var(--to-ink);
}

.to-home-features { padding: 100px 0 72px; }
.to-home-trust { padding: 40px 0 90px; }

.to-home-features__top {
  display: grid;
  grid-template-columns: 1.2fr .95fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}

.to-section-title {
  margin: 0px;
  color: var(--to-ink);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.space-section{
  padding-bottom: 100px;
}
.to-section-title--left { text-align: left; }

.to-home-features__intro {
  color: var(--to-ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
  padding-top: 12px;
}

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

.to-card-feature {
  min-height: 360px;
  background: #f6f4fb;
  border: 1px solid var(--to-card-border);
  border-radius: 16px;
  padding: 32px 22px 26px;
  box-shadow: 0 8px 24px rgba(8, 30, 60, 0.04);
}

.to-card-feature__icon {
  width: 132px;
  height: 132px;
  margin: 0 auto 22px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #b18cff;
  background: radial-gradient(circle at 50% 50%, rgba(202, 183, 255, 0.44) 0%, rgba(202, 183, 255, 0.12) 45%, rgba(202, 183, 255, 0) 72%);
}

.to-card-feature__icon svg { width: 90px; height: 90px; }
.to-card-feature h3 { margin: 0 0 14px; font-size: 2rem; line-height: 1.1; letter-spacing: -0.03em; color: var(--to-ink); }
.to-card-feature p { margin: 0; color: var(--to-ink-soft); line-height: 1.8; font-size: 1rem; }

.to-home-trust__grid {
  display: grid;
  grid-template-columns: 1.1fr .92fr;
  gap: 48px;
  align-items: start;
}

.to-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 28px;
  margin-top: 42px;
}

.to-benefit__dot {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #efe8ff;
  color: #8f62ff;
  margin-bottom: 16px;
  font-size: 14px;
}

.to-benefit h3 {
  margin: 0 0 10px;
  color: var(--to-ink);
  font-size: 1.9rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.to-benefit p {
  margin: 0;
  color: var(--to-ink-soft);
  line-height: 1.8;
  font-size: 1rem;
}

.to-logos-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 18px;
  align-items: center;
  margin-top: 42px;
}

.to-logo-badge {
  min-height: auto;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: none;
}

.to-logo-badge--purple {
  color: #7d2fe2;
  font-size: 2.1rem;
}
.to-logo-badge--gold {
  color: #775800;
  font-size: 1rem;
}
.to-logo-badge--blue {
  color: #1963c7;
  font-size: 2rem;
}

.to-photo-card {
  position: relative;
  min-height: 540px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0) 20%),
    linear-gradient(145deg, #d7d0c7 0%, #f4efe9 28%, #d1b59a 52%, #8a6a55 100%);
  box-shadow: 0 16px 50px rgba(8, 30, 60, 0.12);
}

.to-photo-card__glow {
  position: absolute;
  inset: auto -10% -18% -10%;
  height: 45%;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.55), rgba(255,255,255,0) 70%);
}

.to-photo-card__people::before,
.to-photo-card__people::after {
  content: "";
  position: absolute;
  border-radius: 999px 999px 40px 40px;
  background: linear-gradient(180deg, rgba(35,41,54,.92), rgba(35,41,54,.72));
}

.to-person {
  position: absolute;
  display: block;
}

.to-person--1 {
  left: 12%;
  bottom: 7%;
  width: 38%;
  height: 66%;
  border-radius: 120px 120px 42px 42px;
  background:
    radial-gradient(circle at 50% 16%, #f2d1b6 0 12%, rgba(242,209,182,0) 12.2%),
    radial-gradient(circle at 50% 14%, #f6e8dd 0 18%, rgba(246,232,221,0) 18.2%),
    radial-gradient(circle at 53% 10%, #d9b69d 0 9%, rgba(217,182,157,0) 9.2%),
    radial-gradient(circle at 48% 12%, #f0d0b7 0 14%, rgba(240,208,183,0) 14.2%),
    linear-gradient(180deg, #d8c2b2 0 22%, rgba(216,194,178,0) 22.2%),
    linear-gradient(180deg, #404856 22%, #657184 44%, #d8dfe8 44.5%, #c6d1dc 100%);
}

.to-person--2 {
  right: 7%;
  bottom: -2%;
  width: 46%;
  height: 78%;
  border-radius: 130px 130px 36px 36px;
  background:
    radial-gradient(circle at 50% 15%, #8a5846 0 10%, rgba(138,88,70,0) 10.2%),
    radial-gradient(circle at 50% 18%, #cb9a7e 0 14%, rgba(203,154,126,0) 14.2%),
    linear-gradient(180deg, #2e2b35 0 24%, rgba(46,43,53,0) 24.2%),
    linear-gradient(180deg, #f3e9e0 24%, #f0e5dc 34%, rgba(240,229,220,0) 34.2%),
    linear-gradient(180deg, #ece7e1 34%, #ece7e1 40%, #f6f4f2 40.2%, #f2f0ee 100%);
}

@media (max-width: 1100px) {
  .to-cards-grid,
  .to-home-features__top,
  .to-home-trust__grid,
  .to-benefits-grid,
  .to-logos-strip { grid-template-columns: 1fr; }

  .to-section-title, .to-section-title--left { text-align: left; }
  .to-home-features__top { gap: 20px; }
  .to-card-feature { min-height: auto; }
}

@media (max-width: 900px) {
  .to-hero__inner { min-height: 520px; padding: 72px 0 94px; }
  .to-hero__ring--1 { width: 560px; height: 560px; bottom: -360px; }
  .to-hero__ring--2 { width: 860px; height: 860px; bottom: -590px; }
  .to-hero__ring--3 { width: 1120px; height: 1120px; bottom: -800px; }
  .to-home-features { padding-top: 72px; }
  .to-photo-card { min-height: 420px; }
}

@media (max-width: 640px) {
  .to-container { width: min(var(--to-container), calc(100% - 30px)); }
  .to-hero__text { font-size: .95rem; }
  .to-card-feature { padding: 24px 18px 22px; }
  .to-card-feature h3, .to-benefit h3 { font-size: 1.5rem; }
  .to-home-features, .to-home-trust { padding-bottom: 60px; }
  .to-photo-card { min-height: 340px; }
}
/***********************************/

.to-card-feature{
  background: #f8f8fb;
  border: 1px solid #d9e0ea;
  border-radius: 20px;
  padding: 14px 18px 30px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
}

/* Zona superior de imagen */
.to-card-feature__icon{
  position: relative;
  height: 300px;
width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
}

/* Difuminado rosa/blanco del fondo */
.to-card-feature__icon::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%,
      rgba(242, 214, 255, 0.95) 0%,
      rgba(248, 238, 255, 0.78) 28%,
      rgba(255, 250, 252, 0.55) 48%,
      rgba(255, 255, 255, 0) 72%);
  filter: blur(12px);
  transform: scale(2.05);
  z-index: 0;
}

/* Imagen por encima del difuminado */
.to-card-feature__icon img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 230px;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.08);
}

/* Título */
.to-card-feature h3{
  margin: 0 0 14px;
  text-align: left;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #001b4f;
}

/* Texto */
.to-card-feature p{
  margin: 0;
  text-align: left;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  color: #5b6f8c;
  max-width: 92%;
}

.par{
margin: 0;
  text-align: left;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
  max-width: 92%;
}

.to-photo-card__people_mio img{
  width: 100%;
  height: 100%;
}

.space{
  padding-bottom: 200px;
}
/*.to-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;   /* para que queden en una sola línea */
  column-gap: 90px;    /* separación real entre logos */
  row-gap: 30px;
}*/

.to-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;      /* evita que se encojan o estiren raro */
  min-height: auto;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
/*
.to-logo-badge img {
  display: block;
  width: auto;
  height: auto;
  max-height: 90px;
  max-width: 220px;
  margin-right: 100px;           /* quita el margin-right */
  object-fit: contain;
}*/

/**************************************************/
/*  LOGOS SECTION
/**************************************************/

.to-logos-section{
  background: #f5f5f8;
  padding: 90px 0 110px;
}

.to-logos-section__head{
  text-align: center;
  margin-bottom: 48px;
}

.to-logos-section__intro{
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 17px;
  line-height: 1.7;
  color: #667085;
  text-align: center;
}

/**************************************************/
/*  LOGOS GRID
/**************************************************/

.to-logos-strip{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(50px, 8vw, 130px);
  row-gap: 36px;
  align-items: center;
  justify-items: center;
}

.to-logo-badge{
  width: 100%;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  margin: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.to-logo-badge img{
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 95px;
  object-fit: contain;
  margin: 0;
}

/**************************************************/
/*  RESPONSIVE
/**************************************************/

@media (max-width: 900px){
  .to-logos-strip{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 44px;
    row-gap: 28px;
  }

  .to-logo-badge{
    min-height: 130px;
  }

  .to-logo-badge img{
    max-height: 82px;
  }
}

@media (max-width: 640px){
  .to-logos-section{
    padding: 70px 0 80px;
  }

  .to-logos-strip{
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .to-logo-badge{
    min-height: 110px;
  }

  .to-logo-badge img{
    max-height: 72px;
  }
}

/* =========================================================
   ACCOUNT PAGE - Turnos Online
   ========================================================= */

.pms-account-page,
.page .pms-block-container {
  --acc-bg: #f3f5fb;
  --acc-card: rgba(255,255,255,.96);
  --acc-card-soft: rgba(255,255,255,.88);
  --acc-text: #082b6f;
  --acc-text-soft: #5e739d;
  --acc-border: rgba(8,43,111,.12);
  --acc-border-strong: rgba(8,43,111,.18);
  --acc-primary: #1f5eff;
  --acc-primary-dark: #0b2f78;
  --acc-accent: #8b5cf6;
  --acc-shadow: 0 18px 50px rgba(11,47,120,.10);
  --acc-shadow-soft: 0 10px 24px rgba(11,47,120,.08);
  --acc-radius-xl: 26px;
  --acc-radius-lg: 20px;
  --acc-radius-md: 14px;
}

/* Fondo general de la zona */
.site-main {
  background:
    radial-gradient(circle at top left, rgba(139,92,246,.08), transparent 28%),
    radial-gradient(circle at top right, rgba(31,94,255,.08), transparent 32%),
    #f3f5fb;
  min-height: 60vh;
}

.site-main .container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.site-main article.page {
  margin: 0;
}

.site-main article.page > h1 {
  margin: 0 0 28px;
  color: #082b6f;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1px;
}

/* Stack vertical: menú arriba y contenido debajo */
.pms-block-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =========================
   NAV SECCIONES
   ========================= */
.pms-account-navigation {
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(8,43,111,.10);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(11,47,120,.08);
  backdrop-filter: blur(10px);
}

.pms-account-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.pms-account-navigation li {
  margin: 0;
  padding: 0;
}

.pms-account-navigation a {
  position: relative;
  display: block;
  padding: 18px 18px 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(8,43,111,.10);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 8px 22px rgba(8,43,111,.05);
  text-decoration: none;
  color: #082b6f;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.pms-account-navigation a:hover {
  transform: translateY(-2px);
  border-color: rgba(31,94,255,.22);
  box-shadow: 0 12px 28px rgba(8,43,111,.08);
}

.pms-account-navigation a::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, #1f5eff, #8b5cf6);
  opacity: .12;
  transition: opacity .22s ease;
}

.pms-account-navigation a:hover::after,
.pms-account-navigation a.pms-account-navigation-link--active::after {
  opacity: 1;
}

/* Texto tipo "Sección X" */
.pms-account-navigation-link--subscriptions a::before,
.pms-account-navigation-link--profile a::before,
.pms-account-navigation-link--payments a::before,
.pms-account-navigation-link--logout a::before {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6a7da5;
}

.pms-account-navigation-link--subscriptions a::before {
  content: "Sección 1";
}
.pms-account-navigation-link--profile a::before {
  content: "Sección 2";
}
.pms-account-navigation-link--payments a::before {
  content: "Sección 3";
}
.pms-account-navigation-link--logout a::before {
  content: "Sección 4";
}

.pms-account-navigation a {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.pms-account-navigation a.pms-account-navigation-link--active {
  background: linear-gradient(180deg, rgba(240,246,255,1), rgba(255,255,255,1));
  border-color: rgba(31,94,255,.35);
  box-shadow: 0 14px 30px rgba(31,94,255,.10);
}

/* =========================
   TABLA SUSCRIPCIÓN / CONTENIDO
   ========================= */
.pms-account-subscription-details-table,
.pms-payments-history,
.pms-account-subscriptions-table,
.pms-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(8,43,111,.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(11,47,120,.10);
}

.pms-account-subscription-details-table tbody tr:not(:last-child) td,
.pms-payments-history tbody tr:not(:last-child) td,
.pms-account-subscriptions-table tbody tr:not(:last-child) td,
.pms-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(8,43,111,.08);
}

.pms-account-subscription-details-table td,
.pms-payments-history td,
.pms-account-subscriptions-table td,
.pms-table td,
.pms-payments-history th,
.pms-account-subscriptions-table th,
.pms-table th {
  padding: 18px 22px;
  vertical-align: middle;
}

.pms-account-subscription-details-table td:first-child,
.pms-payments-history th,
.pms-account-subscriptions-table th,
.pms-table th {
  width: 240px;
  color: #082b6f;
  font-weight: 900;
  font-size: 15px;
  background: rgba(247,250,255,.9);
}

.pms-account-subscription-details-table td:last-child,
.pms-payments-history td,
.pms-account-subscriptions-table td,
.pms-table td {
  color: #233a68;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

/* Estado */
.pms-account-subscription-details-table .status-active {
  color: #0b7a43 !important;
  font-weight: 900;
}

.pms-account-subscription-details-table .status-active::before {
  content: "● ";
  color: #17b26a;
}

/* =========================
   ACCIONES
   ========================= */
.pms-account-subscription-action-link,
.pms-account-navigation + form input[type="submit"],
.pms-form-submit,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  border: 1px solid rgba(8,43,111,.10);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.pms-account-subscription-action-link:hover,
.pms-form-submit:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
}

.pms-account-subscription-action-link__renew,
.pms-form-submit,
input[type="submit"] {
  background: linear-gradient(135deg, #1f5eff, #4f7eff);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31,94,255,.18);
}

.pms-account-subscription-action-link__change {
  background: #fff;
  color: #082b6f;
}

.pms-account-subscription-action-link__abandon {
  background: #fff5f5;
  color: #c81e1e;
  border-color: rgba(200,30,30,.16);
}

.pms-account-subscription-details-table__actions td:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   FORMULARIOS DE PERFIL / PAGOS
   ========================= */
.pms-form,
.pms-edit-profile,
.pms-account-section,
.pms-block-container > form {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(8,43,111,.10);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(11,47,120,.10);
}

.pms-form .pms-field,
.pms-edit-profile .pms-field,
.pms-form-fields-wrapper .pms-field {
  margin-bottom: 18px;
}

.pms-form label,
.pms-edit-profile label,
.pms-form-fields-wrapper label {
  display: inline-block;
  margin-bottom: 8px;
  color: #0b2f78;
  font-size: 14px;
  font-weight: 800;
}

.pms-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.pms-form select,
.pms-form textarea,
.pms-edit-profile input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.pms-edit-profile select,
.pms-edit-profile textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(8,43,111,.14);
  border-radius: 14px;
  background: #fff;
  padding: 0 16px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.pms-form textarea,
.pms-edit-profile textarea {
  min-height: 140px;
  padding-top: 14px;
}

.pms-form input:focus,
.pms-form select:focus,
.pms-form textarea:focus,
.pms-edit-profile input:focus,
.pms-edit-profile select:focus,
.pms-edit-profile textarea:focus {
  border-color: rgba(31,94,255,.42);
  box-shadow: 0 0 0 4px rgba(31,94,255,.10);
}

/* =========================
   MENSAJES
   ========================= */
.pms-success,
.pms-warning,
.pms-errors-wrapper,
.pms-error,
.pms-form-errors-wrapper {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.pms-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}

.pms-warning {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #c2410c;
}

.pms-errors-wrapper,
.pms-error,
.pms-form-errors-wrapper {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .site-main .container {
    width: min(100% - 20px, 1120px);
    padding: 34px 0 54px;
  }

  .site-main article.page > h1 {
    margin-bottom: 20px;
    font-size: 38px;
  }

  .pms-account-navigation {
    padding: 14px;
  }

  .pms-account-navigation a {
    padding: 16px 16px 16px 18px;
    font-size: 16px;
  }

  .pms-account-subscription-details-table,
  .pms-payments-history,
  .pms-account-subscriptions-table,
  .pms-table {
    display: block;
    overflow-x: auto;
    border-radius: 18px;
  }

  .pms-account-subscription-details-table td,
  .pms-payments-history td,
  .pms-account-subscriptions-table td,
  .pms-table td,
  .pms-payments-history th,
  .pms-account-subscriptions-table th,
  .pms-table th {
    padding: 14px 16px;
  }

  .pms-account-subscription-details-table__actions td:last-child {
    flex-direction: column;
    align-items: stretch;
  }

  .pms-account-subscription-action-link,
  .pms-form-submit,
  input[type="submit"] {
    width: 100%;
  }
}

/* =========================================================
   LOGIN FRONTEND - Turnos Online
   ========================================================= */

.to-login-section{
  background:
    radial-gradient(circle at top left, rgba(139,92,246,.08), transparent 28%),
    radial-gradient(circle at top right, rgba(31,94,255,.08), transparent 32%),
    #f3f5fb;
  padding: 56px 0 80px;
}

.to-login-grid{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(340px, .95fr);
  gap: 34px;
  align-items: center;
}

.to-login-copy{
  padding-right: 10px;
}

.to-login-eyebrow{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: #0b2f78;
}

.to-login-title{
  margin: 0;
  font-size: clamp(40px, 5vw, 74px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -1.4px;
  color: #082b6f;
}

.to-login-text{
  margin: 24px 0 0;
  max-width: 700px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  font-weight: 600;
  color: #5a709c;
}

.to-login-points{
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.to-login-points li{
  position: relative;
  padding-left: 28px;
  color: #0b2f78;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.to-login-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b18cff, #7c4dff);
  box-shadow: 0 0 0 6px rgba(124,77,255,.10);
}

.to-login-card{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(8,43,111,.10);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(11,47,120,.10);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.to-login-card__head{
  padding: 28px 28px 16px;
  border-bottom: 1px solid rgba(8,43,111,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,255,.92));
}

.to-login-card__head h2{
  margin: 0;
  color: #082b6f;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -.8px;
}

.to-login-card__head p{
  margin: 12px 0 0;
  color: #5a709c;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.to-login-form-wrap{
  padding: 24px 28px 30px;
}

.to-login-alert{
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.to-login-alert--error{
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
}

.to-login-alert--ok{
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}

#to-frontend-loginform p{
  margin: 0 0 16px;
}

#to-frontend-loginform label{
  display: inline-block;
  margin-bottom: 8px;
  color: #0b2f78;
  font-size: 14px;
  font-weight: 800;
}

#to-frontend-loginform input[type="text"],
#to-frontend-loginform input[type="password"]{
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(8,43,111,.14);
  border-radius: 14px;
  background: #fff;
  padding: 0 16px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
  box-sizing: border-box;
}

#to-frontend-loginform input[type="text"]:focus,
#to-frontend-loginform input[type="password"]:focus{
  border-color: rgba(31,94,255,.42);
  box-shadow: 0 0 0 4px rgba(31,94,255,.10);
  transform: translateY(-1px);
}

#to-frontend-loginform .login-remember{
  display: flex;
  align-items: center;
  gap: 10px;
}

#to-frontend-loginform .login-remember label{
  margin: 0;
  font-weight: 700;
  color: #233a68;
}

#to-frontend-loginform input[type="checkbox"]{
  accent-color: #1f5eff;
  transform: scale(1.05);
}

#to-login-submit,
#to-frontend-loginform input[type="submit"]{
  appearance: none;
  border: 0;
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  margin-top: 6px;
  padding: 0 22px;
  background: linear-gradient(135deg, #1f5eff, #4f7eff);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(31,94,255,.22);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

#to-login-submit:hover,
#to-frontend-loginform input[type="submit"]:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(31,94,255,.28);
  filter: brightness(1.02);
}

.to-login-links{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.to-login-links a{
  color: #0b2f78;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.to-login-links a:hover{
  text-decoration: underline;
}

.to-login-actions{
  padding: 22px 28px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.to-login-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.to-login-btn:hover{
  transform: translateY(-1px);
}

.to-login-btn--primary{
  background: linear-gradient(135deg, #1f5eff, #4f7eff);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31,94,255,.18);
}

.to-login-btn--ghost{
  background: #fff;
  border: 1px solid rgba(8,43,111,.10);
  color: #082b6f;
}

@media (max-width: 980px){
  .to-login-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .to-login-copy{
    padding-right: 0;
  }
}

@media (max-width: 640px){
  .to-login-section{
    padding: 34px 0 56px;
  }

  .to-login-grid{
    width: min(100% - 20px, 1180px);
  }

  .to-login-card__head,
  .to-login-form-wrap,
  .to-login-actions{
    padding-left: 18px;
    padding-right: 18px;
  }

  .to-login-title{
    font-size: 42px;
    letter-spacing: -1px;
  }

  .to-login-text{
    font-size: 18px;
  }

  .to-login-points li{
    font-size: 16px;
  }

  .to-login-btn{
    width: 100%;
  }
}

/* =========================================================
   LOGOUT FRONTEND - Turnos Online
   ========================================================= */

.to-logout-section{
  background:
    radial-gradient(circle at top left, rgba(139,92,246,.08), transparent 28%),
    radial-gradient(circle at top right, rgba(31,94,255,.08), transparent 32%),
    #f3f5fb;
  padding: 56px 0 80px;
}

.to-logout-grid{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(340px, .95fr);
  gap: 34px;
  align-items: center;
}

.to-logout-copy{
  padding-right: 10px;
}

.to-logout-eyebrow{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: #0b2f78;
}

.to-logout-title{
  margin: 0;
  font-size: clamp(40px, 5vw, 74px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -1.4px;
  color: #082b6f;
}

.to-logout-text{
  margin: 24px 0 0;
  max-width: 700px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  font-weight: 600;
  color: #5a709c;
}

.to-logout-points{
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.to-logout-points li{
  position: relative;
  padding-left: 28px;
  color: #0b2f78;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.to-logout-points li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #b18cff, #7c4dff);
  box-shadow: 0 0 0 6px rgba(124,77,255,.10);
}

.to-logout-card{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(8,43,111,.10);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(11,47,120,.10);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.to-logout-card__head{
  padding: 28px 28px 16px;
  border-bottom: 1px solid rgba(8,43,111,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,255,.92));
}

.to-logout-card__head h2{
  margin: 0;
  color: #082b6f;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -.8px;
}

.to-logout-card__head p{
  margin: 12px 0 0;
  color: #5a709c;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.to-logout-card__body{
  padding: 24px 28px 30px;
}

.to-logout-alert{
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
}

.to-logout-alert--ok{
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}

.to-logout-actions{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.to-logout-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.to-logout-btn:hover{
  transform: translateY(-1px);
}

.to-logout-btn--danger{
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  box-shadow: 0 14px 28px rgba(220,38,38,.18);
}

.to-logout-btn--primary{
  background: linear-gradient(135deg, #1f5eff, #4f7eff);
  color: #fff;
  box-shadow: 0 14px 28px rgba(31,94,255,.18);
}

.to-logout-btn--ghost{
  background: #fff;
  border: 1px solid rgba(8,43,111,.10);
  color: #082b6f;
}

@media (max-width: 980px){
  .to-logout-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .to-logout-copy{
    padding-right: 0;
  }
}

@media (max-width: 640px){
  .to-logout-section{
    padding: 34px 0 56px;
  }

  .to-logout-grid{
    width: min(100% - 20px, 1180px);
  }

  .to-logout-card__head,
  .to-logout-card__body{
    padding-left: 18px;
    padding-right: 18px;
  }

  .to-logout-title{
    font-size: 42px;
    letter-spacing: -1px;
  }

  .to-logout-text{
    font-size: 18px;
  }

  .to-logout-points li{
    font-size: 16px;
  }

  .to-logout-btn{
    width: 100%;
  }
}

/* =========================================================
   AJUSTE FONDO LOGIN / LOGOUT
   ========================================================= */

/* Quitamos el fondo diferente de la sección */
.to-login-section,
.to-logout-section{
  background: transparent;
}

/* Creamos un panel blanco común para los dos lados */
.to-login-grid,
.to-logout-grid{
  padding: 38px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(8,43,111,.08);
  border-radius: 32px;
  box-shadow: 0 18px 50px rgba(11,47,120,.08);
}

/* Igualamos aún más el blanco de las cards */
.to-login-card,
.to-logout-card{
  background: #ffffff;
}

/* Responsive */
@media (max-width: 980px){
  .to-login-grid,
  .to-logout-grid{
    padding: 26px;
  }
}

@media (max-width: 640px){
  .to-login-grid,
  .to-logout-grid{
    padding: 18px;
    border-radius: 22px;
  }
}

/* Account: quitar etiquetas Sección 1, 2, 3, 4 */
.pms-account-navigation-link--subscriptions a::before,
.pms-account-navigation-link--profile a::before,
.pms-account-navigation-link--payments a::before,
.pms-account-navigation-link--logout a::before {
  content: none !important;
  display: none !important;
}

/* Account: ocultar la tarjeta/enlace de Logout */
.pms-account-navigation-link--logout {
  display: none !important;
}

/* Ajuste visual al quitar la línea superior */
.pms-account-navigation a {
  padding-top: 16px;
  padding-bottom: 16px;
}

/* =========================================================
   ACCOUNT: quitar texto secciones y convertir Logout en Aplicación
   ========================================================= */

/* Quitar "Sección 1 / 2 / 3 / 4" */
.pms-account-navigation-link--subscriptions a::before,
.pms-account-navigation-link--profile a::before,
.pms-account-navigation-link--payments a::before,
.pms-account-navigation-link--logout a::before,
.pms-account-navigation-link--app a::before {
  content: none !important;
  display: none !important;
}

/* Asegurar que el antiguo logout ahora visible como Aplicación no se oculte */
.pms-account-navigation-link--app {
  display: block !important;
}

/* Ajuste de padding */
.pms-account-navigation a {
  padding-top: 16px;
  padding-bottom: 16px;
}