/* =========================================================
   PROYECTO: Simplifact
   TEMA: Landing page para sistema de facturación electrónica
   DESCRIPCIÓN: Estilos generales, componentes y diseño responsivo
   DESARROLLADO POR: Dora Nely Vega Gonzalez
   PUESTO: Desarrolladora Frontend / Full Stack
   TECNOLOGÍAS: HTML5, CSS3, Bootstrap 5 y JavaScript
   FECHA DE CREACIÓN: Julio 2026
   ÚLTIMA ACTUALIZACIÓN: Julio 2026
   VERSIÓN: 1.0.0
========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  padding: 0.85rem 0;
}

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: #22345c !important;
  padding: 0.65rem 0.75rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.btn {
  font-weight: 700;
  transition: 0.25s;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 4vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: var(--light);
}

.hero-copy h1 strong {
  color: var(--primary);
  font-weight: 800;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 1rem;
}

.hero-words {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--purple);
  display: flex;
  gap: 0.7rem;
  margin: 1.4rem 0;
}

.hero-words b {
  color: #a8b0c4;
}

.hero-copy .lead {
  max-width: 600px;
  color: var(--light);
  font-size: 1.05rem;
}

.hero-trust {
  font-size: 0.88rem;
  font-weight: 600;
  color: #506081;
}

.hero-trust i {
  color: #22a06b;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-visual {
  position: relative;
  padding: 50px 20px;
}

.dashboard-window {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  transform: rotate(1.5deg);
  position: relative;
  z-index: 2;
}

.dashboard-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.dashboard-system-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: contain;
  object-position: center;
  max-height: 390px;
  border-radius: 0 0 18px 18px;
}

.window-top {
  height: 42px;
  background: #f2f5fa;
  padding: 14px 18px;
}

.window-top span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd6e3;
  margin-right: 6px;
}

.dashboard-body {
  display: flex;
  min-height: 360px;
}

.mini-logo {
  background: #fff;
  color: var(--primary);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.dash-content {
  flex: 1;
  padding: 30px;
}

.dash-content h5 {
  font-weight: 800;
}

.dash-content small {
  color: #8b96aa;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e3edff;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary);
}

.stat-card i {
  font-size: 1.4rem;
  color: var(--primary);
}

.stat-card strong {
  font-size: 1.35rem;
  margin-top: 10px;
}

.stat-card.purple i {
  color: var(--purple);
}

.chart-card {
  height: 120px;
  background: #fbfcff;
  border: 1px solid #edf0f5;
  border-radius: 16px;
  padding: 20px;
}

.chart-bars {
  height: 100%;
  display: flex;
  align-items: end;
  gap: 11px;
}

.chart-bars span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(var(--primary), #b8d4fb);
}

.chart-bars span:nth-child(1) {
  height: 38%;
}

.chart-bars span:nth-child(2) {
  height: 58%;
}

.chart-bars span:nth-child(3) {
  height: 43%;
}

.chart-bars span:nth-child(4) {
  height: 78%;
}

.chart-bars span:nth-child(5) {
  height: 68%;
}

.chart-bars span:nth-child(6) {
  height: 90%;
}

.chart-bars span:nth-child(7) {
  height: 73%;
}

.floating-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 15px;
  padding: 13px 17px;
  box-shadow: 0 18px 50px rgba(28, 54, 105, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-card i {
  font-size: 1.6rem;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.7rem;
}

.card-folio {
  left: 20px;
  bottom: 40px;
}

.card-folio i {
  color: #f2a519;
}

.card-security {
  right: -55px;
  top: 170px;
}

.card-security i {
  color: #20a66a;
}

.security-banner::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.security-banner::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.security-banner .container {
  position: relative;
  z-index: 2;
}

.security-banner h2 {
  max-width: 700px;
  margin: 14px 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
}

.security-banner h2 span {
  color: #ffb26b;
}

.security-banner .btn-light {
  border: 0;
  color: #a83e06;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.security-banner .btn-light:hover {
  color: #7a2400;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.security-image-wrapper {
  position: relative;
  max-width: 500px;
  margin-left: auto;
}

.security-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  object-position: center;
  border: 8px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgba(49, 12, 0, 0.35);
}

.security-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.93);
  color: #1f2937;
  box-shadow: 0 16px 36px rgba(33, 10, 0, 0.2);
  backdrop-filter: blur(12px);
}

.security-floating-card i {
  display: grid;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff7a00, #d95400);
  color: #ffffff;
  font-size: 1.35rem;
}

.security-floating-card strong,
.security-floating-card small {
  display: block;
}

.security-floating-card strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.security-floating-card small {
  margin-top: 2px;
  color: #6b7280;
  font-size: 0.75rem;
}

.security-card-top {
  top: 30px;
  right: -35px;
}

.security-card-bottom {
  bottom: 30px;
  left: -45px;
}

.section-space {
  padding: 100px 0;
}

.section-heading {
  max-width: 740px;
}

.section-heading h2,
.section-space h2,
.security-banner h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 800;
}

.section-heading p,
.section-space p {
  color: var(--muted);
  line-height: 1.8;
}

.years-card:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 60px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  right: -100px;
  bottom: -110px;
}

.years-number {
  font-size: 8rem;
  line-height: 0.9;
  font-weight: 800;
}

.years-number span {
  font-size: 3rem;
}

.years-card > p {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.decor-line {
  height: 4px;
  width: 90px;
  background: #84d2ff;
  margin: 28px 0;
}

.small-panel {
  position: absolute;
  bottom: 35px;
  left: 45px;
  right: 45px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 18px;
  border-radius: 16px;
}

.small-panel i {
  font-size: 1.7rem;
}

.btn-link-custom {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.solution-card {
  height: 100%;
  background: #fff;
  border: 1px solid #eaf0fa;
  border-radius: var(--radius);
  padding: 30px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(44, 72, 127, 0.12);
}

.solution-icon,
.benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: linear-gradient(135deg, #eaf3ff, #f1eaff);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.55rem;
  margin-bottom: 24px;
}

.solution-card h3 {
  font-size: 1.16rem;
  font-weight: 800;
}

.solution-card p {
  font-size: 0.89rem;
  color: var(--muted);
  min-height: 72px;
}

.solution-card a {
  font-weight: 800;
  text-decoration: none;
  color: var(--primary);
  font-size: 0.84rem;
}

.extra-solution {
  display: none;
}

.benefit-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  backdrop-filter: blur(8px);
}

.benefit-card .benefit-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 800;
}

.benefit-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  margin: 0;
}

.clients-section {
  background: #fafbfe;
  overflow: hidden;
}

.logo-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.logo-track {
  display: flex;
  gap: 65px;
  width: max-content;
  animation: marquee 24s linear infinite;
  padding: 20px 0;
}

.client-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: #7f8ba1;
  white-space: nowrap;
  filter: grayscale(1);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.security-banner p {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.contact-section {
  background: #f4f7fc;
}

.contact-list {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.contact-list i {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  color: var(--primary);
  display: grid;
  place-items: center;
  box-shadow: 0 7px 20px rgba(34, 60, 112, 0.08);
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.contact-form {
  background: #fff;
  border-radius: 25px;
  padding: 35px;
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.form-control {
  border-radius: 12px;
  border-color: #dfe6f1;
  padding: 0.78rem 1rem;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(8, 105, 232, 0.1);
  border-color: var(--primary);
}

.footer-brand {
  color: #fff !important;
}

.footer h6 {
  color: #fff;
  font-weight: 800;
}

.footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  font-size: 0.75rem;
}

.whatsapp-float,
.back-top {
  position: fixed;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  z-index: 99;
}

.whatsapp-float {
  bottom: 24px;
  background: #25d366;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.back-top {
  bottom: 88px;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

:root {
  --primary: #f47a1f;
  --primary-dark: #d95e0b;
  --purple: #ff9b4a;
  --ink: #3b2b23;
  --muted: #77665d;
  --light: #fff7f0;
  --radius: 22px;
}

body {
  font-family: Poppins, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}

.topbar i {
  color: #ffb06f;
  margin-right: 0.35rem;
}

.btn-primary {
  background: linear-gradient(135deg, #f47a1f, #ff9a42);
  border: 0;
  box-shadow: 0 9px 24px rgba(244, 122, 31, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #db640e, #f47a1f);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-section {
  position: relative;
  min-height: 680px;
  background-image:
    linear-gradient(
      90deg,
      rgba(17, 24, 39, 0.78) 0%,
      rgba(17, 24, 39, 0.54) 45%,
      rgba(17, 24, 39, 0.18) 100%
    ),
    url("../img/hero-office.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.orb-one {
  width: 500px;
  height: 500px;
  background: rgba(244, 122, 31, 0.13);
  right: -160px;
  top: 30px;
}

.orb-two {
  width: 280px;
  height: 280px;
  background: rgba(255, 155, 74, 0.14);
  left: -160px;
  bottom: -60px;
}

.dash-sidebar {
  width: 70px;
  background: #4a2f22;
  color: #ffb77d;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 28px;
  padding: 18px 0;
  font-size: 1.2rem;
}

.stat-card {
  border-radius: 16px;
  background: #fff3e8;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.stat-card.purple {
  background: #fff0e3;
}

.years-card {
  min-height: 430px;
  border-radius: 35px;
  padding: 55px;
  background: linear-gradient(145deg, #f47a1f, #ff9b4a);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(244, 122, 31, 0.25);
}

.security-banner {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: linear-gradient(100deg, #a83e06, #f47a1f);
  color: #fff;
}

.footer {
  background: #35251e;
  color: #aeb9ce;
}

.solutions-section {
  background: var(--light);
  position: relative;
  overflow: hidden;
  background-color: #fffaf6;
  background-image:
    linear-gradient(
      30deg,
      rgba(244, 122, 31, 0.07) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(244, 122, 31, 0.07) 87.5%,
      rgba(244, 122, 31, 0.07)
    ),
    linear-gradient(
      150deg,
      rgba(244, 122, 31, 0.07) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(244, 122, 31, 0.07) 87.5%,
      rgba(244, 122, 31, 0.07)
    ),
    linear-gradient(
      30deg,
      rgba(244, 122, 31, 0.07) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(244, 122, 31, 0.07) 87.5%,
      rgba(244, 122, 31, 0.07)
    ),
    linear-gradient(
      150deg,
      rgba(244, 122, 31, 0.07) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(244, 122, 31, 0.07) 87.5%,
      rgba(244, 122, 31, 0.07)
    ),
    linear-gradient(
      60deg,
      rgba(244, 122, 31, 0.045) 25%,
      transparent 25.5%,
      transparent 75%,
      rgba(244, 122, 31, 0.045) 75%,
      rgba(244, 122, 31, 0.045)
    );
  background-size: 80px 140px;
  background-position:
    0 0,
    0 0,
    40px 70px,
    40px 70px,
    0 0;
}

.solutions-section .section-heading h2 span {
  color: var(--primary);
}

.solutions-carousel {
  padding: 0 5.5rem 3.5rem;
}

.solution-slide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
}

.solution-feature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 620px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
}

.solution-image-wrapper {
  position: relative;
  flex: 0 0 300px;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f4f4f4;
}

.solution-feature-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solution-feature-content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 52px 48px 34px;
  background: linear-gradient(145deg, #ff7a00 0%, #df5b00 100%);
  color: #ffffff;
}

.solution-icon {
  position: absolute;
  top: -34px;
  left: 42px;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: #ff7a00;
  color: #ffffff;
  font-size: 1.9rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.solution-subtitle {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
}

.solution-text {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
}

.solution-feature-content h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.solution-feature-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.solution-feature-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.solution-feature-link:hover {
  color: #fff;
}

.carousel-nav {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #4a2f22;
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 10px 25px rgba(74, 47, 34, 0.25);
}

.solutions-carousel .carousel-control-prev,
.solutions-carousel .carousel-control-next {
  width: 5rem;
  opacity: 1;
}

.solutions-carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.solutions-carousel .carousel-indicators button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #f47a1f;
  border: 0;
  opacity: 0.35;
}

.solutions-carousel .carousel-indicators button.active {
  opacity: 1;
  transform: scale(1.15);
}

.topbar-contact,
.topbar-social {
  display: flex;
  align-items: center;
}

.topbar-contact a,
.topbar-social a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar-contact a:first-child {
  padding-left: 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  font-weight: 800;
  color: #143267 !important;
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  width: 34px;
  height: 42px;
  display: inline-block;
  transform: rotate(45deg);
}

.brand-symbol i {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #ff6b00;
  border-radius: 2px;
}

.brand-symbol i:nth-child(1) {
  left: 0;
  top: 0;
}

.brand-symbol i:nth-child(2) {
  right: 0;
  top: 0;
}

.brand-symbol i:nth-child(3) {
  left: 0;
  bottom: 0;
}

.brand-symbol i:nth-child(4) {
  right: 0;
  bottom: 0;
}

.main-menu .nav-link.active,
.main-menu .nav-link:hover {
  color: #111827 !important;
}

.register-btn:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-2px);
}

.dropdown-menu {
  border-radius: 18px;
  padding: 12px;
  min-width: 250px;
}

.dropdown-item {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-weight: 600;
}

.dropdown-item:hover {
  background: #fff1e7;
  color: #ff6b00;
}

.benefits-section {
  background: linear-gradient(110deg, #111827 0%, #3a1b0d 48%, #ff6b00 100%);
  position: relative;
  overflow: hidden;
}

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

.benefits-heading p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 650px;
}

.site-header {
  z-index: 1030;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.07);
  position: sticky;
  top: 0;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.topbar {
  background: linear-gradient(90deg, #b84a0b, #ff6b00);
  color: #fff;
  font-size: 0.78rem;
  padding: 0;
  max-height: 46px;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    transform 0.35s ease;
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 32px;
}

.topbar-contact a {
  font-size: 0.9rem;
  padding: 0 18px;
  height: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.topbar-contact i {
  font-size: 1.05rem;
  color: #fff;
}

.topbar-social {
  gap: 16px;
  font-size: 0.9rem;
}

.topbar-social .top-login {
  background: #fff;
  color: #d8580c;
  padding: 5px 11px;
  border-radius: 24px;
  font-weight: 700;
  gap: 7px;
}

.topbar-social .top-login i {
  font-size: 1.2rem;
}

.main-navbar {
  min-height: 86px;
  padding: 0;
  transition:
    min-height 0.35s ease,
    box-shadow 0.35s ease;
}

.nav-shell {
  padding-left: 32px;
  padding-right: 32px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #f47a1f, #ffad5f);
  color: #fff;
  font-size: 1.3rem;
}

.brand-word {
  font-size: 1.7rem;
  font-weight: 600;
  color: #ff6b00;
}

.main-menu {
  gap: 28px;
}

.main-menu .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #4b5563 !important;
  padding: 0.7rem 0.15rem !important;
  white-space: nowrap;
}

.nav-actions {
  gap: 12px;
}

.nav-actions .btn {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.register-btn {
  background: #111827;
  color: #fff;
  border-radius: 38px;
  padding: 11px 25px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.1);
}

.site-header.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.site-header.is-scrolled .main-navbar {
  min-height: 68px;
}

.site-header.is-scrolled .brand-mark {
  width: 31px;
  height: 31px;
  font-size: 1.15rem;
}

.site-header.is-scrolled .brand-word {
  font-size: 1.55rem;
}

.site-header.is-scrolled .main-menu .nav-link {
  font-size: 0.9rem;
  padding: 0.45rem 0.1rem !important;
}

.site-header.is-scrolled .nav-actions .btn {
  padding: 8px 18px;
  font-size: 0.84rem;
}

.company-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.company-card::after {
  content: "";
  position: absolute;
  bottom: -145px;
  left: -120px;
  width: 320px;
  height: 320px;
  border: 55px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.company-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.company-features {
  display: grid;
  gap: 11px;
}

.company-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  font-weight: 600;
}

.company-features i {
  color: #ffbd83;
  font-size: 1rem;
}

.company-person-glow {
  position: absolute;
  right: -30px;
  bottom: 10px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(255, 183, 120, 0.22);
  filter: blur(10px);
}

.company-person-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 125%;
  max-width: 460px;
  height: auto;
  margin-right: -28%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.25));
}

.company-floating-card {
  position: absolute;
  z-index: 5;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 14px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #33231b;
  box-shadow: 0 18px 40px rgba(46, 15, 0, 0.25);
}

.company-floating-card > i {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border-radius: 14px;
  background: rgba(244, 122, 31, 0.12);
  color: #f47a1f;
  font-size: 1.3rem;
}

.company-floating-card strong,
.company-floating-card small {
  display: block;
}

.company-floating-card strong {
  font-size: 0.93rem;
  font-weight: 800;
}

.company-floating-card small {
  margin-top: 2px;
  color: #79665c;
  font-size: 0.69rem;
}

.hero-person-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 570px;
  margin: 0 auto;
  isolation: isolate;
}

.hero-person-circle {
  position: absolute;
  z-index: 0;
  right: 4%;
  bottom: 35px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 153, 71, 0.3) 0%,
    rgba(244, 122, 31, 0.16) 45%,
    rgba(244, 122, 31, 0.02) 68%,
    transparent 72%
  );
  border: 1px solid rgba(255, 153, 71, 0.15);
}

.hero-person-dots {
  position: absolute;
  z-index: 1;
  top: 72px;
  right: 4px;
  width: 115px;
  height: 115px;
  opacity: 0.42;
  background-image: radial-gradient(circle, #ff8a1f 2px, transparent 2.5px);
  background-size: 18px 18px;
}

.hero-person-wrapper {
  position: absolute;
  z-index: 2;
  right: -1%;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 92%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.hero-person-image {
  display: block;
  width: auto;
  max-width: none;
  height: 92%;
  max-height: 560px;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 25px 24px rgba(0, 0, 0, 0.28));
  transform-origin: bottom center;
  animation: heroPersonEntrance 0.9s ease-out both;
}

@keyframes heroPersonEntrance {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-status-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  background: rgba(20, 18, 17, 0.87);
  color: #ffffff;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: heroCardFloat 4s ease-in-out infinite;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-status-card:hover {
  border-color: rgba(255, 138, 31, 0.58);
  background: rgba(42, 29, 22, 0.96);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    0 0 25px rgba(244, 122, 31, 0.1);
}

.hero-status-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff9a42, #f15d00);
  color: #ffffff;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(244, 122, 31, 0.32);
}

.hero-status-text {
  min-width: 0;
}

.hero-status-text strong,
.hero-status-text small {
  display: block;
  white-space: nowrap;
}

.hero-status-text strong {
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-status-text small {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.65rem;
  line-height: 1.25;
}

.hero-status-security {
  top: 115px;
  right: -25px;
}

.hero-status-success {
  bottom: 137px;
  left: -8px;
  animation-delay: -1.3s;
}

.hero-status-folios {
  right: 0;
  bottom: 27px;
  animation-delay: -2.6s;
}

@keyframes heroCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-person-image,
  .hero-status-card {
    animation: none;
  }
}

.benefits-section-light {
  position: relative;
  overflow: hidden;
  padding: 85px 0 65px;
  background:
    radial-gradient(
      circle at 75% 12%,
      rgba(255, 137, 44, 0.09),
      transparent 25%
    ),
    linear-gradient(180deg, #ffffff 0%, #fffaf6 55%, #ffffff 100%);
}

.benefits-container {
  position: relative;
  z-index: 2;
}

.benefits-section-light::before {
  content: "";
  position: absolute;
  top: -230px;
  left: -210px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(244, 122, 31, 0.1);
  border-radius: 50%;
}

.benefits-hero {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(440px, 0.88fr);
  align-items: center;
  gap: 30px;
  min-height: 345px;
  margin-bottom: -25px;
}

.benefits-heading-content {
  position: relative;
  z-index: 5;
  align-self: center;
  padding-bottom: 35px;
}

.benefits-kicker {
  display: inline-block;
  margin-bottom: 22px;
  color: #ff6b00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.benefits-heading-content h2 {
  max-width: 780px;
  margin: 0 0 24px;
  color: #33231c;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.98;
}

.benefits-heading-content h2 span {
  display: block;
  color: #ff6500;
}

.benefits-heading-content p {
  max-width: 680px;
  margin: 0;
  color: #58677e;
  font-size: 1.05rem;
  line-height: 1.75;
}

.benefits-heading-visual {
  position: relative;
  align-self: stretch;
  min-height: 345px;
}

.benefits-person-circle {
  position: absolute;
  z-index: 0;
  right: 75px;
  bottom: 2px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(255, 240, 227, 0.98),
    rgba(255, 218, 187, 0.62)
  );
  box-shadow:
    inset 0 0 0 1px rgba(255, 122, 31, 0.08),
    0 30px 80px rgba(255, 122, 31, 0.08);
}

.benefits-person-dots {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 55px;
  width: 105px;
  height: 105px;
  opacity: 0.42;
  background-image: radial-gradient(circle, #ff9a55 2.5px, transparent 3px);
  background-size: 19px 19px;
}

.benefits-accent {
  position: absolute;
  z-index: 1;
  width: 66px;
  height: 66px;
  border: 4px solid transparent;
  border-top-color: #ff8a2b;
  border-radius: 50%;
  opacity: 0.8;
}

.benefits-accent-left {
  left: 12px;
  bottom: 70px;
  transform: rotate(-82deg);
}

.benefits-accent-right {
  top: 68px;
  right: 80px;
  transform: rotate(40deg);
}

.benefits-person-image {
  position: absolute;
  z-index: 3;
  right: 70px;
  bottom: 0;
  display: block;
  width: 445px;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 22px 25px rgba(31, 41, 55, 0.13));
}

.benefits-controls {
  display: flex;
  gap: 14px;
  position: absolute;
  z-index: 6;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}

.benefit-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #eceff3;
  background: rgba(255, 255, 255, 0.96);
  color: #ff6500;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
  padding: 0;
  box-shadow: 0 15px 35px rgba(31, 41, 55, 0.1);
}

.benefit-arrow:hover {
  background: #ff710d;
  border-color: #ff710d;
  transform: translateY(-3px);
  color: #ffffff;
}

.benefits-track-wrap {
  padding-left: max(16px, calc((100vw - 1320px) / 2 + 12px));
  position: relative;
  z-index: 4;
  width: 100%;
  overflow: hidden;
}

.benefits-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 4px 30px;
}

.benefits-track::-webkit-scrollbar {
  display: none;
}

.benefit-card-slide {
  position: relative;
  flex: 0 0 calc((100% - 66px) / 4);
  min-height: 370px;
  padding: 34px 30px;
  border-radius: 28px;
  color: #111827;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e9edf2;
  backdrop-filter: blur(10px);
  scroll-snap-align: start;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  min-width: 0;
  box-shadow:
    0 17px 42px rgba(31, 41, 55, 0.065),
    inset 0 1px 0 #ffffff;
}

.benefit-card-slide:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    145deg,
    rgba(255, 107, 0, 0.5),
    rgba(255, 255, 255, 0.1)
  );
  border-color: rgba(255, 107, 0, 0.28);
  box-shadow:
    0 26px 58px rgba(31, 41, 55, 0.11),
    0 0 0 4px rgba(255, 107, 0, 0.035);
}

.benefit-card-slide .benefit-icon {
  width: 66px;
  height: 66px;
  border-radius: 19px;
  background: #fff0e5;
  color: #ff6500;
  font-size: 1.6rem;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
}

.benefit-card-slide:nth-child(4n + 2) .benefit-icon {
  background: #eaf2ff;
  color: #2563eb;
}

.benefit-card-slide:nth-child(4n + 3) .benefit-icon {
  background: #e8f9ef;
  color: #13a856;
}

.benefit-card-slide:nth-child(4n + 4) .benefit-icon {
  background: #f3ebff;
  color: #8953e8;
}

.benefit-card-slide h3 {
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 14px;
  max-width: 280px;
  margin: 0 0 17px;
  color: #111827;
}

.benefit-card-slide p {
  color: #617087;
  font-size: 0.94rem;
  line-height: 1.8;
  margin: 0;
  max-width: 275px;
}

.benefit-index {
  position: absolute;
  right: 25px;
  bottom: 17px;
  font-size: 4.6rem;
  font-weight: 800;
  color: rgba(255, 101, 0, 0.1);
  line-height: 1;
}

.benefit-card-slide:nth-child(4n + 2) .benefit-index {
  color: rgba(37, 99, 235, 0.09);
}

.benefit-card-slide:nth-child(4n + 3) .benefit-index {
  color: rgba(19, 168, 86, 0.1);
}

.benefit-card-slide:nth-child(4n + 4) .benefit-index {
  color: rgba(137, 83, 232, 0.1);
}

.benefits-status {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 8px;
  justify-content: center;
}

.benefits-dots {
  display: flex;
  gap: 9px;
  align-items: center;
}

.benefit-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 99px;
  background: #dfe3e8;
  padding: 0;
  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}

.benefit-dot.active {
  width: 30px;
  background: #ff6500;
}

.benefits-progress {
  width: 430px;
  height: 5px;
  background: #eceff2;
  border-radius: 99px;
  overflow: hidden;
}

.benefits-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ff6500, #ff9b4a);
  transition: width 0.3s ease;
  border-radius: inherit;
}

.company-split-row {
  position: relative;
  min-height: 530px;
  overflow: visible;
}

.company-card-column,
.company-info-column {
  position: relative;
  z-index: 2;
}

.company-card-content h3 {
  max-width: 440px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
}

.company-card-content h3 span {
  color: #ffc18d;
  display: block;
}

.company-card-content > p {
  max-width: 390px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.75;
}

.company-info h2 {
  margin-bottom: 22px;
  color: #33231c;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
}

.company-info p {
  max-width: 560px;
  color: #77665d;
  font-size: 1rem;
  line-height: 1.85;
}

.company-person-cross {
  left: 45%;
  bottom: 0;
  width: 400px;
  height: 445px;
  transform: translateX(-50%);
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.company-person-cross-glow {
  position: absolute;
  z-index: 0;
  left: 48%;
  bottom: 20px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 172, 100, 0.27) 0%,
    rgba(255, 172, 100, 0.1) 50%,
    transparent 72%
  );
  transform: translateX(-50%);
}

.company-person-cross img {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  display: block;
  width: 94%;
  height: 94%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 24px rgba(31, 20, 14, 0.22));
  transform: translateX(-50%);
}

.company-info-column {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 7;
}

.company-info {
  position: relative;
  z-index: 7;
  width: 100%;
  padding: 35px 10px 35px 75px;
}

.company-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 500px;
  overflow: hidden;
  padding: 50px 175px 48px 48px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(255, 184, 123, 0.34),
      transparent 36%
    ),
    linear-gradient(145deg, #54220c 0%, #a63e08 48%, #ef741d 100%);
  color: #ffffff;
  box-shadow: 0 28px 65px rgba(111, 42, 8, 0.23);
  padding-right: 175px;
}

.company-card-content {
  position: relative;
  z-index: 3;
  padding-bottom: 0;
  max-width: 390px;
}

@media (max-width: 1199.98px) {
  .register-btn {
    padding: 14px 26px;
  }

  .main-menu {
    gap: 18px;
  }

  .nav-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-word {
    font-size: 1.55rem;
  }

  .nav-actions .btn {
    padding: 9px 16px;
  }

  .company-person-image {
    width: 135%;
    margin-right: -38%;
  }

  .hero-person-visual {
    min-height: 520px;
  }

  .hero-person-wrapper {
    right: 0;
    width: 100%;
  }

  .hero-person-image {
    height: 88%;
    max-height: 500px;
  }

  .hero-person-circle {
    right: 50%;
    width: 390px;
    height: 390px;
    transform: translateX(50%);
  }

  .hero-status-security {
    right: 0;
  }

  .hero-status-success {
    left: 0;
  }

  .benefits-hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .benefits-person-image {
    right: 50px;
    width: 410px;
  }

  .benefits-person-circle {
    right: 55px;
    width: 320px;
    height: 320px;
  }

  .benefits-controls {
    right: 0;
  }

  .company-card {
    grid-template-columns: 1fr 0.8fr;
    padding-left: 38px;
    padding-right: 155px;
  }

  .company-person-cross {
    left: 44%;
    width: 370px;
    height: 415px;
  }

  .company-person-cross-glow {
    width: 285px;
    height: 285px;
  }

  .company-info {
    padding-left: 70px;
  }
}

.cta-section {
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 148, 70, 0.12),
      transparent 25%
    ),
    linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 70px 72px;
  border-radius: 38px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 190, 137, 0.3),
      transparent 30%
    ),
    linear-gradient(125deg, #36180c 0%, #8c3208 48%, #f47a1f 100%);
  color: #ffffff;
  box-shadow: 0 35px 80px rgba(103, 36, 4, 0.25);
}

.cta-content,
.cta-actions {
  position: relative;
  z-index: 3;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffd1aa;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.cta-kicker i {
  color: #ffb878;
}

.cta-content h2 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: clamp(2.5rem, 3.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.02;
}

.cta-content h2 span {
  display: block;
  color: #ffc08b;
}

.cta-content > p {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-content p strong {
  color: #ffffff;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
}

.cta-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
}

.cta-benefits i {
  color: #ffc08b;
}

.cta-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 16px;
  max-width: 551px;
  margin-left: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.cta-primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 23px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #d9570b;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(49, 15, 0, 0.2);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.cta-primary-button:hover {
  background: #fff6ed;
  color: #bd4500;
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(49, 15, 0, 0.28);
}

.cta-primary-button i {
  transition: transform 0.25s ease;
}

.cta-primary-button:hover i {
  transform: translateX(5px);
}

.cta-secondary-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.cta-secondary-link:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.cta-actions small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  text-align: center;
}

.cta-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-decoration-one {
  top: -190px;
  right: -120px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-decoration-two {
  left: -140px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border: 55px solid rgba(255, 255, 255, 0.04);
}

.cta-dots {
  position: absolute;
  z-index: 1;
  top: 45px;
  right: 38%;
  width: 100px;
  height: 100px;
  opacity: 0.25;
  background-image: radial-gradient(circle, #ffffff 2px, transparent 2.5px);
  background-size: 17px 17px;
}

@media (max-width: 575.98px) {
  .security-banner {
    padding: 58px 0;
  }

  .security-image-wrapper {
    padding: 0 8px;
  }

  .security-image {
    border-width: 5px;
    border-radius: 24px;
  }

  .security-floating-card {
    position: static;
    min-width: 0;
    margin-top: 14px;
    text-align: left;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .hero-copy {
    padding-top: 35px !important;
  }

  .dashboard-body {
    min-height: 290px;
  }

  .dash-sidebar {
    width: 50px;
  }

  .dash-content {
    padding: 18px;
  }

  .floating-card {
    display: none;
  }

  .years-card {
    padding: 35px;
    min-height: 350px;
  }

  .years-number {
    font-size: 6rem;
  }

  .small-panel {
    left: 25px;
    right: 25px;
  }

  .contact-form {
    padding: 23px;
  }

  .section-space {
    padding: 60px 0;
  }

  .hero-person-visual {
    min-height: 430px;
    margin-top: 10px;
  }

  .hero-person-wrapper {
    width: 110%;
    right: -5%;
  }

  .hero-person-image {
    width: 100%;
    height: auto;
    max-width: 440px;
    max-height: none;
  }

  .hero-person-circle {
    bottom: 20px;
    width: 290px;
    height: 290px;
  }

  .hero-person-dots {
    top: 35px;
    right: 0;
    width: 80px;
    height: 80px;
    background-size: 14px 14px;
  }

  .hero-status-card {
    min-width: auto;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 13px;
  }

  .hero-status-icon {
    width: 33px;
    height: 33px;
    flex-basis: 33px;
    border-radius: 10px;
    font-size: 0.88rem;
  }

  .hero-status-text strong {
    font-size: 0.68rem;
  }

  .hero-status-text small {
    font-size: 0.55rem;
  }

  .hero-status-security {
    top: 40px;
    right: -3px;
  }

  .hero-status-success {
    bottom: 75px;
    left: -3px;
  }

  .hero-status-folios {
    right: -3px;
    bottom: 8px;
  }

  .benefits-heading-content h2 {
    font-size: 2.1rem;
  }

  .benefits-heading-content p {
    font-size: 0.94rem;
  }

  .benefits-heading-visual {
    min-height: 245px;
  }

  .benefits-person-image {
    width: 310px;
  }

  .benefits-person-circle {
    width: 235px;
    height: 235px;
  }

  .company-card {
    min-height: 630px;
    padding: 32px 22px 255px;
    border-radius: 26px;
  }

  .company-card-content h3 {
    font-size: 2rem;
  }

  .company-person-cross {
    width: 290px;
    height: 270px;
  }

  .company-person-cross-glow {
    width: 225px;
    height: 225px;
  }

  .cta-section {
    padding: 30px 0;
  }

  .cta-section .container {
    max-width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .cta-panel {
    width: 100%;
    margin: 0;
  }
  .cta-content h2 {
    font-size: 2.3rem;
  }

  .cta-content > p {
    font-size: 0.95rem;
  }

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

  .cta-actions {
    padding: 20px;
    border-radius: 21px;
  }

  .cta-primary-button {
    min-height: 54px;
    font-size: 0.83rem;
  }

  .cta-dots {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .security-banner {
    padding: 70px 0;
    text-align: center;
  }

  .security-banner p {
    margin-right: auto;
    margin-left: auto;
  }

  .security-image-wrapper {
    margin: 25px auto 0;
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .dashboard-window {
    transform: none;
  }

  .hero-visual {
    padding-top: 10px;
  }

  .section-space {
    padding: 75px 0;
  }

  .years-card {
    min-height: 380px;
  }

  .card-security {
    right: 0;
  }

  .card-folio {
    left: 0;
  }

  .solution-slide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-feature-card:nth-child(3) {
    display: none;
  }

  .solutions-carousel {
    padding-inline: 4rem;
  }

  .main-navbar {
    min-height: 82px;
  }

  .main-menu {
    gap: 0;
  }

  .main-menu .nav-link {
    padding: 0.8rem 0 !important;
  }

  .register-btn {
    width: 100%;
    text-align: center;
  }

  .nav-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    display: none !important;
  }

  .main-navbar,
  .site-header.is-scrolled .main-navbar {
    min-height: 68px;
  }

  .navbar-collapse {
    padding: 12px 0 18px;
  }

  .main-menu .nav-link,
  .site-header.is-scrolled .main-menu .nav-link {
    font-size: 0.95rem;
    padding: 0.7rem 0 !important;
  }

  .nav-actions {
    padding-top: 8px;
  }

  .company-person-image {
    width: 120%;
    margin-right: -20%;
  }

  .hero-person-visual {
    max-width: 650px;
    min-height: 319px;
    margin-top: 20px;
  }

  .hero-person-image {
    height: 94%;
    max-height: 530px;
  }

  .hero-status-security {
    top: 80px;
    right: 5px;
  }

  .hero-status-success {
    bottom: 115px;
    left: 5px;
  }

  .hero-status-folios {
    right: 8px;
    bottom: 18px;
  }

  .benefits-section-light {
    padding: 75px 0 60px;
  }

  .benefits-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-bottom: -10px;
  }

  .benefits-heading-content {
    padding-bottom: 0;
    text-align: center;
  }

  .benefits-heading-content p {
    margin-right: auto;
    margin-left: auto;
  }

  .benefits-heading-visual {
    min-height: 350px;
  }

  .benefits-person-circle {
    right: 50%;
    transform: translateX(50%);
  }

  .benefits-person-image {
    right: 50%;
    width: 430px;
    max-width: 90%;
    transform: translateX(50%);
  }

  .benefits-person-dots {
    left: calc(50% - 215px);
  }

  .benefits-controls {
    top: auto;
    right: 10px;
    bottom: 55px;
    transform: none;
  }

  .benefit-card-slide {
    flex-basis: calc((100% - 22px) / 2);
  }

  .company-split-row {
    min-height: auto;
  }

  .company-card {
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 500px;
    padding: 20px 42% 45px 38px;
  }

  .company-card-content {
    max-width: 420px;
  }

  .company-person-cross {
    top: 105px;
    right: 8px;
    bottom: auto;
    left: auto;
    width: 370px;
    height: 405px;
    transform: none;
  }

  .company-person-cross img {
    right: 0;
    left: auto;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .company-person-cross-glow {
    right: 15px;
    left: auto;
    bottom: 20px;
    width: 285px;
    height: 285px;
    transform: none;
  }

  .company-info {
    padding: 38px 10px 0;
    background: transparent;
  }

  .cta-section {
    padding: 75px 0;
  }

  .cta-panel {
    padding: 55px 45px;
  }

  .cta-content {
    text-align: center;
  }

  .cta-content h2,
  .cta-content > p {
    margin-right: auto;
    margin-left: auto;
  }

  .cta-benefits {
    justify-content: center;
  }

  .cta-actions {
    max-width: 420px;
    margin: 25px auto 0;
  }

  .cta-dots {
    right: 10%;
  }
}

@media (max-width: 767.98px) {
  .footer img {
    max-width: 65%;
  }

  .solution-slide-grid {
    grid-template-columns: 1fr;
  }

  .solution-feature-card:nth-child(2),
  .solution-feature-card:nth-child(3) {
    display: none;
  }

  .solutions-carousel {
    padding: 0 1rem 3.3rem;
  }

  .solutions-carousel .carousel-control-prev,
  .solutions-carousel .carousel-control-next {
    width: 3.3rem;
  }

  .carousel-nav {
    width: 44px;
    height: 44px;
  }

  .solution-feature-card {
    min-height: 470px;
    border-radius: 28px;
  }

  .solution-feature-content {
    padding: 1.5rem;
  }

  .benefits-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .company-card-content h3 {
    font-size: 2rem;
  }

  .company-person {
    min-height: 320px;
  }

  .company-person-image {
    width: 105%;
    max-width: 420px;
    margin: 0 -5% 0 0;
  }

  .company-floating-card {
    right: 15px;
    bottom: 15px;
    min-width: auto;
  }

  .benefits-section-light {
    padding: 60px 0 52px;
  }

  .benefits-heading-content h2 {
    font-size: 2.55rem;
  }

  .benefits-heading-visual {
    min-height: 290px;
  }

  .benefits-person-image {
    width: 360px;
  }

  .benefits-person-circle {
    width: 275px;
    height: 275px;
  }

  .benefits-person-dots {
    left: 15px;
    width: 80px;
    height: 80px;
    background-size: 15px 15px;
  }

  .benefits-controls {
    align-self: flex-end;
    right: 5px;
    bottom: 30px;
  }

  .benefit-arrow {
    width: 48px;
    height: 48px;
  }

  .benefits-track {
    gap: 16px;
  }

  .benefit-card-slide {
    flex-basis: calc(100vw - 58px);
    min-height: 350px;
    padding: 28px 24px;
  }

  .benefits-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .benefits-progress {
    width: 100%;
  }

  .company-card-content {
    padding-bottom: 10px;
    max-width: none;
  }

  .company-person-cross {
    top: 231px;
    right: 22%;
    bottom: 0;
    left: auto;
    width: 335px;
    height: 305px;
    transform: translateX(50%);
  }

  .company-person-cross img {
    right: auto;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
  }

  .company-person-cross-glow {
    right: auto;
    left: 50%;
    bottom: 5px;
    width: 265px;
    height: 265px;
    transform: translateX(-50%);
  }

  .company-info {
    padding: 32px 5px 0;
  }
}

/* =========================================================
   CONTROL GLOBAL DE ANCHO
========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* =========================================================
   PAQUETES
   Un solo bloque: carrusel horizontal responsivo
========================================================= */

.pricing-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.pricing-grid {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  gap: 28px;

  width: 100%;
  max-width: 100%;
  margin-top: 52px;
  padding: 10px 2px 34px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pricing-grid::-webkit-scrollbar {
  display: none;
}

/* Cuatro paquetes visibles en escritorio.
   3 espacios x 28px = 84px. */
.pricing-grid > .package-banner {
  flex: 0 0 calc((100% - 84px) / 4);
  width: calc((100% - 84px) / 4);
  min-width: calc((100% - 84px) / 4);
  max-width: calc((100% - 84px) / 4);

  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* =========================================
   PAQUETES — DISEÑO ORIGINAL EN CARRUSEL
========================================= */

.pricing-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.pricing-section h2 span {
  display: block;
  color: #ff6500;
}

.pricing-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;

  width: 100%;
  max-width: 100%;

  margin-top: 52px;
  padding: 10px 2px 35px;

  gap: 28px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pricing-grid::-webkit-scrollbar {
  display: none;
}

/*
  Cuatro paquetes visibles.
  Tres espacios de 28px = 84px.
*/

.pricing-grid > .package-banner {
  flex: 0 0 calc((100% - 84px) / 4);

  width: calc((100% - 84px) / 4);
  min-width: calc((100% - 84px) / 4);
  max-width: calc((100% - 84px) / 4);

  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* =========================================
   TARJETA — DISEÑO ORIGINAL
========================================= */

.package-banner {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 610px;

  overflow: hidden;

  padding: 36px 30px 30px;

  border: 1px solid #f0d8c7;
  border-radius: 30px;

  background: #ffffff;

  box-shadow:
    0 20px 48px rgba(83, 42, 19, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.package-banner:hover {
  border-color: rgba(244, 122, 31, 0.4);

  box-shadow:
    0 28px 60px rgba(83, 42, 19, 0.14),
    0 0 0 4px rgba(244, 122, 31, 0.035);

  transform: translateY(-7px);
}

/* Línea naranja lateral */

.package-banner::after {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;

  width: 7px;

  background: linear-gradient(180deg, #ff9e50, #f2670d);
}

/* Círculo decorativo */

.package-banner::before {
  content: "";

  position: absolute;
  top: -105px;
  right: -90px;

  width: 260px;
  height: 260px;

  border: 42px solid rgba(244, 122, 31, 0.045);
  border-radius: 50%;

  pointer-events: none;
}

.package-banner-info,
.package-banner-benefits,
.package-banner-action {
  position: relative;
  z-index: 2;

  min-width: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

/* Laptop: tres paquetes */

@media (max-width: 1199.98px) {
  .pricing-grid > .package-banner {
    flex-basis: calc((100% - 56px) / 3);

    width: calc((100% - 56px) / 3);
    min-width: calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
  }

  .package-banner {
    min-height: 590px;
  }
}

/* Tablet: dos paquetes */

@media (max-width: 991.98px) {
  .pricing-grid {
    gap: 22px;
  }

  .pricing-grid > .package-banner {
    flex-basis: calc((100% - 22px) / 2);

    width: calc((100% - 22px) / 2);
    min-width: calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }

  .package-banner {
    padding: 32px 26px 27px;
  }
}

/* Móvil: un paquete */

@media (max-width: 767.98px) {
  .pricing-grid {
    gap: 18px;

    padding-right: 0;
    padding-left: 0;
  }

  .pricing-grid > .package-banner {
    flex-basis: 100%;

    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .package-banner {
    min-height: 585px;

    padding: 30px 24px 25px;

    border-radius: 25px;
  }

  .package-banner-info {
    min-height: auto;
  }

  .package-popular-badge {
    position: static;

    width: max-content;
    max-width: 100%;

    margin-bottom: 18px;
  }
}

/* Móvil pequeño */

@media (max-width: 575.98px) {
  .package-banner {
    min-height: 570px;

    padding: 27px 21px 23px;
  }

  .package-banner-info h3 {
    font-size: 1.6rem;
  }

  .package-price {
    font-size: 2.75rem;
  }
}
/* =========================================================
   INFORMACIÓN DEL PAQUETE
========================================================= */

.package-banner-info {
  min-height: 190px;
}

.package-folios {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 10px 16px;
  border: 1px solid #ffd0ae;
  border-radius: 999px;
  background: #f47a1f;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.package-folios i {
  flex: 0 0 auto;
  font-size: 0.95rem;
}

.package-banner-info h3 {
  margin: 0 0 14px;

  color: #37251d;

  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.12;

  overflow-wrap: anywhere;
}

.package-banner-info p {
  margin: 0;

  color: #77665d;

  font-size: 0.94rem;
  line-height: 1.75;

  overflow-wrap: anywhere;
}

/* =========================================================
   BENEFICIOS
========================================================= */

.package-banner-benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 15px;

  margin: 26px 0 30px;
}

.package-benefit {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  min-width: 0;

  color: #594b44;

  font-size: 0.91rem;
  font-weight: 500;
  line-height: 1.5;
}

.package-benefit i {
  flex: 0 0 auto;
  margin-top: 2px;

  color: #14a05c;
  font-size: 1.05rem;
}

.package-benefit span {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* =========================================================
   PRECIO Y BOTÓN
========================================================= */

.package-banner-action {
  display: flex;
  align-items: stretch;
  flex-direction: column;

  margin-top: auto;
  padding-top: 27px;

  border-top: 1px solid #eee1d8;

  text-align: center;
}

.package-price-label {
  display: block;
  margin-bottom: 9px;

  color: #8b766a;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.package-price {
  margin-bottom: 23px;

  color: #f2640b;

  font-size: clamp(2.8rem, 3.5vw, 3.7rem);
  font-weight: 800;
  line-height: 1;
}

.package-price small {
  display: block;
  margin-top: 9px;

  color: #89766b;

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.package-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  min-width: 0;
  min-height: 55px;
  padding: 14px 24px;

  border: 1px solid #f47a1f;
  border-radius: 999px;

  background: #ffffff;
  color: #e65d08;

  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.package-button:hover {
  background: #f47a1f;
  color: #ffffff;

  box-shadow: 0 14px 28px rgba(244, 122, 31, 0.24);

  transform: translateY(-2px);
}

.package-button i {
  transition: transform 0.25s ease;
}

.package-button:hover i {
  transform: translateX(5px);
}

/* =========================================================
   PAQUETE DESTACADO
========================================================= */

.package-banner-featured {
  border-color: transparent;

  background:
    radial-gradient(
      circle at 92% 5%,
      rgba(255, 196, 147, 0.32),
      transparent 34%
    ),
    linear-gradient(145deg, #421a0a 0%, #8d3008 46%, #df5c0b 100%);

  color: #ffffff;

  box-shadow:
    0 30px 68px rgba(100, 34, 4, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.package-banner-featured::before {
  border-color: rgba(255, 255, 255, 0.07);
}

.package-banner-featured::after {
  background: #ffc18d;
}

.package-popular-badge {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 20px;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  max-width: calc(100% - 40px);
  padding: 8px 14px;

  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;

  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}

.package-banner-featured .package-folios {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
  color: #ffd2ae;
}

.package-banner-featured .package-banner-info h3,
.package-banner-featured .package-price {
  color: #ffffff;
}

.package-banner-featured .package-banner-info p,
.package-banner-featured .package-benefit,
.package-banner-featured .package-price-label,
.package-banner-featured .package-price small {
  color: rgba(255, 255, 255, 0.82);
}

.package-banner-featured .package-benefit i {
  color: #ffc08b;
}

.package-banner-featured .package-banner-action {
  border-top-color: rgba(255, 255, 255, 0.28);
}

.package-banner-featured .package-button {
  border-color: #ffffff;
  background: #ffffff;
  color: #cf4e05;
}

.package-banner-featured .package-button:hover {
  background: #fff1e5;
  color: #a73b00;
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* Laptop: 3 visibles */
@media (max-width: 1199.98px) {
  .pricing-grid > .package-banner {
    flex-basis: calc((100% - 56px) / 3);
    width: calc((100% - 56px) / 3);
    min-width: calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
  }

  .package-banner {
    min-height: 590px;
  }
}

/* Tablet: 2 visibles */
@media (max-width: 991.98px) {
  .pricing-section {
    padding: 75px 0;
  }

  .pricing-grid {
    gap: 22px;
  }

  .pricing-grid > .package-banner {
    flex-basis: calc((100% - 22px) / 2);
    width: calc((100% - 22px) / 2);
    min-width: calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }

  .package-banner {
    padding: 32px 26px 27px;
  }

  .package-banner-info h3 {
    font-size: 1.8rem;
  }
}

/* Móvil: 1 visible, sin usar 100vw */
@media (max-width: 767.98px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  img,
  svg,
  video,
  canvas {
    max-width: 100%;
    height: auto;
  }

  .pricing-section {
    padding: 60px 0;
  }

  .pricing-section .container {
    min-width: 0;
    max-width: 100%;
  }

  .pricing-section .section-heading h2 {
    font-size: 2.4rem;
  }

  .pricing-grid {
    gap: 18px;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .pricing-grid > .package-banner {
    flex-basis: 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .package-banner {
    min-height: 585px;
    padding: 30px 24px 25px;
    border-radius: 25px;
  }

  .package-banner-info {
    min-height: auto;
  }

  .package-popular-badge {
    position: static;
    width: max-content;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .hero-person-wrapper {
    right: 0;
    width: 100%;
  }

  .company-person-cross,
  .company-person-cross img {
    max-width: 60%;
  }

  .hero-person-image img {
    max-width: 90%;
  }

  .benefits-person-image img {
    max-width: 80%;
  }

  .whatsapp-float,
  .back-top {
    right: 14px;
  }
}

@media (max-width: 575.98px) {
  .pricing-section .section-heading h2 {
    font-size: 2.1rem;
  }

  .package-banner {
    min-height: 570px;
    padding: 27px 21px 23px;
  }

  .package-banner-info h3 {
    font-size: 1.6rem;
  }

  .package-price {
    font-size: 2.75rem;
  }
}

/* =========================================================
   MENÚ MÓVIL: LOGO A LA IZQUIERDA Y BOTÓN A LA DERECHA
========================================================= */

@media (max-width: 991.98px) {
  .main-navbar .nav-shell,
  .main-navbar > .container,
  .main-navbar > .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .main-navbar .navbar-brand,
  .main-navbar .brand-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 72px);
    margin: 0;
    padding: 0;
  }

  .main-navbar .navbar-brand img,
  .main-navbar .brand-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 48px;
    object-fit: contain;
  }

  .main-navbar .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 44px;
    margin: 0 0 0 12px;
    padding: 0;
  }

  .main-navbar .navbar-collapse {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  .main-navbar .nav-shell,
  .main-navbar > .container,
  .main-navbar > .container-fluid {
    padding-right: 14px;
    padding-left: 14px;
  }

  .main-navbar .navbar-brand,
  .main-navbar .brand-logo {
    max-width: calc(100% - 64px);
  }

  .main-navbar .navbar-brand img,
  .main-navbar .brand-logo img {
    height: 42px;
  }

  .main-navbar .brand-word {
    font-size: clamp(1.25rem, 7vw, 1.7rem);
    white-space: nowrap;
  }
}

/* =========================================
   NAVBAR
========================================= */

.main-navbar .nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.main-navbar .navbar-brand {
  display: flex;
  align-items: center;
  max-width: 240px;
  margin: 0;
}

.main-navbar .navbar-brand img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
}

.main-navbar .navbar-toggler {
  display: none;

  width: 46px;
  height: 44px;
  padding: 0;

  border: 1px solid #e4d8d1;
  border-radius: 10px;

  background: #ffffff;
  color: #49352b;

  font-size: 1.7rem;

  align-items: center;
  justify-content: center;
}

.main-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(244, 122, 31, 0.14);
}

/* =========================================
   MENÚ MÓVIL OFFCANVAS
========================================= */

.mobile-menu {
  width: min(360px, 88vw) !important;

  border-left: 0;

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(244, 122, 31, 0.12),
      transparent 32%
    ),
    #ffffff;

  box-shadow: -20px 0 55px rgba(49, 30, 21, 0.16);
}
.mobile-menu .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 24px 22px;

  border-bottom: 1px solid #f0e4dc;
}

.mobile-menu-brand {
  min-width: 0;
}

.mobile-menu-brand img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

.mobile-menu .mobile-menu-close {
  flex: 0 0 auto;

  width: 38px;
  height: 38px;

  margin: 0;
  padding: 0;

  border-radius: 10px;
}
.mobile-menu-brand img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

.mobile-menu .btn-close {
  margin: 0;
}

.mobile-menu .offcanvas-body {
  display: flex;
  flex-direction: column;

  padding: 22px;
}

.mobile-menu-list {
  gap: 5px;
}

.mobile-menu-list .nav-link {
  display: flex;
  align-items: center;

  min-height: 52px;
  padding: 13px 15px !important;

  border-radius: 13px;

  color: #4b3a31 !important;

  font-size: 1rem;
  font-weight: 700;
}

.mobile-menu-list .nav-link:hover,
.mobile-menu-list .nav-link.active {
  background: #fff1e7;
  color: #e95e08 !important;
}

.mobile-menu-actions {
  display: grid;
  gap: 12px;

  margin-top: auto;
  padding-top: 28px;
}

.mobile-menu-actions .btn {
  width: 100%;
  min-height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {
  .main-navbar {
    min-height: 72px;
  }

  .main-navbar .nav-shell {
    width: 100%;
    max-width: 100%;

    padding-right: 16px;
    padding-left: 16px;
  }

  .main-navbar .navbar-brand {
    flex: 0 1 auto;
    max-width: calc(100% - 66px);
  }

  .main-navbar .navbar-brand img {
    max-width: 210px;
  }

  .main-navbar .navbar-toggler {
    display: inline-flex;
    flex: 0 0 46px;
    margin-left: 12px;
  }
}

@media (max-width: 575.98px) {
  .main-navbar .navbar-brand img {
    max-width: 190px;
  }

  .main-navbar .navbar-toggler {
    width: 44px;
    height: 42px;
    flex-basis: 44px;
  }
}

.mobile-menu {
  z-index: 99999;
}

.mobile-menu .offcanvas-body {
  overflow-y: auto;
}

.site-header {
  z-index: 1030;
}

/* =========================================
   HEADER FIJO
========================================= */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;

  width: 100%;

  z-index: 1030;

  background: #ffffff;

  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.07);

  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* Espacio para que el contenido no quede debajo del menú */

body {
  padding-top: 132px;
}

/* Cuando se oculta la barra superior al hacer scroll */

.site-header.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.site-header.is-scrolled .main-navbar {
  min-height: 68px;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.12);
}

/* Tablet y móvil */

@media (max-width: 991.98px) {
  body {
    padding-top: 68px;
  }

  .site-header {
    min-height: 68px;
  }

  .main-navbar {
    min-height: 68px;
  }
}

/* =========================================================
   CARRUSEL BOOTSTRAP DE PAQUETES
========================================================= */

.pricing-section {
  position: relative;

  width: 100%;
  max-width: 100%;

  overflow: hidden;
}

.pricing-carousel {
  position: relative;

  width: 100%;

  padding: 0 5.5rem 3.8rem;
}

.pricing-carousel .carousel-inner {
  overflow: hidden;
}

.pricing-carousel .carousel-item {
  padding: 12px 4px 38px;
}

.pricing-slide-grid {
  display: grid;

  grid-template-columns: repeat(var(--packages-per-slide), minmax(0, 1fr));

  align-items: stretch;

  gap: 28px;

  width: 100%;
}

/* La tarjeta ocupa toda la columna */

.pricing-slide-grid .package-banner {
  width: 100%;
  min-width: 0;
  height: 100%;
}

/* Flechas */

.pricing-carousel .carousel-control-prev,
.pricing-carousel .carousel-control-next {
  width: 5rem;

  opacity: 1;
}

.pricing-carousel .carousel-control-prev {
  justify-content: flex-start;
}

.pricing-carousel .carousel-control-next {
  justify-content: flex-end;
}

.pricing-carousel .carousel-nav {
  display: grid;

  width: 58px;
  height: 58px;

  place-items: center;

  border-radius: 50%;

  background: #4a2f22;
  color: #ffffff;

  font-size: 1.4rem;

  box-shadow: 0 10px 25px rgba(74, 47, 34, 0.25);

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.pricing-carousel .carousel-nav:hover {
  background: #f47a1f;

  transform: scale(1.06);
}

/* Indicadores */

.pricing-carousel .carousel-indicators {
  bottom: 0;

  margin-bottom: 0;
}

.pricing-carousel .carousel-indicators button {
  width: 11px;
  height: 11px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background-color: #f47a1f;

  opacity: 0.3;
}

.pricing-carousel .carousel-indicators button.active {
  opacity: 1;

  transform: scale(1.15);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .pricing-carousel {
    padding-right: 4.5rem;
    padding-left: 4.5rem;
  }

  .pricing-slide-grid {
    gap: 24px;
  }
}

@media (max-width: 991.98px) {
  .pricing-carousel {
    padding-right: 4rem;
    padding-left: 4rem;
  }

  .pricing-slide-grid {
    gap: 22px;
  }

  .pricing-carousel .carousel-nav {
    width: 48px;
    height: 48px;

    font-size: 1.15rem;
  }
}

@media (max-width: 767.98px) {
  .pricing-carousel {
    padding: 0 1rem 3.6rem;
  }

  .pricing-carousel .carousel-item {
    padding: 8px 0 28px;
  }

  .pricing-slide-grid {
    grid-template-columns: minmax(0, 1fr);

    gap: 0;
  }

  .pricing-carousel .carousel-control-prev,
  .pricing-carousel .carousel-control-next {
    width: 3.3rem;
  }

  .pricing-carousel .carousel-nav {
    width: 44px;
    height: 44px;
  }

  .package-banner {
    min-height: 585px;
  }
}

/* =========================================================
   CONTACTO VISUAL
========================================================= */

.contact-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(244, 122, 31, 0.1),
      transparent 24%
    ),
    linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
}

.contact-section h2 {
  margin-bottom: 20px;
  color: #33231c;
  font-size: clamp(2.2rem, 3vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
}

.contact-section > .container > .row {
  align-items: center !important;
}

.contact-list {
  display: grid;

  gap: 15px;

  margin-top: 32px;
}

.contact-list a {
  display: flex;
  align-items: center;

  gap: 15px;

  padding: 14px 16px;

  border: 1px solid #f0e3da;
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.85);
  color: #33231c;

  text-decoration: none;

  box-shadow: 0 10px 28px rgba(67, 38, 24, 0.06);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-list a:hover {
  border-color: rgba(244, 122, 31, 0.42);

  transform: translateY(-3px);

  box-shadow: 0 16px 35px rgba(67, 38, 24, 0.1);
}

.contact-list i {
  display: grid;

  width: 50px;
  height: 50px;

  flex: 0 0 50px;

  place-items: center;

  border-radius: 15px;

  background: #fff0e5;
  color: #f2670d;

  font-size: 1.2rem;
}

.contact-list small {
  display: block;

  margin-bottom: 2px;

  color: #8c776c;

  font-size: 0.72rem;
  font-weight: 600;
}

.contact-list span {
  color: #33231c;

  font-size: 0.9rem;
  font-weight: 700;
}

/* =========================================================
   TARJETA DE ASESORÍA
========================================================= */

.contact-advisor-card {
  position: relative;

  min-height: 590px;

  overflow: hidden;

  border: 1px solid rgba(244, 122, 31, 0.14);
  border-radius: 36px;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 249, 244, 0.97) 52%,
    rgba(255, 245, 236, 0.9) 100%
  );

  box-shadow:
    0 30px 75px rgba(92, 48, 23, 0.14),
    inset 0 1px 0 #ffffff;

  isolation: isolate;
}

/* Fondo geométrico similar al diseño mostrado */

.contact-advisor-pattern {
  position: absolute;
  inset: 0;

  z-index: 0;

  opacity: 0.85;

  background-color: #fffaf6;

  background-image:
    linear-gradient(
      30deg,
      rgba(244, 122, 31, 0.075) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(244, 122, 31, 0.075) 87.5%
    ),
    linear-gradient(
      150deg,
      rgba(244, 122, 31, 0.075) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(244, 122, 31, 0.075) 87.5%
    ),
    linear-gradient(
      30deg,
      rgba(244, 122, 31, 0.055) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(244, 122, 31, 0.055) 87.5%
    ),
    linear-gradient(
      150deg,
      rgba(244, 122, 31, 0.055) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(244, 122, 31, 0.055) 87.5%
    );

  background-size: 110px 190px;

  background-position:
    0 0,
    0 0,
    55px 95px,
    55px 95px;
}

/* Degradado suave detrás del contenido */

.contact-advisor-card::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.94) 48%,
    rgba(255, 255, 255, 0.35) 74%,
    transparent 100%
  );

  pointer-events: none;
}

/* Contenido izquierdo */

.contact-advisor-content {
  position: relative;
  z-index: 4;

  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;

  width: 58%;
  min-height: 590px;

  padding: 54px 38px 92px 52px;
}

.contact-advisor-badge {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 24px;
  padding: 9px 15px;

  border: 1px solid #ffd0ae;
  border-radius: 999px;

  background: rgba(255, 243, 233, 0.96);
  color: #e75f08;

  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-advisor-content h3 {
  max-width: 540px;

  margin: 0 0 20px;

  color: #33231c;

  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.contact-advisor-content > p {
  max-width: 500px;

  margin-bottom: 25px;

  color: #77665d;

  font-size: 0.94rem;
  line-height: 1.75;
}

.contact-advisor-benefits {
  display: grid;

  gap: 11px;

  margin-bottom: 30px;
}

.contact-advisor-benefits span {
  display: flex;
  align-items: center;

  gap: 10px;

  color: #4e3a30;

  font-size: 0.82rem;
  font-weight: 700;
}

.contact-advisor-benefits i {
  color: #f47a1f;
  font-size: 1rem;
}

/* Botón */

.contact-advisor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  min-height: 55px;

  padding: 14px 24px;

  border-radius: 999px;

  background: linear-gradient(135deg, #f47a1f, #ff9b4a);

  color: #ffffff;

  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 16px 35px rgba(244, 122, 31, 0.28);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-advisor-button:hover {
  color: #ffffff;

  transform: translateY(-3px);

  box-shadow: 0 21px 44px rgba(244, 122, 31, 0.36);
}

.contact-advisor-button .bi-arrow-right {
  transition: transform 0.25s ease;
}

.contact-advisor-button:hover .bi-arrow-right {
  transform: translateX(5px);
}

/* Imagen de la asesora */

.contact-advisor-person {
  position: absolute;
  z-index: 3;

  right: -10px;
  bottom: 0;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  width: 48%;
  height: 100%;

  pointer-events: none;
}

.contact-advisor-circle {
  position: absolute;

  right: 10px;
  bottom: 55px;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 190, 137, 0.8) 0%,
    rgba(255, 225, 199, 0.67) 48%,
    rgba(255, 245, 236, 0.2) 70%,
    transparent 73%
  );
}

.contact-advisor-person img {
  position: relative;
  z-index: 2;

  display: block;

  width: auto;
  max-width: none;
  height: 91%;
  max-height: 560px;

  object-fit: contain;
  object-position: bottom center;

  filter: drop-shadow(0 24px 24px rgba(74, 38, 19, 0.18));
}

/* Tarjeta flotante */

.contact-advisor-floating {
  position: absolute;
  z-index: 6;

  right: 25px;
  bottom: 28px;

  display: flex;
  align-items: center;

  gap: 12px;

  min-width: 225px;

  padding: 14px 17px;

  border: 1px solid rgba(244, 122, 31, 0.17);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.95);
  color: #33231c;

  box-shadow: 0 18px 40px rgba(76, 37, 17, 0.15);

  backdrop-filter: blur(12px);
}

.contact-advisor-floating-icon {
  display: grid;

  width: 45px;
  height: 45px;

  flex: 0 0 45px;

  place-items: center;

  border-radius: 14px;

  background: #fff0e5;
  color: #f2670d;

  font-size: 1.2rem;
}

.contact-advisor-floating strong,
.contact-advisor-floating small {
  display: block;
}

.contact-advisor-floating strong {
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-advisor-floating small {
  margin-top: 2px;

  color: #806c62;

  font-size: 0.67rem;
}

/* Logo */

.contact-advisor-logo {
  position: absolute;
  z-index: 6;

  left: 52px;
  bottom: 29px;

  display: flex;
  align-items: center;

  gap: 8px;

  color: #f2670d;

  font-size: 1.12rem;
  font-weight: 700;
}

.contact-advisor-logo i {
  font-size: 1.3rem;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .contact-advisor-content {
    width: 61%;

    padding-left: 40px;
  }

  .contact-advisor-person {
    right: -25px;

    width: 46%;
  }

  .contact-advisor-person img {
    height: 85%;
  }

  .contact-advisor-circle {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 991.98px) {
  .contact-advisor-card {
    min-height: 650px;

    margin-top: 20px;
  }

  .contact-advisor-content {
    width: 58%;
    min-height: 650px;

    padding: 48px 25px 105px 42px;

    text-align: left;
  }

  .contact-advisor-person {
    width: 48%;
  }

  .contact-advisor-person img {
    height: 78%;
  }
}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 767.98px) {
  .contact-advisor-card {
    min-height: 850px;

    border-radius: 28px;
  }

  .contact-advisor-card::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 55%,
      rgba(255, 255, 255, 0.25) 76%,
      transparent 100%
    );
  }

  .contact-advisor-content {
    width: 100%;
    min-height: 0;

    justify-content: flex-start;

    padding: 38px 24px 390px;
  }

  .contact-advisor-content h3 {
    font-size: 2.15rem;
  }

  .contact-advisor-button {
    width: 100%;
  }

  .contact-advisor-person {
    right: 50%;
    bottom: 15px;

    width: 100%;
    height: 390px;

    transform: translateX(50%);
  }

  .contact-advisor-person img {
    height: 100%;
    max-height: 390px;
  }

  .contact-advisor-circle {
    right: 50%;
    bottom: 25px;

    width: 290px;
    height: 290px;

    transform: translateX(50%);
  }

  .contact-advisor-floating {
    right: 18px;
    bottom: 22px;
    left: 18px;

    min-width: 0;
  }

  .contact-advisor-logo {
    display: none;
  }
}
.contact-visual-content {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;

  width: 65%;
  min-height: 540px;

  padding: 55px 50px;
}

.contact-visual-badge {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  margin-bottom: 22px;
  padding: 8px 14px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.1);
  color: #ffd0a8;

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}

.contact-visual-content h3 {
  max-width: 560px;

  margin: 0 0 20px;

  color: #ffffff;

  font-size: clamp(2rem, 3.1vw, 3.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.contact-visual-content > p {
  max-width: 520px;

  margin-bottom: 24px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 0.96rem;
  line-height: 1.75;
}

.contact-visual-benefits {
  display: grid;

  gap: 10px;

  margin-bottom: 30px;
}

.contact-visual-benefits span {
  display: flex;
  align-items: center;

  gap: 9px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 0.83rem;
  font-weight: 600;
}

.contact-visual-benefits i {
  color: #ffb879;
}

.contact-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  min-height: 56px;

  padding: 15px 25px;

  border-radius: 999px;

  background: #ffffff;
  color: #cf4f08;

  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 16px 38px rgba(34, 12, 1, 0.25);

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-whatsapp-button:hover {
  background: #fff3e8;
  color: #b94402;

  transform: translateY(-3px);

  box-shadow: 0 21px 45px rgba(34, 12, 1, 0.32);
}

.contact-whatsapp-button .bi-arrow-right {
  transition: transform 0.25s ease;
}

.contact-whatsapp-button:hover .bi-arrow-right {
  transform: translateX(5px);
}

/* Tarjeta flotante */

.contact-floating-card {
  position: absolute;
  z-index: 5;

  right: 24px;
  bottom: 24px;

  display: flex;
  align-items: center;

  gap: 12px;

  min-width: 220px;

  padding: 14px 17px;

  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.94);
  color: #33231c;

  box-shadow: 0 18px 42px rgba(32, 12, 2, 0.24);

  backdrop-filter: blur(12px);
}

.contact-floating-icon {
  display: grid;

  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  place-items: center;

  border-radius: 13px;

  background: #fff0e5;
  color: #f2670d;

  font-size: 1.2rem;
}

.contact-floating-card strong,
.contact-floating-card small {
  display: block;
}

.contact-floating-card strong {
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-floating-card small {
  margin-top: 2px;

  color: #806c62;

  font-size: 0.68rem;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
  .contact-section {
    text-align: center;
  }

  .contact-list {
    max-width: 620px;

    margin-right: auto;
    margin-left: auto;

    text-align: left;
  }

  .contact-visual-card {
    min-height: 570px;

    margin-top: 20px;
  }

  .contact-visual-content {
    width: 75%;
    min-height: 570px;

    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .contact-visual-card {
    min-height: 620px;

    border-radius: 27px;
  }

  .contact-visual-overlay {
    background: linear-gradient(
      180deg,
      rgba(54, 24, 11, 0.92) 0%,
      rgba(65, 25, 7, 0.88) 62%,
      rgba(65, 25, 7, 0.72) 100%
    );
  }

  .contact-visual-content {
    width: 100%;
    min-height: 620px;

    justify-content: flex-start;

    padding: 42px 25px 150px;
  }

  .contact-visual-content h3 {
    font-size: 2.2rem;
  }

  .contact-floating-card {
    right: 20px;
    bottom: 20px;
    left: 20px;

    min-width: 0;
  }

  .contact-whatsapp-button {
    width: 100%;
  }
}

/* =========================================================
   CORRECCIÓN FINAL CTA
   Colocar al final de todo el archivo CSS
========================================================= */

.cta-section.section-space {
  width: 100%;
  margin: 0;
  padding: 24px 0 !important;
}

.cta-section > .container,
.cta-section > .container-fluid {
  width: 100%;
  max-width: 100% !important;
  margin: 0 auto;
  padding-right: 24px !important;
  padding-left: 24px !important;
}

.cta-section .cta-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px 72px;
}

/* Tablet */

@media (max-width: 991.98px) {
  .cta-section.section-space {
    padding: 20px 0 !important;
  }

  .cta-section > .container,
  .cta-section > .container-fluid {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  .cta-section .cta-panel {
    padding: 55px 42px;
  }
}

/* Celular */

@media (max-width: 767.98px) {
  .cta-section.section-space {
    padding: 14px 0 !important;
  }

  .cta-section > .container,
  .cta-section > .container-fluid {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .cta-section .cta-panel {
    padding: 70px 20px 20px 20px !important;
    border-radius: 26px;
  }
}

/* CTA completamente ancho */

.cta-section {
  width: 100%;
  margin: 0;
  padding: 0 !important;
}

.cta-section .container,
.cta-section .container-fluid {
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cta-section .cta-panel {
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
  padding: 20px 72px;
  border-radius: 0 !important;
  box-shadow: none;
}

/* =========================================================
   ACCESO AL SISTEMA
========================================================= */

.system-access-section {
  width: 100%;
  margin: 0;
  padding: 0;

  overflow: hidden;
}

.system-access-banner {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  min-height: 430px;

  overflow: hidden;

  padding: 45px 8% 45px 42%;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.14),
      transparent 26%
    ),
    linear-gradient(115deg, #0d713f 0%, #18a35d 42%, #f47a1f 100%);

  color: #ffffff;

  isolation: isolate;
}

/* Degradado oscuro detrás de la persona */

.system-access-banner::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(7, 67, 36, 0.5) 0%,
    rgba(7, 67, 36, 0.08) 42%,
    rgba(244, 122, 31, 0.08) 100%
  );

  pointer-events: none;
}

/* Imagen izquierda */

.system-access-person {
  position: absolute;

  z-index: 3;

  bottom: 0;
  left: 2%;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  width: 38%;
  height: 100%;

  pointer-events: none;
}

.system-access-person img {
  display: block;
  width: auto;
  max-width: none;
  height: 80%;
  max-height: 500px;
  object-fit: contain;
  object-position: bottom center;

  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.26));
}

/* Contenido */

.system-access-content {
  position: relative;

  z-index: 5;

  width: 100%;
  max-width: 780px;
}

.system-access-kicker {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 13px;
  padding: 8px 14px;

  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  backdrop-filter: blur(10px);
}

.system-access-small {
  margin: 0 0 2px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1rem;
  font-weight: 500;
}

.system-access-brand {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 10px;

  color: #ffffff;
}

.system-access-brand i {
  font-size: clamp(2.7rem, 5vw, 5rem);

  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.16));
}

.system-access-brand span {
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.065em;

  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.system-access-content h2 {
  max-width: 720px;
  margin: 18px 0 14px;
  color: #ffffff;
  font-size: clamp(1.7rem, 2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.08;
}

.system-access-description {
  max-width: 680px;

  margin-bottom: 22px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 0.98rem;
  line-height: 1.75;
}

/* Beneficios */

.system-access-features {
  display: flex;
  flex-wrap: wrap;

  gap: 12px 24px;

  margin-bottom: 28px;
}

.system-access-features span {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: #ffffff;

  font-size: 0.88rem;
  font-weight: 700;
}

.system-access-features i {
  color: #ffe0bd;
}

/* Botón */

.system-access-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 13px;

  min-height: 58px;

  padding: 15px 28px;

  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;

  background: #ffffff;
  color: #d65b0a;

  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 18px 38px rgba(19, 69, 40, 0.28);

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.system-access-button:hover {
  background: #fff5eb;
  color: #b84700;

  transform: translateY(-3px);

  box-shadow: 0 23px 48px rgba(19, 69, 40, 0.34);
}

.system-access-button i {
  transition: transform 0.25s ease;
}

.system-access-button:hover i {
  transform: translateX(5px);
}

/* Decoraciones */

.system-access-circle {
  position: absolute;

  z-index: 0;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;

  pointer-events: none;
}

.system-access-circle-one {
  top: -260px;
  right: -120px;

  width: 530px;
  height: 530px;
}

.system-access-circle-two {
  bottom: -250px;
  left: -170px;

  width: 470px;
  height: 470px;

  border-width: 65px;
  border-color: rgba(255, 255, 255, 0.05);
}

.system-access-dots {
  position: absolute;

  z-index: 2;

  top: 60px;
  right: 36%;

  width: 110px;
  height: 90px;

  opacity: 0.28;

  background-image: radial-gradient(circle, #ffffff 2.5px, transparent 3px);

  background-size: 20px 20px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {
  .system-access-banner {
    padding-right: 5%;
    padding-left: 40%;
  }

  .system-access-person {
    left: -2%;

    width: 42%;
  }

  .system-access-person img {
    height: 98%;
  }
}

@media (max-width: 991.98px) {
  .system-access-banner {
    min-height: 650px;

    align-items: flex-start;

    padding: 55px 45px 340px;
  }

  .system-access-content {
    max-width: 100%;

    text-align: center;
  }

  .system-access-brand,
  .system-access-features {
    justify-content: center;
  }

  .system-access-content h2,
  .system-access-description {
    margin-right: auto;
    margin-left: auto;
  }

  .system-access-person {
    right: 50%;
    bottom: 0;
    left: auto;

    width: 100%;
    height: 330px;

    transform: translateX(50%);
  }

  .system-access-person img {
    height: 115%;
    max-height: 380px;
  }

  .system-access-dots {
    right: 35px;
  }
}

/* =========================================================
   MÓVIL
========================================================= */

@media (max-width: 575.98px) {
  .system-access-banner {
    min-height: 700px;

    padding: 38px 22px 310px;
  }

  .system-access-brand {
    gap: 8px;
  }

  .system-access-brand i {
    font-size: 2.4rem;
  }

  .system-access-brand span {
    font-size: 3.4rem;
  }

  .system-access-content h2 {
    margin-top: 14px;

    font-size: 2rem;
  }

  .system-access-description {
    font-size: 0.9rem;
  }

  .system-access-features {
    gap: 10px 17px;
  }

  .system-access-button {
    width: 100%;
  }

  .system-access-person {
    height: 295px;
  }

  .system-access-person img {
    height: 108%;
    max-height: 330px;
  }
} /* =========================================================
   ACCESO AL SISTEMA — ESTILO SIMPLIFACT
========================================================= */

.system-access-banner {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  min-height: 430px;

  overflow: hidden;

  padding: 45px 8% 45px 42%;

  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(255, 205, 163, 0.28),
      transparent 30%
    ),
    linear-gradient(118deg, #3b180b 0%, #7f2d08 34%, #c64d08 65%, #f47a1f 100%);

  color: #ffffff;

  isolation: isolate;
}

/* Sombra suave detrás de la asesora */

.system-access-banner::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(45, 17, 6, 0.45) 0%,
    rgba(91, 31, 6, 0.12) 42%,
    transparent 75%
  );

  pointer-events: none;
}

/* Etiqueta */

.system-access-kicker {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 13px;
  padding: 8px 14px;

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.1);
  color: #ffd0a8;

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  backdrop-filter: blur(10px);
}

.system-access-small {
  margin: 0 0 4px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 1rem;
  font-weight: 500;
}

/* =========================================================
   LOGO VERDE DEL SISTEMA
========================================================= */

.system-access-brand {
  display: flex;
  align-items: center;

  gap: 14px;

  width: max-content;
  max-width: 100%;

  margin-bottom: 14px;
  padding: 12px 22px;

  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow: 0 18px 38px rgba(54, 18, 1, 0.2);

  color: #45a447;
}

.system-access-brand i {
  color: #45a447;

  font-size: clamp(2rem, 3.5vw, 3.7rem);

  filter: drop-shadow(0 5px 8px rgba(26, 110, 42, 0.14));
}

.system-access-brand span {
  color: #45a447;

  font-size: clamp(2.7rem, 5.5vw, 5.7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.065em;

  text-shadow: 0 5px 12px rgba(30, 112, 45, 0.12);
}

/* Texto */

.system-access-content h2 {
  max-width: 720px;

  margin: 20px 0 14px;

  color: #ffffff;

  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.08;
}

.system-access-description {
  max-width: 680px;

  margin-bottom: 22px;

  color: rgba(255, 255, 255, 0.84);

  font-size: 0.98rem;
  line-height: 1.75;
}

/* Características */

.system-access-features {
  display: flex;
  flex-wrap: wrap;

  gap: 12px 24px;

  margin-bottom: 28px;
}

.system-access-features span {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: #ffffff;

  font-size: 0.88rem;
  font-weight: 700;
}

.system-access-features i {
  color: #ffc18d;
}

/* Botón de acceso */

.system-access-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 13px;

  min-height: 58px;

  padding: 15px 30px;

  border: 2px solid #ffffff;
  border-radius: 999px;

  background: #ffffff;
  color: #d65408;

  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 18px 38px rgba(54, 18, 1, 0.28);

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.system-access-button:hover {
  background: #fff0e3;
  color: #b84200;

  transform: translateY(-3px);

  box-shadow: 0 23px 48px rgba(54, 18, 1, 0.35);
}

.system-access-button i {
  transition: transform 0.25s ease;
}

.system-access-button:hover i {
  transform: translateX(5px);
}

/* Decoraciones */

.system-access-circle {
  position: absolute;

  z-index: 0;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  pointer-events: none;
}

.system-access-circle-one {
  top: -260px;
  right: -120px;

  width: 530px;
  height: 530px;
}

.system-access-circle-two {
  bottom: -250px;
  left: -170px;

  width: 470px;
  height: 470px;

  border: 65px solid rgba(255, 255, 255, 0.035);
}

.system-access-dots {
  position: absolute;

  z-index: 2;

  top: 60px;
  right: 36%;

  width: 110px;
  height: 90px;

  opacity: 0.24;

  background-image: radial-gradient(circle, #ffffff 2.5px, transparent 3px);

  background-size: 20px 20px;
}

.hero-section {
  position: relative;
}

.hero-section .carousel-item {
  min-height: 680px;
}

.hero-carousel-control {
  width: 70px;
  opacity: 1;
}

.hero-carousel-control.carousel-control-prev {
  justify-content: flex-start;
  padding-left: 14px;
}

.hero-carousel-control.carousel-control-next {
  justify-content: flex-end;
  padding-right: 14px;
}

.hero-carousel-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(31, 20, 14, 0.8);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.hero-indicators {
  z-index: 10;
  bottom: 22px;
  gap: 7px;
  margin-bottom: 0;
}

.hero-indicators button {
  width: 10px !important;
  height: 10px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background-color: #ffffff !important;
  opacity: 0.42;
  transition:
    width 0.25s ease,
    opacity 0.25s ease;
}

.hero-indicators button.active {
  width: 30px !important;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .hero-section .carousel-item {
    min-height: auto;
  }

  .hero-carousel-control {
    width: 52px;
  }

  .hero-carousel-arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 767.98px) {
  .hero-carousel-control {
    top: auto;
    bottom: 24px;
    height: 48px;
  }

  .hero-carousel-control.carousel-control-prev {
    left: calc(50% - 82px);
    justify-content: center;
    padding: 0;
  }

  .hero-carousel-control.carousel-control-next {
    right: calc(50% - 82px);
    justify-content: center;
    padding: 0;
  }

  .hero-indicators {
    bottom: 34px;
  }
}

/* =========================================================
   SYSTEM ACCESS - CORRECCIÓN MÓVIL
========================================================= */

@media (max-width: 991.98px) {
  .system-access-banner {
    display: flex;
    flex-direction: column;

    min-height: auto;

    padding: 48px 28px 0;

    text-align: center;
  }

  .system-access-content {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 720px;

    margin: 0 auto;
  }

  .system-access-content > div:first-child {
    display: flex;
    justify-content: center;

    margin-bottom: 22px;
  }

  .system-access-content > div:first-child img {
    display: block;

    width: auto;
    max-width: 280px;
    height: auto !important;

    object-fit: contain;
  }

  .system-access-content h2 {
    max-width: 650px;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    line-height: 1.08;
    letter-spacing: 1px;
  }

  .system-access-description {
    max-width: 620px;

    margin-right: auto;
    margin-left: auto;

    font-size: 0.95rem;
  }

  .system-access-features {
    justify-content: center;

    margin-bottom: 26px;
  }

  .system-access-button {
    margin-bottom: 24px;
  }

  .system-access-person {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 250px;
    margin-top: 12px;

    transform: none;
  }

  .system-access-person img {
    display: block;
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 360px;
    margin: 0 auto;
    object-fit: contain;
    object-position: bottom center;
  }

  .system-access-dots {
    top: 18px;
    right: 18px;
  }
}

/* =========================================================
   ESPACIO LATERAL PARA EL CARRUSEL DE SOLUCIONES
========================================================= */

.solutions-carousel {
  width: 100%;
  padding-right: 5.5rem;
  padding-left: 5.5rem;
}

.solutions-carousel .carousel-inner {
  overflow: hidden;
}

.solutions-carousel .carousel-item {
  padding: 14px 4px 38px;
}

.solution-slide-grid {
  width: 100%;
  gap: 2rem;
}

/* Laptop */

@media (max-width: 1199.98px) {
  .solutions-carousel {
    padding-right: 4.5rem;
    padding-left: 4.5rem;
  }
}

/* Tablet */

@media (max-width: 991.98px) {
  .solutions-carousel {
    padding-right: 4rem;
    padding-left: 4rem;
  }

  .solution-slide-grid {
    gap: 1.5rem;
  }
}

/* Móvil */
@media (max-width: 767.98px) {
  .solutions-carousel {
    padding-right: 18px;
    padding-left: 18px;
  }

  .solutions-carousel .carousel-inner {
    overflow: hidden;
  }

  .solutions-carousel .carousel-item {
    padding: 10px 0 34px;
  }

  .solution-slide-grid {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
  }

  .solution-feature-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .solutions-carousel .carousel-control-prev,
  .solutions-carousel .carousel-control-next {
    width: 48px;
  }

  .solutions-carousel .carousel-control-prev {
    left: 2px;
  }

  .solutions-carousel .carousel-control-next {
    right: 2px;
  }
}
/* =========================================================
   ALINEACIÓN DE ALTURA — CARRUSEL DE SOLUCIONES
========================================================= */

.solutions-carousel .carousel-inner {
  align-items: stretch;
}

.solutions-carousel .carousel-item {
  height: 100%;
}

.solutions-carousel .carousel-item > .solution-slide-grid {
  height: 100%;
}

.solution-slide-grid {
  align-items: stretch;
}

.solution-feature-card {
  height: 100%;
  min-height: 620px;
}

.solution-image-wrapper {
  flex: 0 0 300px;
  height: 300px;
}

.solution-feature-content {
  flex: 1;
}

@media (max-width: 767.98px) {
  .hero-status-card {
    display: none !important;
  }
}

/* =========================================================
   CTA — CORRECCIÓN MÓVIL
========================================================= */

@media (max-width: 767.98px) {
  .cta-section {
    padding: 28px 0;
  }

  .cta-panel {
    width: 100%;
    padding: 52px 24px 38px;
    border-radius: 0;
    text-align: center;
  }

  .cta-panel .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }

  .cta-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .cta-kicker {
    margin-bottom: 22px;
    padding: 8px 15px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .cta-content h2 {
    max-width: 330px;
    margin: 0 auto 24px;
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
  }

  .cta-content h2 span {
    display: block;
  }

  .cta-content > p {
    max-width: 340px;
    margin: 0 auto 28px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .cta-benefits {
    display: grid;
    gap: 14px;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 32px;
    text-align: left;
  }

  .cta-benefits span {
    justify-content: flex-start;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .cta-benefits i {
    flex: 0 0 auto;
    margin-top: 2px;
  }

  .cta-actions {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 20px;
    gap: 14px;
    border-radius: 22px;
  }

  .cta-primary-button,
  .cta-secondary-link {
    width: 100%;
    min-height: 54px;
  }

  .cta-primary-button {
    padding: 14px 18px;
    font-size: 0.86rem;
  }

  .cta-secondary-link {
    padding: 13px 16px;
    font-size: 0.82rem;
  }

  .cta-actions small {
    font-size: 0.68rem;
  }

  .cta-decoration-one {
    top: -170px;
    right: -210px;
    width: 360px;
    height: 360px;
  }

  .cta-decoration-two {
    left: -180px;
    bottom: -220px;
    width: 320px;
    height: 320px;
  }

  .cta-dots {
    display: none;
  }
}

.solution-slide-grid {
  display: grid;
  grid-template-columns: repeat(var(--solutions-per-slide), minmax(0, 1fr));
  gap: 24px;
}

.pricing-tax-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  width: fit-content;
  margin: 1.5rem auto 0;

  padding: 0.65rem 1rem;
  background: rgba(244, 122, 31, 0.08);
  border: 1px solid rgba(244, 122, 31, 0.2);
  border-radius: 999px;

  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.pricing-tax-badge i,
.pricing-tax-badge strong {
  color: var(--primary);
}

.cta-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.cta-primary-button .bi-whatsapp {
  font-size: 1.2rem;
}

.cta-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  object-position: center;
}

.footer-contact h6 {
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  margin-bottom: 1.35rem;
  color: #d9d9d9;
}

.footer p {
  color: #d9d9d9;
}

.footer a {
  color: #d9d9d9 !important;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  color: #f47a1f;
  font-size: 1.25rem;
}

.footer-contact a {
  color: #d9e3ff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: #f47a1f;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links h6 {
  margin-bottom: 1.2rem;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.7rem;

  margin-bottom: 1rem;

  color: #d9d9d9;
  font-size: 1.05rem;
  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a i {
  color: #f47a1f;
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.footer-links a:hover {
  color: #f47a1f;
  transform: translateX(4px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* =========================================================
   IMAGEN OFICINA SIMPLIFACT
========================================================= */

.simplifact-office-section {
  padding: 80px 0;
  background: #fff;
}

.simplifact-office-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 480px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.simplifact-office-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

.simplifact-office-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 20, 20, 0.88) 0%,
    rgba(20, 20, 20, 0.65) 35%,
    rgba(20, 20, 20, 0.08) 70%,
    transparent 100%
  );
}

.simplifact-office-overlay {
  position: absolute;
  z-index: 2;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
  color: white;
}

.simplifact-office-overlay h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin: 15px 0;
}

.simplifact-office-overlay h2 span {
  color: #ff7200;
}

.simplifact-office-overlay p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .simplifact-office-section {
    padding: 50px 15px;
  }

  .simplifact-office-card {
    min-height: 550px;
    border-radius: 24px;
  }

  .simplifact-office-image {
    min-height: 550px;
  }

  .simplifact-office-card::after {
    background: linear-gradient(
      0deg,
      rgba(20, 20, 20, 0.95) 0%,
      rgba(20, 20, 20, 0.6) 60%,
      rgba(20, 20, 20, 0.15) 100%
    );
  }

  .simplifact-office-overlay {
    left: 25px;
    right: 25px;
    top: auto;
    bottom: 35px;
    transform: none;
  }
}

/* =========================================
   CTA FULL WIDTH + CONTENIDO CENTRADO
========================================= */

.cta-section {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* El fondo ocupa TODO el monitor */
.cta-panel {
  position: relative;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(255, 190, 137, 0.3),
      transparent 30%
    ),
    linear-gradient(125deg, #36180c 0%, #8c3208 48%, #f47a1f 100%);
}

/* Solo esto limita el contenido */
.cta-inner {
  position: relative;
  width: min(100% - 48px, 1500px);
  margin-inline: auto;
  padding: 55px 0;
}

/* Imagen */
.cta-image {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: bottom center;
}

/* Ultrawide */
@media (min-width: 1800px) {
  .cta-inner {
    max-width: 1600px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .cta-inner {
    width: min(100% - 36px, 720px);
    padding: 50px 0;
  }
}

/* Móvil */
@media (max-width: 575.98px) {
  .cta-inner {
    width: calc(100% - 32px);
    padding: 45px 0;
  }
}

/* =========================================
   SICOFI - FULL WIDTH + CONTENIDO CENTRADO
========================================= */

.system-access-section {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Fondo ocupa todo el monitor */
.system-access-banner {
  position: relative;
  width: 100%;
  min-height: 430px;
  padding: 0 !important;
  overflow: hidden;
}

/* Área real de contenido */
.system-access-inner {
  position: relative;

  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;

  width: min(calc(100% - 48px), 1500px);
  min-height: 430px;

  margin: 0 auto;
  padding: 35px 0;
}

/* =========================================
   PERSONA
========================================= */

.system-access-person {
  position: relative !important;

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

  display: flex;
  align-items: flex-end;
  justify-content: center;

  width: 100% !important;
  height: 100%;

  align-self: stretch;
  pointer-events: none;
}

.system-access-person img {
  display: block;

  width: auto;
  max-width: 100%;

  height: 100%;
  max-height: 430px;

  margin-top: auto;

  object-fit: contain;
  object-position: bottom center;

  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.26));
}

/* =========================================
   CONTENIDO
========================================= */

.system-access-content {
  position: relative;
  z-index: 5;

  width: 100%;
  max-width: 720px;

  padding-left: 35px;
}

/* Logo */
.system-access-content > div:first-child img {
  display: block;
  width: auto;
  max-width: 280px;
  height: auto !important;
}

/* =========================================
   PANTALLAS GRANDES
========================================= */

@media (min-width: 1800px) {
  .system-access-inner {
    max-width: 1600px;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .system-access-person img {
    max-height: 450px;
  }

  .system-access-content {
    padding-left: 50px;
  }
}

/* =========================================================
   SICOFI - CORRECCIÓN RESPONSIVE FINAL
   DEJAR AL FINAL DEL CSS
========================================================= */

@media (max-width: 991.98px) {
  .system-access-banner {
    min-height: auto !important;
    padding: 0 !important;
  }

  .system-access-inner {
    display: grid;
    grid-template-columns: 1fr;
    width: min(calc(100% - 36px), 720px);
    min-height: auto;
    margin: 0 auto;
    padding: 45px 0 0;
  }

  /* Primero mostramos el contenido */
  .system-access-content {
    order: 1;

    width: 100%;
    max-width: 100%;

    padding: 0 !important;
    margin: 0 auto;

    text-align: center;
  }

  /* Logo SICOFI */
  .system-access-content > div:first-child {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .system-access-content > div:first-child img {
    width: auto;
    max-width: 260px;
    height: auto !important;
  }

  .system-access-content h2 {
    max-width: 620px;
    margin: 0 auto 18px;

    font-size: 2rem;
    line-height: 1.12;
  }

  .system-access-description {
    max-width: 600px;

    margin-right: auto;
    margin-left: auto;

    font-size: 0.95rem;
  }

  .system-access-features {
    justify-content: center;

    gap: 12px 20px;
  }

  .system-access-button {
    margin-bottom: 20px;
  }

  /* La chica va después del contenido */
  .system-access-person {
    order: 2;

    position: relative !important;

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

    width: 100% !important;
    height: 310px !important;

    margin: 0 auto;

    transform: none !important;
  }

  .system-access-person img {
    display: block;

    width: auto !important;
    max-width: 100% !important;

    height: 100% !important;
    max-height: 310px !important;

    margin: 0 auto;

    object-fit: contain;
    object-position: bottom center;
  }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 575.98px) {
  .system-access-inner {
    width: calc(100% - 32px);
    padding-top: 35px;
  }

  .system-access-content > div:first-child img {
    max-width: 210px;
  }

  .system-access-content h2 {
    margin-bottom: 16px;

    font-size: 1.65rem;
    line-height: 1.15;
  }

  .system-access-description {
    margin-bottom: 20px;

    font-size: 0.9rem;
    line-height: 1.65;
  }

  .system-access-features {
    display: flex;
    justify-content: center;

    gap: 9px 14px;

    margin-bottom: 24px;
  }

  .system-access-features span {
    font-size: 0.78rem;
  }

  .system-access-button {
    width: 100%;
    min-height: 54px;

    margin-bottom: 15px;

    font-size: 0.88rem;
  }

  .system-access-person {
    height: 270px !important;
  }

  .system-access-person img {
    height: 270px !important;
    max-height: 270px !important;
  }

  .system-access-dots {
    top: 15px;
    right: 15px;

    width: 70px;
    height: 70px;
  }
}
