@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --vrim-blue: #122d5c;
  --vrim-blue-2: #003ba2;
  --vrim-bright: #3e67d9;
  --vrim-sky: #51c0ff;
  --vrim-orange: #e45900;
  --vrim-orange-2: #ff6b1a;
  --vrim-light: #eef4ff;
  --vrim-soft: #f5f8ff;
  --text: #212121;
  --muted: #5f6f89;
  --border: #e5ebf7;
  --white: #fff;
  --shadow: 0 18px 42px rgba(18, 45, 92, 0.1);
  --shadow-strong: 0 25px 60px rgba(18, 45, 92, 0.16);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1190px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 6px 18px rgba(18, 45, 92, 0.07);
}
.navbar {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo img {
  width: 118px;
  height: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 500;
  color: #122d5c;
}
.nav-links a {
  transition: 0.2s ease;
}
.nav-links a:hover {
  color: var(--vrim-orange);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 17px;
  border: 2px solid var(--vrim-blue);
  border-radius: 50px;
  color: var(--vrim-blue);
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  transition: 0.2s ease;
}
.login-btn:hover {
  background: var(--vrim-blue);
  color: #fff;
}
.login-btn .login-icon {
  width: 24px;
  height: auto;
  flex: 0 0 auto;
}
.cart-text {
  font-weight: 600;
  color: var(--vrim-blue);
  font-size: 12px;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  border: 0;
  background: #eef4ff;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vrim-blue);
  position: relative;
}
.menu-toggle span:before,
.menu-toggle span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--vrim-blue);
}
.menu-toggle span:before {
  top: -7px;
}
.menu-toggle span:after {
  top: 7px;
}

/* Consulta hero */
.consulta-hero {
  background: var(--vrim-light);
  padding: 46px 0 70px;
}
.consulta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
}
.consulta-copy h1 {
  margin: 0;
  color: var(--vrim-orange);
  font-size: 50px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -1px;
  max-width: 620px;
}
.consulta-copy h2 {
  margin: 0;
  color: var(--vrim-orange);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
}
.consulta-copy p {
  margin: 26px 0 0;
  color: var(--vrim-blue);
  font-size: 14px;
  line-height: 23px;
  max-width: 620px;
}
.consulta-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 55px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vrim-blue);
  border: 2px solid var(--vrim-blue);
  color: #fff;
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.2s ease;
  box-shadow: 0 12px 26px rgba(18, 45, 92, 0.18);
}
.btn-primary:hover {
  background: transparent;
  color: var(--vrim-blue);
  box-shadow: none;
}
.benefits-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--vrim-blue);
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
}
.benefits-link img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.consulta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.consulta-visual img {
  width: min(100%, 612px);
}
.consulta-icons {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  align-items: start;
}
.consulta-icon {
  text-align: center;
  color: var(--vrim-blue);
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  display: grid;
  place-items: center;
  gap: 12px;
  min-width: 0;
}
.consulta-icon img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Membership hero */
.membership-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 76px 0 60px;
}
.membership-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 38px;
}
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vrim-blue-2);
  border-radius: 50px;
  color: #fff;
  padding: 3px 17px 3px 4px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 22px;
}
.price-pill img {
  width: 28px;
  height: 28px;
}
.price-pill strong {
  font-weight: 700;
}
.membership-copy h2 {
  margin: 0 0 24px;
  color: #212121;
  font-size: 48px;
  line-height: 58px;
  font-weight: 500;
  letter-spacing: -1px;
  max-width: 630px;
}
.hero-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 690px;
}
.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #313131;
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
}
.hero-list img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  margin-top: 2px;
  flex: 0 0 auto;
}
.hero-list strong {
  font-weight: 700;
  color: #111;
}
.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--vrim-orange-2);
  color: #fff;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 14px;
  box-shadow: 0 16px 32px rgba(255, 107, 26, 0.25);
  transition: 0.2s ease;
  text-transform: uppercase;
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(255, 107, 26, 0.32);
}
.phone-stage {
  position: relative;
  min-height: 610px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.phone-stage:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle at 65% 30%,
    rgba(81, 192, 255, 0.28),
    transparent 62%
  );
  border-radius: 50%;
  top: 20px;
  right: 0;
}
.phone-stage .woman {
  position: relative;
  z-index: 2;
  width: min(100%, 570px);
}
.floating-card {
  position: absolute;
  z-index: 3;
  width: 146px;
  filter: drop-shadow(0 20px 28px rgba(18, 45, 92, 0.18));
  animation: floaty 5s ease-in-out infinite;
}
.card-plus {
  left: 0;
  top: 68px;
}
.card-black {
  right: 20px;
  top: 88px;
  animation-delay: 0.8s;
}
.card-platino {
  left: 30px;
  bottom: 95px;
  animation-delay: 1.6s;
}
.card-elite {
  right: 26px;
  bottom: 60px;
  animation-delay: 2.4s;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

.section {
  padding: 76px 0;
}
.section-soft {
  background: var(--vrim-soft);
}
.section-blue {
  background: var(--vrim-blue);
  color: #fff;
}
.section-title {
  text-align: center;
  margin: 0 auto 14px;
  font-size: 31px;
  line-height: 1.22;
  font-weight: 700;
  color: var(--text);
  max-width: 860px;
  letter-spacing: -0.4px;
}
.section-title .blue-text {
  color: #3e67d9;
}
.section-subtitle {
  text-align: center;
  margin: 0 auto 42px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
  max-width: 790px;
}

.benefit-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  min-height: 100%;
}
.benefit-card h3 {
  margin: 0 0 18px;
  color: #0f2d5c;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}
.benefit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}
.benefit-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #34445c;
  font-size: 12px;
  line-height: 19px;
}
.benefit-card li:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("assets/icons/mini-benefit.svg") center/contain no-repeat;
  flex: 0 0 auto;
  margin-top: 3px;
}
.all-benefits {
  margin-top: 34px;
  text-align: center;
  color: var(--vrim-blue);
  font-weight: 700;
  font-size: 16px;
}

.cards-section {
  padding-top: 88px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: 0.2s ease;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.pricing-card.featured {
  border: 2px solid #ff8b40;
}
.pricing-card .tag {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #ffefe6;
  color: #e45900;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 11px;
}
.pricing-card h3 {
  margin: 0 0 12px;
  color: #142f5d;
  font-size: 19px;
  line-height: 1.1;
}
.pricing-card .card-img {
  width: 170px;
  margin: 4px auto 16px;
}
.pricing-card .price-line {
  color: #122d5c;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
}
.pricing-card .price {
  font-size: 23px;
  font-weight: 800;
  color: #0d2d5b;
  margin: 3px 0 16px;
}
.pricing-card ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 10px;
  flex: 1;
}
.pricing-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #43516a;
  font-size: 12px;
  line-height: 18px;
}
.pricing-card li:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("assets/img/check-blue.png") center/contain no-repeat;
  flex: 0 0 auto;
}
.pricing-card .buy {
  margin-top: auto;
  align-self: center;
  background: #ff6b1a;
  color: #fff;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.pricing-card .buy:hover {
  background: #e45900;
}

.compare-wrap {
  overflow: auto;
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}
.compare-table th {
  background: #f1f5ff;
  color: #122d5c;
  text-align: center;
  font-size: 13px;
  padding: 17px 13px;
}
.compare-table th:first-child {
  text-align: left;
}
.compare-table td {
  border-top: 1px solid var(--border);
  padding: 15px 13px;
  color: #33435d;
  font-size: 13px;
  text-align: center;
}
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1f3356;
}
.yes {
  width: 22px;
  height: 22px;
  display: inline-block;
  background: url("assets/img/check-blue.png") center/contain no-repeat;
}
.no {
  width: 21px;
  height: 21px;
  display: inline-block;
  background: url("assets/img/x-red.png") center/contain no-repeat;
}
.msi {
  margin-top: 28px;
  text-align: center;
  color: #e45900;
  font-weight: 800;
  font-size: 22px;
}
.detail-note {
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.note-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #3d4d66;
  font-size: 13px;
  line-height: 21px;
}
.note-card img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}
.note-card strong {
  color: #122d5c;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.step {
  background: #fff;
  border-radius: 26px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border);
}
.step .num {
  width: 46px;
  height: 46px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #003ba2;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.step p {
  margin: 0;
  color: #34445c;
  font-size: 13px;
  line-height: 20px;
}

.faq-section {
  padding-bottom: 42px;
}
.faq-list {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(18, 45, 92, 0.06);
}
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  color: #122d5c;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: "+";
  float: right;
  color: #e45900;
  font-size: 22px;
  line-height: 1;
}
.faq-item[open] summary:after {
  content: "−";
}
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: #4e5d73;
  font-size: 14px;
  line-height: 24px;
}
.banner-wrap {
  padding: 20px 0 66px;
  background: #fff;
  scroll-margin-top: 110px;
}
.banner-wrap img {
  width: min(1024px, calc(100% - 48px));
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.footer {
  background: #0f2d5c;
  color: #fff;
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 34px;
  align-items: start;
}
.footer-logo {
  width: 126px;
  margin-bottom: 20px;
}
.footer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 23px;
  margin: 0;
}
.footer h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  margin-bottom: 10px;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }
  .consulta-copy h1,
  .membership-copy h2 {
    font-size: 42px;
    line-height: 1.12;
  }
  .benefit-groups,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .floating-card {
    width: 120px;
  }
  .phone-stage {
    min-height: 520px;
  }
}
@media (max-width: 900px) {
  .navbar {
    height: auto;
    min-height: 78px;
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 12px 0 18px;
    border-top: 1px solid #eef2fb;
  }
  .site-header.open .nav-links,
  .site-header.open .nav-actions {
    display: flex;
  }
  .consulta-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }
  .consulta-copy,
  .membership-copy {
    text-align: center;
  }
  .consulta-copy h1,
  .consulta-copy h2,
  .consulta-copy p,
  .membership-copy h2,
  .hero-list {
    margin-left: auto;
    margin-right: auto;
  }
  .consulta-actions {
    justify-content: center;
  }
  .consulta-icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 18px;
  }
  .phone-stage {
    min-height: 560px;
  }
  .detail-note {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1190px);
  }
  .consulta-hero {
    padding: 32px 0 46px;
  }
  .consulta-copy h1 {
    font-size: 29px;
    line-height: 34px;
    letter-spacing: -0.4px;
  }
  .consulta-copy h2 {
    font-size: 17px;
    line-height: 23px;
  }
  .consulta-copy p {
    font-size: 13px;
    line-height: 21px;
  }
  .consulta-actions {
    margin-top: 28px;
    gap: 18px;
  }
  .btn-primary {
    font-size: 13px;
    padding: 12px 18px;
  }
  .benefits-link {
    font-size: 13px;
  }
  .consulta-icons {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
  }
  .consulta-icon {
    font-size: 13px;
    line-height: 18px;
  }
  .consulta-icon img {
    height: 44px;
  }
  .membership-hero {
    padding: 42px 0 42px;
  }
  .membership-copy h2 {
    font-size: 30px;
    line-height: 37px;
    letter-spacing: -0.5px;
  }
  .hero-list li {
    font-size: 13px;
    line-height: 21px;
  }
  .price-pill {
    font-size: 12px;
  }
  .phone-stage {
    min-height: 430px;
  }
  .floating-card {
    width: 88px;
  }
  .card-plus {
    top: 42px;
  }
  .card-black {
    top: 44px;
    right: 0;
  }
  .card-platino {
    left: 4px;
    bottom: 74px;
  }
  .card-elite {
    right: 4px;
    bottom: 46px;
  }
  .section {
    padding: 54px 0;
  }
  .section-title {
    font-size: 24px;
  }
  .section-subtitle {
    font-size: 13px;
    margin-bottom: 28px;
  }
  .benefit-groups,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .compare-table {
    min-width: 760px;
  }
  .msi {
    font-size: 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .banner-wrap {
    padding-bottom: 44px;
  }
  .banner-wrap img {
    width: calc(100% - 32px);
    border-radius: 12px;
  }
}

/* Ajustes de texto y alineación tomados de los HTML originales */
.consulta-copy h1 {
  font-size: 44px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.7px;
  max-width: 560px;
}
.consulta-copy h2 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  max-width: 560px;
}
.consulta-copy p {
  font-size: 13.5px;
  line-height: 22px;
  max-width: 570px;
  margin-top: 22px;
  text-align: left;
}
.btn-primary,
.benefits-link {
  font-size: 15px;
}
.consulta-icons {
  margin-top: 62px;
}
.consulta-icon {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
}
.consulta-icon img {
  height: 50px;
}

.membership-copy h2 {
  font-size: 42px;
  line-height: 52px;
  font-weight: 500;
  letter-spacing: -0.7px;
  max-width: 590px;
  text-align: left;
}
.price-pill {
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 20px;
}
.hero-list {
  gap: 13px;
  max-width: 640px;
}
.hero-list li {
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}
.hero-list img {
  width: 22px;
  height: 22px;
}
.btn-orange {
  font-size: 13px;
  padding: 13px 26px;
}

.section-title {
  font-size: 28px;
  line-height: 1.26;
  max-width: 800px;
  margin-bottom: 34px;
  text-align: center;
}
.cards-section .section-title {
  margin-bottom: 12px;
}
.cards-section .section-subtitle {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 42px;
  max-width: 760px;
  text-align: center;
}
.benefit-card {
  text-align: left;
  padding: 26px 22px;
}
.benefit-card h3 {
  font-size: 17px;
  line-height: 1.23;
  margin-bottom: 16px;
  text-align: left;
}
.benefit-card li {
  font-size: 11.5px;
  line-height: 18px;
  text-align: left;
}
.all-benefits {
  font-size: 15px;
  line-height: 22px;
}

.pricing-card h3 {
  font-size: 18px;
  line-height: 1.15;
}
.pricing-card .price-line {
  font-size: 12px;
  line-height: 1.35;
}
.pricing-card .price {
  font-size: 22px;
}
.pricing-card li {
  font-size: 11.5px;
  line-height: 17.5px;
  text-align: left;
}
.compare-table th {
  font-size: 12px;
  line-height: 17px;
}
.compare-table td {
  font-size: 12px;
  line-height: 18px;
}
.note-card {
  font-size: 12px;
  line-height: 20px;
  text-align: left;
}
.step p {
  font-size: 12.5px;
  line-height: 19px;
}
.faq-item summary {
  font-size: 14px;
  line-height: 20px;
  text-align: left;
}
.faq-item p {
  font-size: 13px;
  line-height: 22px;
  text-align: left;
}

@media (max-width: 1100px) {
  .consulta-copy h1,
  .membership-copy h2 {
    font-size: 38px;
    line-height: 1.14;
  }
}
@media (max-width: 900px) {
  .consulta-copy p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .membership-copy h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-list {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .consulta-copy h1 {
    font-size: 28px;
    line-height: 33px;
    letter-spacing: -0.35px;
  }
  .consulta-copy h2 {
    font-size: 16px;
    line-height: 22px;
  }
  .consulta-copy p {
    font-size: 12.5px;
    line-height: 20px;
  }
  .btn-primary,
  .benefits-link {
    font-size: 12.5px;
  }
  .membership-copy h2 {
    font-size: 28px;
    line-height: 35px;
    letter-spacing: -0.35px;
  }
  .hero-list li {
    font-size: 12.5px;
    line-height: 20px;
  }
  .section-title {
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 26px;
  }
  .cards-section .section-subtitle {
    font-size: 12.5px;
    line-height: 20px;
    margin-bottom: 30px;
  }
}

.anuncio-flotante {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(92%, 980px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.anuncio-flotante.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.anuncio-flotante img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 32, 96, 0.22);
}

.anuncio-section {
  padding: 40px 20px;
  text-align: center;
}

.anuncio-section .anuncio-img {
  width: min(100%, 980px);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
}

/* Para que no estorbe tanto en celular */
@media (max-width: 768px) {
  .anuncio-flotante {
    width: 94%;
    bottom: 14px;
  }

  .anuncio-flotante img {
    border-radius: 12px;
  }
}

/* =========================================================
   Diseño ajustado para beneficios, tarjetas y botón VER TARJETAS
   ========================================================= */
.ver-tarjetas-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 218px;
  min-height: 58px;
  padding: 9px 10px 9px 26px;
  background: linear-gradient(90deg, #ff6b1a 0%, #ff7c25 100%);
  color: #ffffff;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(255, 107, 26, 0.28);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.ver-tarjetas-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 16% 16%,
    rgba(255, 255, 255, 0.34),
    transparent 36%
  );
  pointer-events: none;
}
.ver-tarjetas-btn span,
.ver-tarjetas-btn img {
  position: relative;
  z-index: 1;
}
.ver-tarjetas-btn img {
  width: 45px;
  height: 45px;
  padding: 4px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 45, 92, 0.18);
  transition: transform 0.22s ease;
}
.ver-tarjetas-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(255, 107, 26, 0.34);
  color: #ffffff;
}
.ver-tarjetas-btn:hover img {
  transform: translateX(4px);
}

.benefits-vrim-section {
  position: relative;
  padding: 92px 0 82px;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(81, 192, 255, 0.16),
      transparent 26%
    ),
    linear-gradient(180deg, #f4f8ff 0%, #edf5ff 100%);
  overflow: hidden;
}
.benefits-vrim-section::before,
.benefits-vrim-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.benefits-vrim-section::before {
  width: 280px;
  height: 280px;
  right: -100px;
  top: 70px;
  background: rgba(62, 103, 217, 0.08);
}
.benefits-vrim-section::after {
  width: 180px;
  height: 180px;
  left: -80px;
  bottom: 70px;
  background: rgba(255, 107, 26, 0.09);
}
.benefits-vrim-section .container {
  position: relative;
  z-index: 1;
}
.benefits-vrim-section .section-title,
.cards-vrim-section .section-title {
  max-width: 930px;
  color: #122d5c;
  font-size: 40px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 44px;
}
.benefits-vrim-section .section-title .blue-text {
  color: #3e67d9;
}
.benefit-groups {
  gap: 24px;
  align-items: stretch;
}
.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 318px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(18, 45, 92, 0.12);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(18, 45, 92, 0.17);
}
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 92px;
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
  z-index: 0;
}
.benefit-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 22px 18px;
}
.benefit-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eaf4ff;
  box-shadow: inset 0 0 0 1px rgba(62, 103, 217, 0.09);
}
.benefit-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.benefit-card h3 {
  margin: 0;
  color: #122d5c;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.benefit-card ul {
  position: relative;
  z-index: 1;
  padding: 2px 24px 26px;
  gap: 14px;
}
.benefit-card li {
  gap: 12px;
  color: #2d3f5f;
  font-size: 13px;
  line-height: 19px;
  font-weight: 500;
}
.benefit-card li::before {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  background: url("assets/icons/mini-benefit.svg") center/15px 10px no-repeat;
}
.all-benefits {
  width: fit-content;
  max-width: 100%;
  margin: 40px auto 0;
  padding: 14px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #122d5c;
  box-shadow: 0 16px 34px rgba(18, 45, 92, 0.09);
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.cards-vrim-section {
  position: relative;
  padding: 96px 0 86px;
  background: #ffffff;
  overflow: hidden;
}
.cards-vrim-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -270px;
  top: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(81, 192, 255, 0.13),
    transparent 66%
  );
  pointer-events: none;
}
.cards-vrim-section .container {
  position: relative;
  z-index: 1;
}
.cards-vrim-section .section-title {
  margin-bottom: 18px;
}
.cards-vrim-section .section-subtitle {
  max-width: 850px;
  margin-bottom: 48px;
  color: #122d5c;
  font-size: 19px;
  line-height: 29px;
  font-weight: 500;
}
.beneficios-link-inline {
  color: #3e67d9;
  font-weight: 800;
  text-decoration: none;
}
.beneficios-link-inline:hover {
  text-decoration: underline;
}
.pricing-grid {
  gap: 22px;
  align-items: stretch;
}
.pricing-card {
  border: 0;
  border-radius: 28px;
  padding: 0 0 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(18, 45, 92, 0.11);
}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 104px;
  background: linear-gradient(180deg, #f1f7ff 0%, #ffffff 100%);
  z-index: 0;
}
.pricing-card.featured {
  border: 0;
  box-shadow:
    0 24px 58px rgba(255, 107, 26, 0.2),
    0 0 0 2px rgba(255, 107, 26, 0.38) inset;
}
.pricing-card .tag {
  z-index: 2;
  top: 14px;
  right: 14px;
  background: #ff6b1a;
  color: #ffffff;
  font-size: 10px;
  line-height: 13px;
  letter-spacing: 0.02em;
  padding: 7px 10px;
}
.pricing-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 22px 18px 8px;
  color: #122d5c;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 800;
}
.pricing-card .card-img {
  position: relative;
  z-index: 1;
  width: 188px;
  margin: 8px auto 15px;
  filter: drop-shadow(0 12px 18px rgba(18, 45, 92, 0.14));
}
.pricing-card .price-line {
  order: 4;
  color: #ff6b1a;
  font-size: 11px;
  line-height: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin: -4px 22px 14px;
}
.pricing-card .price {
  order: 3;
  color: #122d5c;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  margin: 0 22px 10px;
}
.pricing-card ul {
  order: 5;
  margin: 0;
  padding: 0 22px 22px;
  gap: 0;
  border-top: 1px solid #e9effb;
}
.pricing-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  padding: 12px 0;
  border-bottom: 1px solid #eef2fb;
  color: #334766;
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
}
.pricing-card li::before {
  width: 16px;
  height: 16px;
  margin-top: 1px;
}
.pricing-card li a {
  color: #122d5c;
  font-weight: 800;
}
.pricing-card li a span {
  color: #3e67d9;
  font-weight: 700;
}
.pricing-card .buy {
  order: 6;
  min-width: 126px;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: auto auto 0;
  padding: 13px 24px;
  border-radius: 999px;
  background: #ff6b1a;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 14px 28px rgba(255, 107, 26, 0.26);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.pricing-card .buy::after {
  content: "›";
  font-size: 19px;
  line-height: 10px;
  transform: translateY(-1px);
}
.pricing-card .buy:hover {
  background: #e45900;
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(255, 107, 26, 0.34);
}

@media (max-width: 1100px) {
  .benefits-vrim-section .section-title,
  .cards-vrim-section .section-title {
    font-size: 34px;
    line-height: 1.18;
  }
}
@media (max-width: 900px) {
  .benefits-vrim-section,
  .cards-vrim-section {
    padding: 72px 0 64px;
  }
  .cards-vrim-section .section-subtitle {
    font-size: 16px;
    line-height: 25px;
  }
  .ver-tarjetas-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .ver-tarjetas-btn {
    min-width: 190px;
    min-height: 52px;
    gap: 12px;
    padding: 8px 9px 8px 20px;
    font-size: 13px;
    border-radius: 14px;
  }
  .ver-tarjetas-btn img {
    width: 38px;
    height: 38px;
  }
  .benefits-vrim-section .section-title,
  .cards-vrim-section .section-title {
    font-size: 26px;
    line-height: 1.22;
    letter-spacing: -0.35px;
    margin-bottom: 32px;
  }
  .benefit-card {
    min-height: auto;
  }
  .benefit-card-head {
    padding: 22px 20px 16px;
  }
  .benefit-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    border-radius: 16px;
  }
  .benefit-icon img {
    width: 30px;
    height: 30px;
  }
  .benefit-card h3 {
    font-size: 18px;
  }
  .benefit-card ul {
    padding: 0 22px 24px;
  }
  .all-benefits {
    border-radius: 20px;
    font-size: 13px;
    line-height: 20px;
  }
  .cards-vrim-section .section-subtitle {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 32px;
  }
  .pricing-card h3 {
    font-size: 20px;
  }
  .pricing-card .card-img {
    width: 176px;
  }
}

/* Ajuste final de menú solicitado e integración visual del botón del HTML de membresías */
#servicios,
#conocenos,
#membresias,
#contactos {
  scroll-margin-top: 104px;
}

.ver-tarjetas-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}
.ver-tarjetas-copy strong {
  font: inherit;
  line-height: 1;
}
.ver-tarjetas-copy small {
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.9;
}

@media (max-width: 900px) {
  #servicios,
  #conocenos,
  #membresias,
  #contactos {
    scroll-margin-top: 92px;
  }
  .nav-links a {
    width: 100%;
    padding: 8px 0;
  }
}

/* =========================================================
   Consultores & Excelencia® - identidad visual y secciones
   ========================================================= */
:root {
  --ce-blue: #02255d;
  --ce-blue-dark: #01183d;
  --ce-gold: #c99a02;
  --ce-gold-soft: #f4e5b3;
  --ce-ink: #15223b;
  --ce-muted: #68738a;
  --ce-soft: #f6f8fc;
}

#inicio,
#membresias,
#beneficios,
#tarjetas,
#como-funciona-vrim,
#preguntas,
#conocenos,
#servicios-ce,
#contacto {
  scroll-margin-top: 104px;
}

.ce-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(2, 37, 93, 0.08);
  box-shadow: 0 10px 30px rgba(2, 37, 93, 0.08);
}
.ce-navbar {
  height: 90px;
  gap: 26px;
}
.ce-logo img {
  width: 235px;
  max-height: 58px;
  object-fit: contain;
}
.ce-header .nav-links {
  gap: 26px;
  color: var(--ce-blue);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.ce-header .nav-links a:hover {
  color: var(--ce-gold);
}
.ce-nav-actions {
  flex: 0 0 auto;
}
.ce-whatsapp-btn {
  border-color: var(--ce-blue);
  background: var(--ce-blue);
  color: #fff;
  padding: 11px 19px;
  box-shadow: 0 12px 24px rgba(2, 37, 93, 0.16);
}
.ce-whatsapp-btn:hover {
  background: var(--ce-gold);
  border-color: var(--ce-gold);
  color: #fff;
}
.ce-header .menu-toggle {
  background: rgba(2, 37, 93, 0.08);
}
.ce-header .menu-toggle span,
.ce-header .menu-toggle span:before,
.ce-header .menu-toggle span:after {
  background: var(--ce-blue);
}

.ce-bridge {
  background: linear-gradient(135deg, var(--ce-blue), var(--ce-blue-dark));
  color: #fff;
  padding: 68px 0;
  position: relative;
  overflow: hidden;
}
.ce-bridge::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(201, 154, 2, 0.35);
  border-radius: 50%;
  right: -120px;
  top: -150px;
}
.ce-bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ce-bridge-card h2,
.ce-section h2,
.ce-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: var(--ce-blue);
  letter-spacing: -1px;
}
.ce-bridge-card h2 {
  color: #fff;
  margin-top: 10px;
}
.ce-bridge-card p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.7;
}
.ce-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ce-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.ce-eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
}
.ce-bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.ce-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.ce-btn:hover {
  transform: translateY(-2px);
}
.ce-btn-gold {
  background: var(--ce-gold);
  color: #fff;
  box-shadow: 0 14px 30px rgba(201, 154, 2, 0.28);
}
.ce-btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.ce-section {
  padding: 92px 0;
}
.ce-about {
  background: #fff;
}
.ce-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 56px;
  align-items: center;
}
.ce-about-copy h2 {
  margin-top: 12px;
  max-width: 760px;
}
.ce-about-copy p {
  color: var(--ce-muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 20px 0 0;
}
.ce-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.ce-stats div {
  border: 1px solid rgba(2, 37, 93, 0.1);
  border-radius: 22px;
  background: var(--ce-soft);
  padding: 22px 18px;
  box-shadow: 0 16px 36px rgba(2, 37, 93, 0.07);
}
.ce-stats strong {
  display: block;
  color: var(--ce-blue);
  font-size: 32px;
  line-height: 1;
}
.ce-stats span {
  display: block;
  color: var(--ce-muted);
  font-size: 12px;
  line-height: 1.35;
  margin-top: 8px;
  font-weight: 700;
}
.ce-about-panel {
  border-radius: 36px;
  background: linear-gradient(155deg, #ffffff 0%, #f8f9fd 44%, #eef2fa 100%);
  box-shadow: 0 28px 70px rgba(2, 37, 93, 0.14);
  padding: 38px;
  border: 1px solid rgba(2, 37, 93, 0.08);
  position: relative;
  overflow: hidden;
}
.ce-about-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(201, 154, 2, 0.22);
  pointer-events: none;
}
.ce-about-panel img {
  width: 100%;
  max-width: 430px;
  margin: 18px auto 32px;
  position: relative;
  z-index: 1;
}
.ce-panel-note {
  background: var(--ce-blue);
  color: #fff;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  z-index: 1;
}
.ce-panel-note strong,
.ce-panel-note span {
  display: block;
}
.ce-panel-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 8px;
}

.ce-services {
  background: var(--ce-soft);
}
.ce-section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 46px;
}
.ce-section-head .ce-eyebrow {
  justify-content: center;
}
.ce-section-head h2 {
  margin-top: 12px;
}
.ce-section-head p {
  margin: 16px 0 0;
  color: var(--ce-muted);
  font-size: 17px;
}
.ce-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ce-service-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px 26px 28px;
  box-shadow: 0 22px 55px rgba(2, 37, 93, 0.08);
  border: 1px solid rgba(2, 37, 93, 0.08);
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.ce-service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--ce-gold);
}
.ce-service-card.featured {
  background: linear-gradient(155deg, var(--ce-blue), var(--ce-blue-dark));
  color: #fff;
  transform: translateY(-12px);
}
.ce-service-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(201, 154, 2, 0.13);
  color: var(--ce-gold);
  font-weight: 900;
  margin-bottom: 22px;
}
.ce-service-card.featured .ce-service-number {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ce-gold-soft);
}
.ce-service-card h3 {
  margin: 0;
  color: var(--ce-blue);
  font-size: 23px;
  line-height: 1.16;
}
.ce-service-card.featured h3 {
  color: #fff;
}
.ce-service-card p {
  margin: 14px 0 18px;
  color: var(--ce-muted);
  font-size: 14px;
  line-height: 1.65;
}
.ce-service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}
.ce-service-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.ce-service-card li {
  color: #33415f;
  font-size: 13px;
  line-height: 1.45;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
}
.ce-service-card.featured li {
  color: rgba(255, 255, 255, 0.86);
}
.ce-service-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ce-gold);
  margin-top: 7px;
}

.ce-commitment {
  background: #fff;
}
.ce-commitment-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  align-items: center;
}
.ce-commitment h2 {
  margin-top: 12px;
}
.ce-commitment-copy {
  border-left: 4px solid var(--ce-gold);
  padding-left: 34px;
}
.ce-commitment-copy p {
  margin: 0;
  color: var(--ce-muted);
  font-size: 17px;
  line-height: 1.75;
}
.ce-mission-line {
  margin-top: 22px;
  color: var(--ce-blue);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 900;
}
.ce-why {
  padding-top: 0;
  background: #fff;
}
.ce-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 26px;
  align-items: stretch;
}
.ce-why-card {
  background: linear-gradient(135deg, var(--ce-blue), #082f70);
  color: #fff;
  border-radius: 32px;
  padding: 42px;
  min-height: 280px;
}
.ce-why-card h2 {
  color: #fff;
}
.ce-why-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}
.ce-why-list {
  display: grid;
  gap: 14px;
}
.ce-why-list div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--ce-soft);
  border: 1px solid rgba(2, 37, 93, 0.08);
  border-radius: 22px;
  padding: 22px;
  color: var(--ce-blue);
  font-weight: 800;
  line-height: 1.45;
}
.ce-why-list span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ce-gold);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.ce-contact {
  background: linear-gradient(180deg, var(--ce-soft), #fff);
}
.ce-contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}
.ce-contact-copy h2 {
  margin-top: 12px;
}
.ce-contact-copy p {
  color: var(--ce-muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 18px 0 24px;
}
.ce-phone {
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--ce-blue);
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(2, 37, 93, 0.18);
}
.ce-contact-form {
  background: #fff;
  border-radius: 32px;
  padding: 28px;
  border: 1px solid rgba(2, 37, 93, 0.08);
  box-shadow: 0 28px 70px rgba(2, 37, 93, 0.12);
}
.ce-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ce-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ce-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.ce-contact-form input,
.ce-contact-form select,
.ce-contact-form textarea {
  width: 100%;
  border: 1px solid #dfe6f2;
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  font-size: 14px;
  color: var(--ce-ink);
  background: #fbfcff;
  outline: none;
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}
.ce-contact-form input:focus,
.ce-contact-form select:focus,
.ce-contact-form textarea:focus {
  border-color: var(--ce-gold);
  box-shadow: 0 0 0 4px rgba(201, 154, 2, 0.13);
}
.ce-submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  background: var(--ce-gold);
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(201, 154, 2, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.ce-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(201, 154, 2, 0.32);
}

.ce-footer {
  background: var(--ce-blue-dark);
}
.ce-footer-logo {
  width: 240px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
}
.ce-footer .copyright {
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* Ajustes ligeros para que los bloques VRIM convivan con la marca CE */
.consulta-hero {
  padding-top: 58px;
}
.consulta-copy h1,
.consulta-copy h2 {
  color: var(--vrim-orange);
}
.membership-hero {
  position: relative;
}

.how-vrim-section .section-title::after,
.faq-section .section-title::after,
.benefits-vrim-section .section-title::after,
.cards-vrim-section .section-title::after {
  background: linear-gradient(90deg, var(--vrim-orange), var(--vrim-blue));
}

@media (max-width: 1100px) {
  .ce-navbar {
    gap: 18px;
  }
  .ce-logo img {
    width: 205px;
  }
  .ce-header .nav-links {
    gap: 16px;
    font-size: 12px;
  }
  .ce-services-grid {
    grid-template-columns: 1fr;
  }
  .ce-service-card.featured {
    transform: none;
  }
  .ce-about-grid,
  .ce-contact-grid,
  .ce-commitment-grid,
  .ce-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  #inicio,
  #membresias,
  #beneficios,
  #tarjetas,
  #como-funciona-vrim,
  #preguntas,
  #conocenos,
  #servicios-ce,
  #contacto {
    scroll-margin-top: 92px;
  }
  .ce-navbar {
    height: 82px;
  }
  .ce-logo img {
    width: 190px;
  }
  .ce-header .nav-links {
    align-items: flex-start;
  }
  .ce-nav-actions {
    display: none;
  }
  .ce-bridge-grid {
    grid-template-columns: 1fr;
  }
  .ce-bridge-actions {
    justify-content: flex-start;
  }
  .ce-section {
    padding: 72px 0;
  }
  .ce-stats {
    grid-template-columns: 1fr;
  }
  .ce-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1190px);
  }
  .ce-logo img {
    width: 165px;
  }
  .ce-bridge {
    padding: 52px 0;
  }
  .ce-bridge-card p,
  .ce-contact-copy p,
  .ce-commitment-copy p {
    font-size: 15px;
  }
  .ce-about-panel,
  .ce-contact-form,
  .ce-why-card {
    border-radius: 24px;
    padding: 24px;
  }
  .ce-commitment-copy {
    border-left: 0;
    padding-left: 0;
    border-top: 4px solid var(--ce-gold);
    padding-top: 24px;
  }
  .ce-btn {
    width: 100%;
  }
  .ce-footer-logo {
    width: 210px;
  }
}

/* =========================================================
   Iconos de WhatsApp y favicon
   ========================================================= */
.wa-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  object-fit: contain;
  flex: 0 0 auto;
}

.ce-whatsapp-btn {
  gap: 9px;
}

.ce-whatsapp-btn .wa-icon {
  width: 18px;
  height: 18px;
}

.ce-phone {
  gap: 10px;
}

.ce-phone .wa-icon {
  width: 23px;
  height: 23px;
}

.ce-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ce-submit .wa-icon {
  width: 21px;
  height: 21px;
}

.ce-footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
}

.ce-footer-whatsapp .wa-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 640px) {
  .ce-phone {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* =========================================================
   Corrección final botones Contacto: WhatsApp + Gmail
   ========================================================= */

.ce-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 14px;
  margin-top: 26px;
  align-items: stretch;
}

.ce-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.ce-contact-btn img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  flex: 0 0 auto;
}

.ce-contact-btn-whatsapp {
  background: var(--ce-blue);
  color: #ffffff;
  border: 2px solid var(--ce-blue);
  box-shadow: 0 16px 32px rgba(2, 37, 93, 0.18);
}

.ce-contact-btn-email {
  background: #ffffff;
  color: var(--ce-blue);
  border: 2px solid var(--ce-blue);
  box-shadow: 0 12px 26px rgba(2, 37, 93, 0.08);
}

.ce-contact-btn:hover {
  transform: translateY(-2px);
}

.ce-contact-btn-whatsapp:hover {
  background: var(--ce-gold);
  border-color: var(--ce-gold);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(201, 154, 2, 0.26);
}

.ce-contact-btn-email:hover {
  background: var(--ce-blue);
  color: #ffffff;
  border-color: var(--ce-blue);
  box-shadow: 0 18px 36px rgba(2, 37, 93, 0.18);
}

.ce-contact-email-text {
  margin: 16px 0 0;
  color: var(--ce-blue);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

/* Evita que el estilo viejo de .ce-phone afecte estos botones */
.ce-contact-actions .ce-phone,
.ce-contact-actions .ce-contact-link {
  display: inline-flex !important;
  width: auto !important;
}

/* Botón del formulario */
.ce-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ce-submit img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* Footer: acomoda los iconos de WhatsApp y Gmail */
.ce-footer-whatsapp,
.ce-footer-email {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
}

.ce-footer-whatsapp img,
.ce-footer-email img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.ce-footer-mail-text {
  word-break: break-word;
}

/* Responsive */
@media (max-width: 640px) {
  .ce-contact-actions {
    grid-template-columns: 1fr;
  }

  .ce-contact-btn {
    width: 100%;
  }

  .ce-contact-email-text {
    text-align: center;
  }
}

.required-mark {
  color: #c99a02;
  font-weight: 900;
}

.ce-contact-form input:required,
.ce-contact-form select:required {
  border-left: 4px solid rgba(201, 154, 2, 0.55);
}

.ce-contact-form input:required:valid,
.ce-contact-form select:required:valid {
  border-left-color: #02255d;
}

/* Igualar color de iconos en beneficios VRIM */
.benefits-vrim-section .benefit-icon {
  background: rgba(2, 37, 93, 0.08);
}

.benefits-vrim-section .benefit-icon img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(70%) saturate(1746%)
    hue-rotate(198deg) brightness(87%) contrast(103%);
}

/* Palomita en mensaje final de beneficios VRIM manteniendo posición original */
.all-benefits {
  width: fit-content;
  max-width: 100%;
  margin: 40px auto 0;
  padding: 14px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #122d5c;
  box-shadow: 0 16px 34px rgba(18, 45, 92, 0.09);
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.all-benefits img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.all-benefits span {
  display: inline-block;
}

@media (max-width: 640px) {
  .all-benefits {
    margin: 34px auto 0;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
  }

  .all-benefits img {
    width: 26px;
    height: 26px;
  }
}

/* =========================================================
   Tabla comparativa estilo VRIM azul
   ========================================================= */

.vrim-compare-section {
  background: #ffffff;
}

.vrim-board {
  position: relative;
  margin-top: 110px;
}

.vrim-board-inner {
  position: relative;
  background: #0f43b3;
  border-radius: 34px;
  padding: 22px 34px 28px;
  box-shadow: 0 24px 60px rgba(15, 67, 179, 0.18);
  overflow: hidden;
}

.vrim-board-cards {
  position: absolute;
  left: 50%;
  top: -118px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 150px;
  pointer-events: none;
}

.vrim-board-cards .card {
  position: absolute;
  width: 120px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.18));
}

.vrim-board-cards .card-plus {
  left: 16%;
  top: 8px;
  transform: rotate(-42deg);
}

.vrim-board-cards .card-black {
  left: 37%;
  top: 8px;
  transform: rotate(-28deg);
}

.vrim-board-cards .card-platino {
  left: 58%;
  top: 10px;
  transform: rotate(-18deg);
}

.vrim-board-cards .card-elite {
  right: 10%;
  top: 8px;
  transform: rotate(22deg);
}

.vrim-board-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffd84d;
  color: #0f2d5c;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 18px;
}

.vrim-badge-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0f43b3;
  color: #ffd84d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.vrim-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.vrim-table-pro {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: #ffffff;
}

.vrim-table-pro th,
.vrim-table-pro td {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
  vertical-align: middle;
}

.vrim-table-pro thead th {
  border-bottom: 0;
}

.vrim-head-pills th {
  padding-top: 0;
  padding-bottom: 18px;
}

.services-spacer {
  width: 270px;
}

.head-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 54px;
  padding: 10px 20px;
  background: #ffffff;
  color: #0f43b3;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.vrim-head-prices th {
  padding-top: 4px;
  padding-bottom: 28px;
}

.services-title {
  text-align: left !important;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.vrim-head-prices strong {
  display: block;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 4px;
}

.vrim-head-prices span {
  display: block;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.vrim-table-pro tbody td:first-child {
  width: 270px;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.vrim-table-pro tbody td:first-child strong {
  font-weight: 900;
}

.vrim-table-pro tbody td:first-child a {
  color: #ffffff;
  font-weight: 500;
  opacity: 0.95;
}

.vrim-table-pro tbody td:first-child small {
  font-size: 13px;
  opacity: 0.95;
}

.vrim-table-pro tbody td:not(:first-child) {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.status-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.status-icon.yes {
  background: #43e336;
  color: #0f43b3;
}

.status-icon.no {
  background: #ff6b5e;
  color: #0f43b3;
}

.vrim-cta-row td:first-child {
  font-weight: 900;
}

.vrim-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f43b3;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.vrim-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
  color: #0f43b3;
}

.vrim-extra-notes {
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .vrim-board-cards {
    top: -108px;
    max-width: 760px;
  }

  .vrim-board-cards .card {
    width: 108px;
  }
}

@media (max-width: 900px) {
  .vrim-board {
    margin-top: 90px;
  }

  .vrim-board-inner {
    padding: 20px 18px 24px;
    border-radius: 24px;
  }

  .vrim-board-cards {
    top: -84px;
    height: 110px;
    max-width: 620px;
  }

  .vrim-board-cards .card {
    width: 88px;
  }

  .head-pill {
    min-width: 150px;
    min-height: 48px;
    font-size: 15px;
  }

  .vrim-head-prices strong {
    font-size: 23px;
  }

  .vrim-head-prices span {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .vrim-board {
    margin-top: 72px;
  }

  .vrim-board-cards {
    display: none;
  }

  .vrim-board-inner {
    border-radius: 20px;
  }

  .vrim-board-badge {
    font-size: 13px;
    padding: 8px 14px;
  }

  .vrim-badge-check {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .vrim-table-pro {
    min-width: 920px;
  }
}

/* =========================================================
   CORRECCIÓN DEFINITIVA TARJETAS SOBRE TABLA VRIM
   Tarjetas alineadas sobre su botón correspondiente
   ========================================================= */

.vrim-board {
  --service-col: 290px;
  --board-pad-x: 34px;
  position: relative;
  margin-top: 150px;
  overflow: visible;
}

/* Bloque azul */
.vrim-board-inner {
  position: relative;
  z-index: 2;
  background: #0f43b3;
  border-radius: 34px;
  padding: 34px var(--board-pad-x) 28px;
  box-shadow: 0 24px 60px rgba(15, 67, 179, 0.18);
  overflow: hidden;
}

/* Badge alineado con los botones blancos */
.vrim-board-badge {
  position: absolute;
  top: 34px;
  left: var(--board-pad-x);
  z-index: 5;
  margin: 0;

  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffd84d;
  color: #0f2d5c;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 800;
}

/* El espacio de servicios debe coincidir en tabla y tarjetas */
.services-spacer,
.vrim-table-pro tbody td:first-child {
  width: var(--service-col);
}

/* Contenedor de tarjetas alineado con columnas reales */
.vrim-board-cards {
  position: absolute !important;
  left: var(--board-pad-x) !important;
  right: var(--board-pad-x) !important;
  top: -118px !important;

  width: auto !important;
  max-width: none !important;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  overflow: visible;

  display: grid !important;
  grid-template-columns: var(--service-col) repeat(4, minmax(0, 1fr));
  align-items: end;

  transform: none !important;
}

/* Reset total de posiciones viejas */
.vrim-board-cards .card {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;

  width: 178px;
  height: auto;
  justify-self: center;
  align-self: end;
  max-width: none;

  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.22));
}

/* Cada tarjeta arriba de su botón */
.vrim-board-cards .card-plus {
  grid-column: 2;
  transform: translateY(8px) rotate(-12deg) !important;
}

.vrim-board-cards .card-black {
  grid-column: 3;
  transform: translateY(6px) rotate(-10deg) !important;
}

.vrim-board-cards .card-platino {
  grid-column: 4;
  transform: translateY(6px) rotate(10deg) !important;
}

.vrim-board-cards .card-elite {
  grid-column: 5;
  transform: translateY(8px) rotate(14deg) !important;
}

/* Los botones blancos conservan su posición */
.vrim-head-pills th {
  padding-top: 0;
  padding-bottom: 18px;
}

.head-pill {
  min-width: 170px;
  min-height: 54px;
}

/* Responsive tablet */
@media (max-width: 1100px) {
  .vrim-board {
    --service-col: 250px;
    --board-pad-x: 24px;
    margin-top: 130px;
  }

  .vrim-board-cards {
    top: -100px !important;
    height: 130px;
  }

  .vrim-board-cards .card {
    width: 145px;
  }

  .head-pill {
    min-width: 145px;
    font-size: 15px;
  }
}

/* Responsive móvil: la tabla scrollea y ocultamos tarjetas para que no se rompa */
@media (max-width: 640px) {
  .vrim-board {
    margin-top: 40px;
  }

  .vrim-board-cards {
    display: none !important;
  }

  .vrim-board-inner {
    border-radius: 22px;
    padding: 24px 18px;
  }

  .vrim-board-badge {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 18px;
  }
}

/* =========================================================
   Parte final tabla VRIM como referencia original
   ========================================================= */

.detail-symbol {
  display: inline-block;
  color: #ffd84d;
  font-size: 16px;
  line-height: 1;
  margin-left: 4px;
  transform: translateY(-1px);
}

.detail-symbol.star {
  font-size: 17px;
}

.reembolso-text {
  display: block;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 2px;
}

.vrim-table-pro tbody td strong {
  font-weight: 900;
}

/* Fila final de compra */
.vrim-buy-row td {
  border-bottom: 0 !important;
  padding-top: 24px;
  padding-bottom: 8px;
}

.vrim-buy-row td:first-child {
  vertical-align: middle;
}

.msi-box {
  display: grid;
  gap: 3px;
  color: #ffd84d;
  text-align: left;
}

.msi-box span {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
}

.msi-box strong {
  display: block;
  color: #ffd84d;
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

/* Botón amarillo Comprar */
.vrim-buy-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 176px;
  min-height: 54px;
  padding: 8px 8px 8px 28px;
  border-radius: 999px;
  background: #ffd84d;
  color: #001f5c;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.vrim-buy-yellow span {
  width: 42px;
  height: 42px;
  border: 2px solid #003ba2;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #003ba2;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.vrim-buy-yellow:hover {
  background: #ffe36f;
  color: #001f5c;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

/* Detalle inferior fuera de la tabla */
.vrim-detail-text {
  max-width: 1120px;
  margin: 26px auto 0;
  color: #111111;
}

.vrim-detail-text h3 {
  margin: 0 0 14px;
  color: #111111;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.vrim-detail-text p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 10px;
  color: #1c2940;
  font-size: 13px;
  line-height: 1.65;
}

.vrim-detail-text p .detail-symbol {
  margin-left: 0;
  margin-top: 3px;
  flex: 0 0 auto;
}

.vrim-detail-text strong {
  color: #111111;
  font-weight: 800;
}

/* Ajuste para que el bloque azul cierre parecido a VRIM */
.vrim-board-inner {
  padding-bottom: 20px;
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
}

@media (max-width: 900px) {
  .vrim-buy-yellow {
    min-width: 150px;
    min-height: 48px;
    padding-left: 20px;
    font-size: 12px;
  }

  .vrim-buy-yellow span {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .msi-box span {
    font-size: 28px;
  }

  .msi-box strong {
    font-size: 19px;
  }
}

/* =========================================================
   Cómo funciona Vrim - diseño visual con iconos
   ========================================================= */

.how-vrim-section {
  background: #ffffff;
  padding: 96px 0 90px;
  overflow: hidden;
}

.how-vrim-section .section-title {
  color: #111111;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 70px;
  letter-spacing: -0.8px;
}

.vrim-steps-visual {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.vrim-step-visual {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.vrim-step-circle {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #f4cc3d;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  box-shadow: 0 18px 36px rgba(244, 204, 61, 0.28);
}

.step-number {
  color: #111111;
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 2px 3px 0 rgba(0, 43, 120, 0.18);
  z-index: 2;
}

.step-icon {
  position: absolute;
  right: -14px;
  bottom: -12px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #ffffff;
  display: grid;
  place-items: center;
  font-size: 32px;
  box-shadow: 0 16px 30px rgba(18, 45, 92, 0.16);
  transform: rotate(-8deg);
}

.vrim-step-card {
  width: 100%;
  min-height: 78px;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 14px;
  color: #003ba2;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 18px 38px rgba(18, 45, 92, 0.12);
  display: flex;
  align-items: center;
}

/* Variación sutil para que no se vean todos iguales */
.vrim-step-visual:nth-child(2) .step-icon {
  transform: rotate(10deg);
}

.vrim-step-visual:nth-child(3) .step-icon {
  transform: rotate(-4deg);
}

.vrim-step-visual:nth-child(4) .step-icon {
  transform: rotate(8deg);
}

.vrim-step-visual:nth-child(5) .step-icon {
  transform: rotate(-10deg);
}

/* Responsive */
@media (max-width: 1100px) {
  .vrim-steps-visual {
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 28px;
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .how-vrim-section {
    padding: 72px 0 70px;
  }

  .how-vrim-section .section-title {
    font-size: 30px;
    margin-bottom: 42px;
  }

  .vrim-steps-visual {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 34px;
  }

  .vrim-step-circle {
    width: 124px;
    height: 124px;
    margin-bottom: 26px;
  }

  .step-number {
    font-size: 52px;
  }

  .step-icon {
    width: 54px;
    height: 54px;
    font-size: 29px;
  }

  .vrim-step-card {
    text-align: center;
    justify-content: center;
    min-height: auto;
  }
}

/* =========================================================
   Márgenes móviles para secciones CE
   Alianza estratégica, Conócenos y Nuestro compromiso
   ========================================================= */

@media (max-width: 768px) {
  .ce-bridge .container,
  .ce-about .container,
  .ce-commitment .container {
    width: calc(100% - 48px);
    max-width: 1190px;
    margin-left: auto;
    margin-right: auto;
  }

  .ce-bridge-card,
  .ce-about-copy,
  .ce-commitment-grid {
    padding-left: 4px;
    padding-right: 4px;
  }

  .ce-about-panel {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .ce-bridge .container,
  .ce-about .container,
  .ce-commitment .container {
    width: calc(100% - 42px);
  }

  .ce-bridge {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .ce-about,
  .ce-commitment {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .ce-bridge-card h2,
  .ce-about-copy h2,
  .ce-commitment h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .ce-bridge-card p,
  .ce-about-copy p,
  .ce-commitment-copy p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* =========================================================
   Menú móvil: WhatsApp pegado a Contacto sin hueco
   ========================================================= */

@media (max-width: 900px) {
  .site-header.open .nav-links {
    display: flex !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 14px 16px 0 !important;
    gap: 0 !important;
    border-top: 1px solid #eef2fb;
    background: #ffffff;
  }

  .site-header.open .nav-links a {
    width: 100%;
    padding: 12px 0 !important;
    margin: 0 !important;
    line-height: 1.2;
  }

  .site-header.open .nav-links a:last-child {
    padding-bottom: 8px !important;
  }

  .site-header.open .ce-nav-actions,
  .site-header.open .nav-actions {
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 16px 16px !important;
    border: 0 !important;
    background: #ffffff !important;
    align-items: flex-start !important;
  }

  .site-header.open .ce-whatsapp-btn {
    display: inline-flex !important;
    margin: 0 !important;
    padding: 12px 24px !important;
    border-radius: 999px;
  }
}

/* =========================================================
   MENÚ MÓVIL DEFINITIVO
   Quita hueco entre Contacto y WhatsApp
   Quita fondo visible del sitio en los lados
   ========================================================= */

@media (max-width: 900px) {
  .site-header.open {
    background: #ffffff !important;
  }

  .site-header.open .navbar,
  .site-header.open .ce-navbar {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px 16px 0 !important;
    gap: 0 !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
    background: #ffffff !important;
  }

  .site-header.open .logo,
  .site-header.open .ce-logo {
    margin-bottom: 12px !important;
  }

  .site-header.open .menu-toggle {
    margin-bottom: 12px !important;
  }

  .site-header.open .nav-links {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    margin: 0 !important;
    padding: 14px 0 0 !important;
    gap: 0 !important;
    border-top: 1px solid #eef2fb !important;
    background: #ffffff !important;
  }

  .site-header.open .nav-links a {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 0 !important;
    line-height: 1.2 !important;
    background: #ffffff !important;
  }

  .site-header.open .nav-links a:last-child {
    padding-bottom: 0 !important;
  }

  .site-header.open .nav-actions,
  .site-header.open .ce-nav-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 8px 0 16px !important;
    gap: 0 !important;
    border: 0 !important;
    background: #ffffff !important;
    align-items: flex-start !important;
  }

  .site-header.open .ce-whatsapp-btn {
    display: inline-flex !important;
    width: auto !important;
    margin: 0 !important;
    padding: 12px 24px !important;
    border-radius: 999px !important;
  }
}

/* =========================================================
   Mobile: tarjetas VRIM en fichas
   Desktop conserva la tabla azul
   ========================================================= */

.vrim-mobile-cards {
  display: none;
}

@media (max-width: 768px) {
  /* Oculta la tabla en móvil */
  .vrim-table-wrap {
    display: none !important;
  }

  .vrim-board {
    margin-top: 40px;
  }

  .vrim-board-inner {
    padding: 24px 16px 22px !important;
    border-radius: 26px !important;
    overflow: visible;
  }

  .vrim-board-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: fit-content;
    margin: 0 auto 20px !important;
    font-size: 13px;
    padding: 8px 14px;
  }

  .vrim-mobile-cards {
    display: grid;
    gap: 18px;
  }

  .vrim-mobile-card {
    position: relative;
    background: #ffffff;
    color: #122d5c;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 18px 36px rgba(0, 20, 80, 0.18);
    overflow: hidden;
  }

  .vrim-mobile-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 78px;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 100%);
    z-index: 0;
  }

  .vrim-mobile-card > * {
    position: relative;
    z-index: 1;
  }

  .vrim-mobile-card-featured {
    box-shadow:
      0 20px 42px rgba(255, 216, 77, 0.22),
      inset 0 0 0 2px #ffd84d;
  }

  .vrim-mobile-tag {
    width: fit-content;
    margin: 0 0 12px auto;
    background: #ffd84d;
    color: #0f2d5c;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
  }

  .vrim-mobile-card-head {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
  }

  .vrim-mobile-card-head img {
    width: 112px;
    height: auto;
    filter: drop-shadow(0 12px 18px rgba(18, 45, 92, 0.22));
    transform: rotate(-6deg);
  }

  .vrim-mobile-card:nth-child(2) .vrim-mobile-card-head img {
    transform: rotate(5deg);
  }

  .vrim-mobile-card:nth-child(3) .vrim-mobile-card-head img {
    transform: rotate(-4deg);
  }

  .vrim-mobile-card:nth-child(4) .vrim-mobile-card-head img {
    transform: rotate(6deg);
  }

  .vrim-mobile-card-head h3 {
    margin: 0 0 6px;
    color: #003ba2;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 900;
  }

  .vrim-mobile-card-head strong {
    display: block;
    color: #122d5c;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
  }

  .vrim-mobile-card-head span {
    display: block;
    margin-top: 5px;
    color: #ff6b1a;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
  }

  .vrim-mobile-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid #e9effb;
  }

  .vrim-mobile-card li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 9px;
    padding: 11px 0;
    border-bottom: 1px solid #eef2fb;
    color: #334766;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
  }

  .vrim-mobile-card li::before {
    content: "✓";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #43e336;
    color: #0f43b3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    margin-top: 1px;
  }

  .vrim-mobile-card li strong {
    color: #122d5c;
    font-weight: 900;
  }

  .vrim-mobile-buy {
    width: 100%;
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 54px;
    padding: 8px 8px 8px 24px;
    border-radius: 999px;
    background: #ffd84d;
    color: #001f5c;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 14px 26px rgba(0, 20, 80, 0.14);
  }

  .vrim-mobile-buy span {
    width: 40px;
    height: 40px;
    border: 2px solid #003ba2;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #003ba2;
    font-size: 22px;
    line-height: 1;
  }

  .vrim-detail-text {
    width: calc(100% - 28px);
    margin: 24px auto 0;
  }

  .vrim-detail-text p {
    font-size: 12.5px;
    line-height: 1.6;
  }
}

@media (max-width: 420px) {
  .vrim-mobile-card {
    padding: 18px;
  }

  .vrim-mobile-card-head {
    grid-template-columns: 96px 1fr;
    gap: 12px;
  }

  .vrim-mobile-card-head img {
    width: 96px;
  }

  .vrim-mobile-card-head h3 {
    font-size: 18px;
  }

  .vrim-mobile-card-head strong {
    font-size: 21px;
  }

  .vrim-mobile-card li {
    font-size: 12.5px;
  }
}

/* =========================================================
   Ajuste fino desktop: alinear tarjeta 3 y 4 con sus botones
   ========================================================= */

@media (min-width: 769px) {
  .vrim-board {
    --service-col: 290px;
    --board-pad-x: 34px;
  }

  .vrim-board-cards {
    left: var(--board-pad-x) !important;
    right: var(--board-pad-x) !important;
    top: -118px !important;
    width: auto !important;
    max-width: none !important;
    height: 150px;
    transform: none !important;

    display: grid !important;
    grid-template-columns: var(--service-col) repeat(4, minmax(0, 1fr));
    align-items: end;
  }

  .vrim-board-cards .card {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    width: 178px;
    justify-self: center;
    align-self: end;
    max-width: none;
  }

  /* Plus y Black se quedan como ya están */
  .vrim-board-cards .card-plus {
    grid-column: 2;
    transform: translateX(0) translateY(8px) rotate(-12deg) !important;
  }

  .vrim-board-cards .card-black {
    grid-column: 3;
    transform: translateX(0) translateY(6px) rotate(-10deg) !important;
  }

  /* Ajuste de Platino */
  .vrim-board-cards .card-platino {
    grid-column: 4;
    transform: translateX(-10px) translateY(6px) rotate(-10deg) !important;
  }

  /* Ajuste de Elite */
  .vrim-board-cards .card-elite {
    grid-column: 5;
    transform: translateX(-18px) translateY(8px) rotate(12deg) !important;
  }
}

/* =========================================================
   Ajuste final: tarjeta Elite igual alineada que las demás
   ========================================================= */

@media (min-width: 769px) {
  .vrim-board-cards .card-elite {
    grid-column: 5;
    width: 178px;
    justify-self: center;
    align-self: end;

    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    transform: translateX(0) translateY(6px) rotate(-10deg) !important;
  }
}

/* =========================================================
   Navegación por apartados - Consultores & Excelencia
   ========================================================= */
.site-panel {
  display: none;
}
.site-panel.is-active {
  display: block;
  animation: cePanelIn 0.25s ease both;
}
@keyframes cePanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ce-header .nav-links a.is-active {
  color: var(--ce-gold);
  position: relative;
}
.ce-header .nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: var(--ce-gold);
}

/* Inicio corporativo */
.ce-home {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(201, 154, 2, 0.18),
      transparent 32%
    ),
    linear-gradient(135deg, #f7f9fd 0%, #ffffff 48%, #edf3ff 100%);
  padding: 78px 0 64px;
  overflow: hidden;
}
.ce-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 58px;
  align-items: center;
}
.ce-home-copy h1 {
  margin: 14px 0 20px;
  color: var(--ce-blue);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
  max-width: 850px;
}
.ce-home-copy p {
  margin: 0;
  color: var(--ce-muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 720px;
}
.ce-home-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.ce-btn-outline {
  color: var(--ce-blue);
  border: 2px solid rgba(2, 37, 93, 0.22);
  background: #fff;
}
.ce-btn-outline:hover {
  border-color: var(--ce-blue);
  background: var(--ce-blue);
  color: #fff;
}
.ce-home-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}
.ce-home-highlights article {
  min-height: 138px;
  padding: 21px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(2, 37, 93, 0.08);
  box-shadow: 0 18px 38px rgba(2, 37, 93, 0.08);
}
.ce-home-highlights strong {
  display: block;
  color: var(--ce-gold);
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.ce-home-highlights span {
  display: block;
  color: var(--ce-blue);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}
.ce-home-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.ce-home-visual::before {
  content: "";
  position: absolute;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ce-blue), var(--ce-blue-dark));
  box-shadow: 0 35px 80px rgba(2, 37, 93, 0.24);
}
.ce-home-logo-card {
  position: relative;
  z-index: 1;
  width: min(86%, 420px);
  padding: 44px 38px 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 70px rgba(1, 24, 61, 0.24);
  text-align: center;
}
.ce-home-logo-card img {
  width: min(100%, 310px);
  margin: 0 auto 26px;
}
.ce-home-logo-card span {
  display: inline-flex;
  justify-content: center;
  color: var(--ce-blue);
  font-size: 15px;
  font-weight: 800;
}
.ce-home-floating {
  position: absolute;
  z-index: 2;
  width: 174px;
  padding: 18px 18px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(2, 37, 93, 0.18);
  border: 1px solid rgba(2, 37, 93, 0.08);
}
.ce-home-floating strong {
  display: block;
  color: var(--ce-gold);
  font-size: 29px;
  line-height: 1;
  margin-bottom: 7px;
}
.ce-home-floating span {
  color: var(--ce-blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}
.ce-home-floating-one {
  top: 58px;
  left: 0;
}
.ce-home-floating-two {
  right: 0;
  bottom: 72px;
}
.ce-home-band {
  background: var(--ce-blue-dark);
  color: #fff;
  padding: 26px 0;
}
.ce-home-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ce-home-band-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ce-home-band-grid strong {
  color: var(--ce-gold-soft);
  font-size: 16px;
  white-space: nowrap;
}
.ce-home-band-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .ce-home-grid {
    grid-template-columns: 1fr;
  }
  .ce-home-visual {
    min-height: 460px;
  }
}
@media (max-width: 900px) {
  .ce-header .nav-links a.is-active::after {
    display: none;
  }
  .ce-home {
    min-height: auto;
    padding: 54px 0 48px;
  }
  .ce-home-copy h1,
  .ce-home-copy p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .ce-home .ce-eyebrow,
  .ce-home-actions {
    justify-content: center;
  }
  .ce-home-highlights,
  .ce-home-band-grid {
    grid-template-columns: 1fr;
  }
  .ce-home-highlights article {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .ce-home-copy h1 {
    font-size: 38px;
    letter-spacing: -0.035em;
  }
  .ce-home-copy p {
    font-size: 05px;
  }
  .ce-home-visual {
    min-height: 390px;
  }
  .ce-home-logo-card {
    width: 92%;
    padding: 34px 24px 28px;
    border-radius: 28px;
  }
  .ce-home-floating {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 270px;
    margin: 12px auto 0;
    text-align: center;
  }
  .ce-home-visual::before {
    width: 310px;
  }
}

/* =========================================================
   Slider principal horizontal - Inicio Consultores & Excelencia
   ========================================================= */
.ce-home-full-slider {
  position: relative;
  min-height: calc(100vh - 90px);
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ce-blue-dark);
}

.ce-home-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ce-blue-dark);
}

.ce-home-slider-track,
.ce-home-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ce-home-slide {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.9s ease,
    transform 6.5s ease;
  pointer-events: none;
}

.ce-home-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.ce-home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ce-home-full-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(1, 24, 61, 0.92) 0%,
      rgba(2, 37, 93, 0.78) 38%,
      rgba(2, 37, 93, 0.42) 68%,
      rgba(1, 24, 61, 0.22) 100%
    ),
    radial-gradient(circle at 18% 45%, rgba(201, 154, 2, 0.16), transparent 34%);
  pointer-events: none;
}

.ce-home-full-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(1, 24, 61, 0.52) 100%
  );
  pointer-events: none;
}

.ce-home-full-slider .ce-home-grid {
  position: relative;
  z-index: 2;
  width: min(1190px, calc(100% - 48px));
  min-height: calc(100vh - 90px);
  padding: 96px 0 78px;
  display: flex;
  align-items: center;
}

.ce-home-full-slider .ce-home-copy {
  width: min(100%, 720px);
  color: #ffffff;
}

.ce-home-full-slider .ce-eyebrow {
  color: var(--ce-gold-soft);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.ce-home-full-slider .ce-home-copy h1 {
  color: #ffffff;
  max-width: 820px;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.38);
}

.ce-home-full-slider .ce-home-copy p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
}

.ce-home-full-slider .ce-btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.ce-home-full-slider .ce-btn-outline:hover {
  background: #ffffff;
  color: var(--ce-blue);
  border-color: #ffffff;
}

.ce-home-full-slider .ce-home-highlights article {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.ce-home-full-slider .ce-home-highlights strong {
  color: var(--ce-gold-soft);
}

.ce-home-full-slider .ce-home-highlights span {
  color: rgba(255, 255, 255, 0.91);
}

.ce-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 38px;
  line-height: 1;
  font-family: Georgia, serif;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.ce-slider-arrow:hover {
  background: var(--ce-gold);
  border-color: var(--ce-gold);
  transform: translateY(-50%) scale(1.05);
}

.ce-slider-prev {
  left: 26px;
}

.ce-slider-next {
  right: 26px;
}

.ce-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 4;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateX(-50%);
}

.ce-slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition:
    width 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.ce-slider-dots button.is-active {
  width: 36px;
  background: var(--ce-gold);
}

@media (max-width: 1100px) {
  .ce-home-full-slider .ce-home-grid {
    display: flex;
    min-height: auto;
    padding: 84px 0 76px;
  }

  .ce-home-full-slider {
    min-height: 720px;
  }
}

@media (max-width: 900px) {
  .ce-home-full-slider {
    min-height: auto;
  }

  .ce-home-full-slider::before {
    background: linear-gradient(
      180deg,
      rgba(1, 24, 61, 0.9) 0%,
      rgba(2, 37, 93, 0.78) 54%,
      rgba(1, 24, 61, 0.86) 100%
    );
  }

  .ce-home-full-slider .ce-home-grid {
    width: min(100% - 32px, 1190px);
    padding: 78px 0 82px;
  }

  .ce-home-full-slider .ce-home-copy {
    width: 100%;
  }

  .ce-home-full-slider .ce-home-copy h1,
  .ce-home-full-slider .ce-home-copy p {
    text-align: center;
  }

  .ce-home-full-slider .ce-home-highlights {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .ce-slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .ce-slider-prev {
    left: 14px;
  }

  .ce-slider-next {
    right: 14px;
  }
}

@media (max-width: 640px) {
  .ce-home-full-slider .ce-home-grid {
    padding: 58px 0 76px;
  }

  .ce-home-full-slider .ce-home-copy h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  .ce-home-full-slider .ce-home-copy p {
    font-size: 14px;
    line-height: 1.65;
  }

  .ce-home-full-slider .ce-home-actions {
    width: 100%;
  }

  .ce-home-full-slider .ce-home-actions .ce-btn {
    width: 100%;
  }

  .ce-slider-arrow {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .ce-slider-arrow:hover {
    transform: scale(1.05);
  }

  .ce-slider-prev {
    left: 20px;
  }

  .ce-slider-next {
    right: 20px;
  }

  .ce-slider-dots {
    bottom: 33px;
  }
}

/* =========================================================
   Ajuste responsive móvil del slider principal
   Alcance: solo slider de inicio Consultores & Excelencia
   ========================================================= */
@media (max-width: 640px) {
  .ce-home-full-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .ce-home-bg-slider,
  .ce-home-slider-track {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .ce-home-slide {
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    transform: translateX(100%);
    transition:
      opacity 0.65s ease,
      transform 0.65s ease;
  }

  .ce-home-slide.is-active {
    transform: translateX(0);
  }

  .ce-home-slide img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 430px) {
  .ce-home-full-slider {
    min-height: 690px;
  }

  .ce-home-bg-slider,
  .ce-home-slider-track,
  .ce-home-slide {
    height: 100%;
  }
}

@media (max-width: 414px) {
  .ce-home-full-slider {
    min-height: 680px;
  }
}

@media (max-width: 390px) {
  .ce-home-full-slider {
    min-height: 670px;
  }
}

@media (max-width: 375px) {
  .ce-home-full-slider {
    min-height: 660px;
  }
}

@media (max-width: 360px) {
  .ce-home-full-slider {
    min-height: 650px;
  }
}

@media (max-width: 320px) {
  .ce-home-full-slider {
    min-height: 640px;
  }

  .ce-home-slide img {
    object-position: center center;
  }
}

/* =========================================================
   Ajuste móvil: slider sin recorte de imágenes
   Alcance exclusivo: slider principal Consultores & Excelencia
   ========================================================= */
@media (max-width: 640px) {
  .ce-home-full-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .ce-home-bg-slider,
  .ce-home-slider-track,
  .ce-home-slide {
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .ce-home-slide {
    left: 0;
    right: auto;
    opacity: 0;
    transform: translateX(100%);
    transition:
      opacity 0.65s ease,
      transform 0.65s ease;
  }

  .ce-home-slide.is-active {
    opacity: 1;
    transform: translateX(0);
  }

  .ce-home-slide img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-width: 0;
    object-fit: contain;
    object-position: center center;
    background: var(--ce-blue-dark);
  }
}

@media (max-width: 430px) {
  .ce-home-full-slider {
    min-height: 690px;
  }
}

@media (max-width: 414px) {
  .ce-home-full-slider {
    min-height: 680px;
  }
}

@media (max-width: 390px) {
  .ce-home-full-slider {
    min-height: 670px;
  }
}

@media (max-width: 375px) {
  .ce-home-full-slider {
    min-height: 660px;
  }
}

@media (max-width: 360px) {
  .ce-home-full-slider {
    min-height: 650px;
  }
}

@media (max-width: 320px) {
  .ce-home-full-slider {
    min-height: 640px;
  }

  .ce-home-slide img {
    object-fit: contain;
    object-position: center center;
  }
}

/* =========================================================
   Ajuste móvil: subir posición visual de imágenes del slider
   Alcance exclusivo: slider principal Consultores & Excelencia
   ========================================================= */
@media (max-width: 640px) {
  .ce-home-slide img {
    object-fit: contain;
    object-position: center top;
  }
}

@media (max-width: 430px) {
  .ce-home-slide img {
    object-position: center 8%;
  }
}

@media (max-width: 390px) {
  .ce-home-slide img {
    object-position: center 6%;
  }
}

@media (max-width: 360px) {
  .ce-home-slide img {
    object-position: center 4%;
  }
}

/* =========================================================
   Galería estática Conócenos - 3 imágenes horizontales
   ========================================================= */
.ce-about-static-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.ce-about-gallery-item {
  margin: 0;
  min-width: 0;
  height: clamp(240px, 28vw, 430px);
  overflow: hidden;
  position: relative;
}

.ce-about-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .ce-about-static-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ce-about-gallery-item {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .ce-about-gallery-item {
    height: 135px;
  }
}

/* =========================================================
   Ajuste final: reducir título principal del inicio
   Alcance: solo título "Fortalecemos organizaciones..."
   ========================================================= */
.ce-home-copy h1,
.ce-home-full-slider .ce-home-copy h1 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 760px;
}

@media (max-width: 900px) {
  .ce-home-copy h1,
  .ce-home-full-slider .ce-home-copy h1 {
    font-size: clamp(30px, 7vw, 44px);
    line-height: 1.1;
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .ce-home-copy h1,
  .ce-home-full-slider .ce-home-copy h1 {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 100%;
  }
}

/* =========================================================
   Inicio CE - Tarjetas de marketing estilo institucional
   Alcance exclusivo: panel de inicio
   ========================================================= */
.ce-home-strategy {
  width: min(100%, 1040px);
  margin-top: 42px;
}

.ce-home-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.ce-home-trust-strip article {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.ce-home-trust-strip strong {
  flex: 0 0 auto;
  color: var(--ce-gold-soft);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ce-home-trust-strip span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.ce-home-marketing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ce-home-marketing-card {
  position: relative;
  min-height: 254px;
  padding: 24px 22px 22px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.ce-home-marketing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--ce-gold);
}

.ce-home-marketing-card::after {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  right: -54px;
  bottom: -58px;
  border-radius: 50%;
  background: rgba(201, 154, 2, 0.12);
  pointer-events: none;
}

.ce-home-marketing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.26);
}

.ce-home-marketing-card.is-featured {
  background: linear-gradient(
    155deg,
    rgba(2, 37, 93, 0.96),
    rgba(1, 24, 61, 0.96)
  );
  border-color: rgba(244, 229, 179, 0.25);
}

.ce-card-kicker {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 154, 2, 0.12);
  color: var(--ce-gold);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ce-home-marketing-card.is-featured .ce-card-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ce-gold-soft);
}

.ce-home-marketing-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ce-blue);
  font-size: 20px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ce-home-marketing-card p {
  position: relative;
  z-index: 1;
  margin: 13px 0 0;
  color: #52617a;
  font-size: 13px;
  line-height: 1.62;
  text-shadow: none;
}

.ce-home-marketing-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--ce-blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.ce-home-marketing-card a::after {
  content: "›";
  color: var(--ce-gold);
  font-size: 20px;
  line-height: 0.8;
  transform: translateY(-1px);
  transition: transform 0.2s ease;
}

.ce-home-marketing-card a:hover::after {
  transform: translate(4px, -1px);
}

.ce-home-marketing-card.is-featured h3,
.ce-home-marketing-card.is-featured a {
  color: #ffffff;
}

.ce-home-marketing-card.is-featured p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1100px) {
  .ce-home-strategy {
    width: 100%;
  }

  .ce-home-trust-strip,
  .ce-home-marketing-cards {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

@media (max-width: 900px) {
  .ce-home-strategy,
  .ce-home-trust-strip,
  .ce-home-marketing-cards {
    margin-left: auto;
    margin-right: auto;
  }

  .ce-home-trust-strip article {
    justify-content: center;
    text-align: left;
  }

  .ce-home-marketing-card {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .ce-home-strategy {
    margin-top: 32px;
  }

  .ce-home-trust-strip article {
    min-height: auto;
    padding: 14px 15px;
    border-radius: 18px;
  }

  .ce-home-trust-strip strong {
    font-size: 23px;
  }

  .ce-home-trust-strip span {
    font-size: 11.5px;
  }

  .ce-home-marketing-card {
    min-height: auto;
    padding: 22px 20px;
    border-radius: 22px;
  }

  .ce-home-marketing-card h3 {
    font-size: 18px;
    letter-spacing: -0.03em;
  }

  .ce-home-marketing-card p {
    font-size: 12.5px;
    line-height: 1.55;
  }
}

/* =========================================================
   Rediseño INICIO: Nuestra visión estratégica por bloques
   Alcance: solo sección .ce-inicio-ceah
   ========================================================= */
.ce-inicio-ceah {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 7vw, 104px) 0;
  background:
    radial-gradient(circle at 8% 7%, rgba(201, 154, 2, 0.16), transparent 28%),
    radial-gradient(circle at 94% 30%, rgba(2, 37, 93, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fc 48%, #ffffff 100%);
}

.ce-inicio-ceah::before,
.ce-inicio-ceah::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.ce-inicio-ceah::before {
  width: 520px;
  height: 520px;
  left: -270px;
  top: 160px;
  border: 1px solid rgba(201, 154, 2, 0.22);
}

.ce-inicio-ceah::after {
  width: 420px;
  height: 420px;
  right: -250px;
  bottom: 90px;
  background: rgba(2, 37, 93, 0.055);
}

.ce-inicio-ceah .container {
  position: relative;
  z-index: 1;
}

.ce-inicio-kicker {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.ce-inicio-kicker .ce-eyebrow {
  justify-content: center;
  color: var(--ce-gold);
}

.ce-inicio-kicker .ce-eyebrow::before {
  display: none;
}

.ce-inicio-kicker .ce-eyebrow::after {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.ce-inicio-kicker p {
  margin: 16px auto 0;
  max-width: 760px;
  color: var(--ce-blue);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ce-inicio-hero-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 30px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(2, 37, 93, 0.96), rgba(1, 24, 61, 0.98)),
    var(--ce-blue);
  color: #ffffff;
  box-shadow: 0 30px 80px rgba(2, 37, 93, 0.22);
  overflow: hidden;
}

.ce-inicio-hero-block::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 154, 2, 0.24);
  border-radius: 26px;
  pointer-events: none;
}

.ce-inicio-hero-block::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 154, 2, 0.22), transparent 65%);
}

.ce-inicio-hero-copy,
.ce-inicio-indicadores {
  position: relative;
  z-index: 1;
}

.ce-inicio-hero-copy h2 {
  margin: 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.ce-inicio-hero-copy p {
  margin: 22px 0 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.78;
}

.ce-inicio-indicadores {
  display: grid;
  gap: 16px;
  align-content: center;
}

.ce-inicio-indicadores div {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.ce-inicio-indicadores div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.ce-inicio-indicadores strong {
  display: block;
  color: var(--ce-gold-soft);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ce-inicio-indicadores span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ce-inicio-vinculo {
  display: grid;
  grid-template-columns: 0.56fr 1fr;
  gap: 22px;
  align-items: center;
  margin: 26px 0;
  padding: 24px 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(2, 37, 93, 0.08);
  box-shadow: 0 18px 44px rgba(2, 37, 93, 0.08);
}

.ce-inicio-vinculo span {
  color: var(--ce-blue);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.ce-inicio-vinculo p {
  margin: 0;
  color: var(--ce-muted);
  font-size: 15px;
  line-height: 1.68;
}

.ce-inicio-ejes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.ce-inicio-ejes article {
  position: relative;
  min-height: 100%;
  padding: 28px 24px 26px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(2, 37, 93, 0.08);
  box-shadow: 0 20px 55px rgba(2, 37, 93, 0.09);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.ce-inicio-ejes article:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(2, 37, 93, 0.14);
}

.ce-inicio-ejes article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--ce-gold), #f0c64a);
}

.ce-inicio-eje-num {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(2, 37, 93, 0.08);
  color: var(--ce-blue);
  font-size: 18px;
  font-weight: 900;
}

.ce-inicio-eje-main h3 {
  margin: 0;
  color: var(--ce-blue);
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.ce-inicio-eje-main p {
  margin: 14px 0 20px;
  color: var(--ce-muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.ce-inicio-ejes ul,
.ce-inicio-soluciones-lista,
.ce-inicio-ruta-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ce-inicio-ejes ul {
  display: grid;
  gap: 10px;
}

.ce-inicio-ejes li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: #33415f;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 700;
}

.ce-inicio-ejes li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 28%, transparent 31%),
    var(--ce-gold);
}

.ce-inicio-ruta {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff, #f2f5fb);
  border: 1px solid rgba(2, 37, 93, 0.08);
  box-shadow: 0 20px 55px rgba(2, 37, 93, 0.08);
}

.ce-inicio-ruta-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.ce-inicio-ruta-head h3,
.ce-inicio-bloque-head h3,
.ce-inicio-soluciones-copy h3 {
  margin: 10px 0 0;
  color: var(--ce-blue);
  font-size: clamp(26px, 3.1vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.ce-inicio-ruta-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: ruta;
}

.ce-inicio-ruta-steps div {
  position: relative;
  padding: 54px 18px 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(2, 37, 93, 0.08);
}

.ce-inicio-ruta-steps div::before {
  counter-increment: ruta;
  content: "0" counter(ruta);
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--ce-gold);
  font-size: 13px;
  font-weight: 900;
}

.ce-inicio-ruta-steps span {
  display: block;
  color: var(--ce-blue);
  font-size: 16px;
  font-weight: 900;
}

.ce-inicio-ruta-steps p {
  margin: 8px 0 0;
  color: var(--ce-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.ce-inicio-bloque {
  margin-top: 28px;
  border-radius: 34px;
}

.ce-inicio-impacto {
  padding: clamp(30px, 4vw, 46px);
  background: var(--ce-blue);
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(2, 37, 93, 0.18);
  overflow: hidden;
}

.ce-inicio-impacto .ce-eyebrow,
.ce-inicio-impacto h3 {
  color: #ffffff;
}

.ce-inicio-impacto .ce-eyebrow {
  color: var(--ce-gold-soft);
}

.ce-inicio-impacto-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.ce-impacto-card {
  min-height: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.ce-impacto-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(244, 229, 179, 0.34);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.16);
}

.ce-impacto-img {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.ce-impacto-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 24, 61, 0.06) 0%,
    rgba(1, 24, 61, 0.44) 100%
  );
  pointer-events: none;
}

.ce-impacto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.32s ease;
}

.ce-impacto-card:hover .ce-impacto-img img {
  transform: scale(1.08);
}

.ce-impacto-content {
  flex: 1;
  padding: 22px 20px 24px;
}

.ce-inicio-impacto-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: rgba(201, 154, 2, 0.18);
  color: var(--ce-gold-soft);
  font-weight: 900;
}

.ce-inicio-impacto-grid strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
}

.ce-inicio-impacto-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12.5px;
  line-height: 1.58;
}

.ce-inicio-soluciones {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 4vw, 46px);
  background: #ffffff;
  border: 1px solid rgba(2, 37, 93, 0.08);
  box-shadow: 0 24px 60px rgba(2, 37, 93, 0.1);
}

.ce-inicio-soluciones-copy p {
  margin: 18px 0 0;
  color: var(--ce-muted);
  font-size: 15px;
  line-height: 1.72;
}

.ce-inicio-soluciones-lista {
  display: grid;
  gap: 14px;
}

.ce-inicio-soluciones-lista div {
  position: relative;
  padding: 20px 20px 20px 64px;
  border-radius: 22px;
  background: var(--ce-soft);
  border: 1px solid rgba(2, 37, 93, 0.08);
}

.ce-inicio-soluciones-lista div::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 27%, transparent 30%),
    var(--ce-gold);
}

.ce-inicio-soluciones-lista strong {
  display: block;
  color: var(--ce-blue);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.ce-inicio-soluciones-lista span {
  display: block;
  margin-top: 5px;
  color: var(--ce-muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.ce-inicio-cierre {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 32px;
  background: linear-gradient(135deg, var(--ce-gold), #e6c058);
  box-shadow: 0 24px 60px rgba(201, 154, 2, 0.2);
}

.ce-inicio-cierre p {
  margin: 0;
  color: #1b2437;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.ce-inicio-cierre strong {
  color: var(--ce-blue-dark);
  font-weight: 900;
}

.ce-inicio-cierre .ce-btn-gold {
  background: var(--ce-blue);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(2, 37, 93, 0.18);
}

.ce-inicio-cierre .ce-btn-gold:hover {
  background: var(--ce-blue-dark);
  color: #ffffff;
}

@media (max-width: 1100px) {
  .ce-inicio-ejes,
  .ce-inicio-impacto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ce-inicio-ruta-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ce-inicio-hero-block,
  .ce-inicio-vinculo,
  .ce-inicio-soluciones,
  .ce-inicio-cierre {
    grid-template-columns: 1fr;
  }

  .ce-inicio-ruta-head {
    display: block;
  }

  .ce-inicio-indicadores {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ce-inicio-indicadores div {
    min-height: 116px;
    padding: 20px 16px;
  }

  .ce-inicio-cierre .ce-btn {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .ce-inicio-ceah {
    padding: 54px 0;
  }

  .ce-inicio-hero-block,
  .ce-inicio-ruta,
  .ce-inicio-impacto,
  .ce-inicio-soluciones,
  .ce-inicio-cierre {
    border-radius: 24px;
  }

  .ce-inicio-hero-block {
    padding: 28px 22px;
  }

  .ce-inicio-hero-block::before {
    inset: 10px;
    border-radius: 18px;
  }

  .ce-inicio-hero-copy p,
  .ce-inicio-vinculo p,
  .ce-inicio-soluciones-copy p,
  .ce-inicio-cierre p {
    font-size: 13px;
    line-height: 1.65;
  }

  .ce-inicio-indicadores,
  .ce-inicio-ejes,
  .ce-inicio-impacto-grid,
  .ce-inicio-ruta-steps {
    grid-template-columns: 1fr;
  }

  .ce-inicio-vinculo {
    padding: 22px 20px;
  }

  .ce-inicio-ejes article {
    border-radius: 24px;
    padding: 26px 22px 24px;
  }

  .ce-impacto-card {
    min-height: auto;
  }

  .ce-impacto-img {
    aspect-ratio: 16 / 8.5;
  }

  .ce-inicio-soluciones-lista div {
    padding: 18px 18px 18px 56px;
  }

  .ce-inicio-cierre .ce-btn {
    width: 100%;
  }
}

/* =========================================================
   Mejora visual - Bloque Conexión estratégica en Inicio
   ========================================================= */
.ce-inicio-vinculo {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
  margin: 34px 0 38px;
  padding: 34px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 154, 2, 0.16), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(2, 37, 93, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fd 46%, #eef3fb 100%);
  border: 1px solid rgba(2, 37, 93, 0.12);
  box-shadow: 0 28px 72px rgba(2, 37, 93, 0.13);
  isolation: isolate;
}

.ce-inicio-vinculo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 154, 2, 0.2);
  border-radius: 26px;
  pointer-events: none;
  z-index: -1;
}

.ce-inicio-vinculo::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -76px;
  border-radius: 50%;
  background: rgba(201, 154, 2, 0.16);
  z-index: -1;
}

.ce-inicio-vinculo-copy {
  position: relative;
  z-index: 2;
  padding: 12px 0 12px 12px;
}

.ce-inicio-vinculo-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ce-gold), var(--ce-blue));
  box-shadow: 0 10px 22px rgba(201, 154, 2, 0.24);
}

.ce-inicio-vinculo .ce-vinculo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 15px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(2, 37, 93, 0.08);
  color: var(--ce-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ce-inicio-vinculo .ce-vinculo-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ce-gold);
  box-shadow: 0 0 0 5px rgba(201, 154, 2, 0.16);
}

.ce-inicio-vinculo-copy h3 {
  margin: 0;
  max-width: 520px;
  color: var(--ce-blue);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.ce-inicio-vinculo-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #42516a;
  font-size: 16px;
  line-height: 1.72;
}

.ce-vinculo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ce-inicio-vinculo .ce-vinculo-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ce-blue);
  border: 1px solid rgba(2, 37, 93, 0.1);
  box-shadow: 0 10px 22px rgba(2, 37, 93, 0.07);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.ce-inicio-vinculo-img {
  position: relative;
  z-index: 2;
  margin: 0;
  min-height: 330px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 52px rgba(2, 37, 93, 0.2);
  transform: rotate(0deg);
}

.ce-inicio-vinculo-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 37, 93, 0.4), transparent 52%),
    linear-gradient(180deg, transparent 58%, rgba(2, 37, 93, 0.34));
  z-index: 1;
  pointer-events: none;
}

.ce-inicio-vinculo-img::after {
  content: "Alianzas que impulsan decisiones";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 44px);
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ce-blue);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(2, 37, 93, 0.16);
}

.ce-inicio-vinculo-img img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.28s ease;
}

.ce-inicio-vinculo:hover .ce-inicio-vinculo-img img {
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .ce-inicio-vinculo {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px;
  }

  .ce-inicio-vinculo-copy {
    padding-left: 14px;
  }

  .ce-inicio-vinculo-img {
    min-height: 280px;
    transform: none;
  }

  .ce-inicio-vinculo-img img {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .ce-inicio-vinculo {
    margin: 28px 0 32px;
    padding: 22px;
    border-radius: 26px;
  }

  .ce-inicio-vinculo::before {
    inset: 10px;
    border-radius: 20px;
  }

  .ce-inicio-vinculo-copy {
    padding-left: 12px;
  }

  .ce-inicio-vinculo-copy h3 {
    font-size: 30px;
    line-height: 1.08;
  }

  .ce-inicio-vinculo-copy p {
    font-size: 13px;
    line-height: 1.65;
  }

  .ce-vinculo-tags {
    gap: 8px;
  }

  .ce-inicio-vinculo .ce-vinculo-tags span {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 11px;
  }

  .ce-inicio-vinculo-img,
  .ce-inicio-vinculo-img img {
    min-height: 230px;
  }

  .ce-inicio-vinculo-img {
    border-radius: 22px;
  }

  .ce-inicio-vinculo-img::after {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    font-size: 11px;
    border-radius: 16px;
  }
}

/* =========================================================
   Servicios - imagen programada: visión en resultados
   ========================================================= */
.ce-resultados-vision-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: #f6f9fd;
  overflow: hidden;
}

.ce-resultados-vision-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.ce-resultados-vision-art {
  position: relative;
  min-height: clamp(520px, 55vw, 820px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.82) 36%,
      rgba(230, 239, 250, 0.36) 58%,
      rgba(1, 24, 61, 0.2) 100%
    ),
    radial-gradient(
      circle at 72% 22%,
      rgba(81, 192, 255, 0.18),
      transparent 24%
    ),
    url("assets/img/imagen10.png") center center / cover no-repeat;
}

.ce-resultados-vision-art::before {
  content: "";
  position: absolute;
  left: -11%;
  bottom: -18%;
  width: 49%;
  height: 66%;
  background:
    linear-gradient(
      132deg,
      rgba(2, 37, 93, 0.98) 0%,
      rgba(2, 37, 93, 0.98) 51%,
      transparent 51%
    ),
    linear-gradient(
      145deg,
      transparent 46%,
      rgba(62, 103, 217, 0.48) 46% 58%,
      transparent 58%
    ),
    linear-gradient(
      122deg,
      transparent 36%,
      rgba(255, 255, 255, 0.64) 36% 43%,
      transparent 43%
    );
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
}

.ce-resultados-vision-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 142px;
  background: linear-gradient(
    90deg,
    rgba(2, 37, 93, 0.96),
    rgba(2, 37, 93, 0.74),
    rgba(2, 37, 93, 0.48)
  );
  z-index: 3;
}

.ce-resultados-copy {
  position: relative;
  z-index: 4;
  width: min(47%, 720px);
  padding: clamp(44px, 6vw, 92px) 0 190px clamp(28px, 5.2vw, 86px);
}

.ce-resultados-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--ce-blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.ce-resultados-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: var(--ce-gold);
}

.ce-resultados-copy h2 {
  margin: 0;
  color: #061b48;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.3vw, 104px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.ce-resultados-copy h2 span,
.ce-resultados-copy h2 strong {
  display: block;
}

.ce-resultados-copy h2 span {
  font-weight: 500;
}

.ce-resultados-copy h2 strong {
  color: #0b45af;
  font-weight: 700;
}

.ce-resultados-divider {
  width: min(260px, 64%);
  height: 3px;
  margin: 30px 0 28px;
  background: linear-gradient(
    90deg,
    #061b48 0 44%,
    rgba(6, 27, 72, 0.14) 44% 92%,
    #0b45af 92% 100%
  );
  border-radius: 99px;
}

.ce-resultados-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 0;
  max-width: 610px;
}

.ce-resultados-pill {
  min-width: 0;
  padding: 0 16px;
  text-align: center;
  border-right: 1px solid rgba(2, 37, 93, 0.16);
}

.ce-resultados-pill:first-child {
  padding-left: 0;
}

.ce-resultados-pill:last-child {
  border-right: 0;
  padding-right: 0;
}

.ce-resultados-pill strong,
.ce-resultados-pill small {
  display: block;
  color: #08357e;
  text-transform: uppercase;
}

.ce-resultados-pill strong {
  margin-top: 10px;
  font-size: clamp(10px, 0.95vw, 14px);
  line-height: 1.1;
  font-weight: 900;
}

.ce-resultados-pill small {
  margin-top: 4px;
  font-size: clamp(9px, 0.82vw, 12px);
  line-height: 1.15;
  font-weight: 700;
}

.ce-pill-icon {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 52px;
  color: #0b45af;
}

.ce-icon-target {
  border: 4px solid currentColor;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 7px #f7fbff,
    inset 0 0 0 11px currentColor;
}

.ce-icon-target::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 4px;
  right: -8px;
  top: 12px;
  background: currentColor;
  transform: rotate(-36deg);
  border-radius: 99px;
}

.ce-icon-growth::before,
.ce-icon-growth::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 8px;
  height: 18px;
  background: currentColor;
  box-shadow:
    13px -7px 0 currentColor,
    26px -18px 0 currentColor;
}

.ce-icon-growth::after {
  left: 23px;
  bottom: 29px;
  width: 23px;
  height: 23px;
  background: none;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  box-shadow: none;
  transform: rotate(3deg);
}

.ce-icon-team::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  width: 13px;
  height: 13px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow:
    24px 0 0 -3px #f7fbff,
    24px 0 0 0 currentColor;
}

.ce-icon-team::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 9px;
  width: 39px;
  height: 20px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}

.ce-icon-idea::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 6px;
  width: 22px;
  height: 26px;
  border: 4px solid currentColor;
  border-radius: 50% 50% 45% 45%;
}

.ce-icon-idea::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 7px;
  width: 17px;
  height: 11px;
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
}

.ce-resultados-scene {
  position: absolute;
  inset: 0 0 142px 39%;
  z-index: 2;
  overflow: hidden;
}

.ce-window-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 0 10%,
      rgba(2, 37, 93, 0.12) 10.3% 10.7%,
      transparent 11% 36%,
      rgba(2, 37, 93, 0.12) 36.4% 36.8%,
      transparent 37% 66%,
      rgba(2, 37, 93, 0.12) 66.4% 66.8%,
      transparent 67%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.ce-screen-card {
  position: absolute;
  right: 8%;
  top: 9%;
  width: clamp(150px, 16vw, 245px);
  min-height: clamp(120px, 12vw, 190px);
  padding: 24px;
  background: linear-gradient(145deg, #02255d, #061b48);
  color: #fff;
  box-shadow: 0 24px 50px rgba(2, 37, 93, 0.24);
}

.ce-screen-card span,
.ce-screen-card strong {
  display: block;
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.45;
}

.ce-screen-card span {
  color: rgba(255, 255, 255, 0.56);
}

.ce-screen-card strong {
  color: #ffffff;
  font-weight: 900;
}

.ce-chart-line {
  position: relative;
  height: 72px;
  margin-top: 16px;
  background:
    linear-gradient(90deg, rgba(81, 192, 255, 0.14) 1px, transparent 1px) 0 0 /
      22px 100%,
    linear-gradient(180deg, rgba(81, 192, 255, 0.12) 1px, transparent 1px) 0 0 /
      100% 18px;
}

.ce-chart-line::before {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 14px;
  width: 84%;
  height: 42px;
  clip-path: polygon(
    0 70%,
    15% 48%,
    28% 60%,
    43% 34%,
    56% 44%,
    72% 16%,
    100% 0,
    100% 9%,
    72% 26%,
    56% 54%,
    43% 44%,
    28% 72%,
    15% 58%,
    0 82%
  );
  background: #51c0ff;
}

.ce-meeting-table {
  position: absolute;
  left: 13%;
  right: 7%;
  bottom: 7%;
  height: 28%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(225, 235, 247, 0.92)
  );
  border-radius: 55% 45% 0 0 / 38% 38% 0 0;
  box-shadow: 0 -10px 34px rgba(2, 37, 93, 0.1);
  transform: perspective(800px) rotateX(18deg);
}

.ce-laptop {
  position: absolute;
  left: 21%;
  bottom: 22%;
  width: 21%;
  height: 13%;
  background: linear-gradient(145deg, #d7dce3, #ffffff);
  border-radius: 12px 12px 3px 3px;
  transform: skewX(-8deg);
  box-shadow: 0 16px 22px rgba(2, 37, 93, 0.16);
}

.ce-laptop::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -18px;
  height: 18px;
  background: #b7c2d1;
  border-radius: 0 0 14px 14px;
}

.ce-document {
  position: absolute;
  width: 14%;
  height: 9%;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 18px rgba(2, 37, 93, 0.1);
}

.ce-document::before {
  content: "";
  position: absolute;
  inset: 15px 14px auto;
  height: 3px;
  background: #0b45af;
  box-shadow:
    0 9px 0 rgba(11, 69, 175, 0.35),
    0 18px 0 rgba(201, 154, 2, 0.55);
}

.ce-document-one {
  right: 21%;
  bottom: 21%;
  transform: rotate(6deg);
}

.ce-document-two {
  right: 7%;
  bottom: 16%;
  transform: rotate(-5deg);
}

.ce-person {
  position: absolute;
  bottom: 24%;
  width: clamp(78px, 11vw, 170px);
  height: clamp(160px, 22vw, 310px);
  border-radius: 46% 46% 18% 18%;
  background: linear-gradient(145deg, #102e5c, #061b48);
  box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.02);
}

.ce-person::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -17%;
  width: 45%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(145deg, #c98962, #f0c1a0);
  box-shadow: 0 -8px 0 #31201a inset;
}

.ce-person::after {
  content: "";
  position: absolute;
  left: 32%;
  top: 18%;
  width: 36%;
  height: 44%;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, #ffffff, #e9eef7);
}

.ce-person-one {
  left: 19%;
  transform: rotate(-8deg) scale(0.9);
}

.ce-person-two {
  left: 38%;
  transform: rotate(2deg) scale(1.02);
}

.ce-person-three {
  left: 55%;
  bottom: 28%;
  background: linear-gradient(145deg, #f4efe9, #ffffff);
  transform: rotate(4deg) scale(0.96);
}

.ce-person-three::after {
  background: linear-gradient(180deg, #0b1b32, #122d5c);
}

.ce-person-four {
  right: 8%;
  transform: rotate(9deg) scale(1.05);
}

.ce-resultados-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  min-height: 142px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 22px clamp(24px, 5vw, 88px);
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(2, 37, 93, 0.95),
    rgba(2, 37, 93, 0.72),
    rgba(2, 37, 93, 0.48)
  );
}

.ce-resultados-bottom > div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.ce-resultados-bottom > div:first-child {
  padding-left: 0;
}

.ce-resultados-bottom > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.ce-resultados-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(12px, 1.16vw, 17px);
  line-height: 1.32;
  font-weight: 500;
  text-transform: uppercase;
}

.ce-resultados-bottom strong {
  display: block;
  font-weight: 900;
}

.ce-bottom-icon {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  color: #ffffff;
}

.ce-bottom-shield {
  border: 3px solid currentColor;
  border-radius: 18px 18px 24px 24px;
  clip-path: polygon(50% 0, 92% 17%, 85% 76%, 50% 100%, 15% 76%, 8% 17%);
}

.ce-bottom-shield::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 19px;
  height: 10px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.ce-bottom-handshake::before,
.ce-bottom-handshake::after {
  content: "";
  position: absolute;
  top: 21px;
  width: 30px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 8px;
  transform: rotate(35deg);
}

.ce-bottom-handshake::before {
  left: 3px;
}

.ce-bottom-handshake::after {
  right: 3px;
  transform: rotate(-35deg);
}

.ce-bottom-results::before {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 8px;
  width: 8px;
  height: 18px;
  background: currentColor;
  box-shadow:
    14px -8px 0 currentColor,
    28px -20px 0 currentColor;
}

.ce-bottom-results::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 7px;
  width: 25px;
  height: 25px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

@media (max-width: 1100px) {
  .ce-resultados-copy {
    width: 55%;
  }

  .ce-resultados-scene {
    left: 44%;
  }

  .ce-resultados-pill-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 22px 0;
    max-width: 430px;
  }

  .ce-resultados-pill:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .ce-resultados-vision-art {
    min-height: auto;
    padding-bottom: 0;
  }

  .ce-resultados-copy {
    width: 100%;
    padding: 46px 24px 310px;
    text-align: center;
  }

  .ce-resultados-kicker,
  .ce-resultados-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .ce-resultados-pill-grid {
    margin: 0 auto;
  }

  .ce-resultados-scene {
    inset: auto 0 142px 0;
    height: 330px;
    opacity: 0.9;
  }

  .ce-screen-card {
    right: 5%;
    top: 9%;
  }

  .ce-resultados-bottom {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 22px 24px;
  }

  .ce-resultados-bottom > div {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding: 18px 0;
  }

  .ce-resultados-bottom > div:last-child {
    border-bottom: 0;
  }

  .ce-resultados-vision-art::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .ce-resultados-copy {
    padding: 40px 18px 275px;
  }

  .ce-resultados-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ce-resultados-pill {
    padding: 0 10px;
  }

  .ce-pill-icon {
    width: 44px;
    height: 44px;
  }

  .ce-resultados-scene {
    height: 285px;
  }

  .ce-person {
    width: 72px;
    height: 148px;
  }

  .ce-screen-card {
    width: 138px;
    min-height: 110px;
    padding: 16px;
  }

  .ce-bottom-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }
}

/* Fondo real del bloque de servicios */
.ce-resultados-vision-art {
  background-position: center center;
}

@media (max-width: 900px) {
  .ce-resultados-vision-art {
    background-position: 62% center;
  }
}

@media (max-width: 640px) {
  .ce-resultados-vision-art {
    background-position: 68% center;
  }
}

/* =========================================================
   Servicios: fondo real + solo textos e iconos del lado izquierdo
   ========================================================= */
.ce-resultados-vision-art {
  min-height: clamp(520px, 54vw, 780px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 33%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(1, 24, 61, 0.08) 100%
    ),
    url("assets/img/imagen10.png") center center / cover no-repeat !important;
}

.ce-resultados-vision-art::before,
.ce-resultados-vision-art::after,
.ce-resultados-scene,
.ce-resultados-bottom {
  display: none !important;
}

.ce-resultados-copy {
  width: min(48%, 700px);
  padding: clamp(46px, 6vw, 92px) 0 clamp(46px, 6vw, 92px)
    clamp(28px, 5.2vw, 86px);
}

@media (max-width: 900px) {
  .ce-resultados-vision-art {
    min-height: auto;
    display: block;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.9) 46%,
        rgba(255, 255, 255, 0.68) 100%
      ),
      url("assets/img/imagen10.png") 62% center / cover no-repeat !important;
  }

  .ce-resultados-copy {
    width: 100%;
    padding: 52px 24px 58px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .ce-resultados-copy {
    padding: 44px 18px 50px;
  }
}

/* =========================================================
   Ajuste final solicitado:
   menos degradado blanco + título más compacto
   Alcance: bloque Servicios que convierten visión en resultados
   ========================================================= */
.ce-resultados-vision-art {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(255, 255, 255, 0.66) 31%,
      rgba(255, 255, 255, 0.28) 50%,
      rgba(1, 24, 61, 0.05) 100%
    ),
    url("assets/img/imagen10.png") center center / cover no-repeat !important;
}

.ce-resultados-copy h2 {
  font-size: clamp(34px, 4.8vw, 74px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
  max-width: 620px;
}

@media (max-width: 900px) {
  .ce-resultados-vision-art {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.84) 0%,
        rgba(255, 255, 255, 0.68) 45%,
        rgba(255, 255, 255, 0.44) 100%
      ),
      url("assets/img/imagen10.png") 62% center / cover no-repeat !important;
  }

  .ce-resultados-copy h2 {
    font-size: clamp(30px, 8vw, 48px) !important;
    line-height: 1.08 !important;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .ce-resultados-copy h2 {
    font-size: 30px !important;
    line-height: 1.12 !important;
  }
}

/* =========================================================
   Ajuste final solicitado: slider estable
   ========================================================= */
.ce-home-slide {
  opacity: 0;
  z-index: 0;
  transform: translateX(100%);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
  will-change: opacity, transform;
}

.ce-home-slide.is-active {
  opacity: 1;
  z-index: 1;
  transform: translateX(0);
}

.ce-home-slide img {
  will-change: transform;
}

.ce-home-slide.is-active img {
  animation: ceSlideImageLife 5.2s ease both;
}

@keyframes ceSlideImageLife {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.06);
  }
}

/* =========================================================
   Nuestro compromiso: dejar diseño original y solo ajustar imagen al texto
   ========================================================= */
.ce-commitment-grid {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  align-items: center;
}

.ce-commitment-media,
.ce-commitment-grid > div:first-child {
  margin: 0;
  align-self: center;
  overflow: hidden;
  background: transparent;
  border-radius: 10%;
}

.ce-commitment-media::after {
  display: none;
  content: none;
}

.ce-commitment-media img,
.ce-commitment-grid > div:first-child img {
  width: 100%;
  height: clamp(340px, 34vw, 455px);
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ce-commitment-copy {
  min-height: 0;
  display: block;
  border-left: 4px solid var(--ce-gold);
  padding-left: 34px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ce-commitment-copy p {
  margin: 0;
}

@media (max-width: 1100px) {
  .ce-commitment-grid {
    grid-template-columns: 1fr;
  }

  .ce-commitment-media img,
  .ce-commitment-grid > div:first-child img {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .ce-home-slide.is-active img {
    animation: none;
  }

  .ce-commitment-media img,
  .ce-commitment-grid > div:first-child img {
    height: 240px;
  }

  .ce-commitment-copy {
    border-left: 0;
    padding-left: 0;
    border-top: 4px solid var(--ce-gold);
    padding-top: 24px;
  }
}
