/* ============================================================
   LIMBERFY — Landing 4
   ============================================================ */

@font-face { font-family:'Axiforma'; src:url('../assets/fonts/Axiforma-Light.ttf') format('truetype'); font-weight:300; font-display:swap; }
@font-face { font-family:'Axiforma'; src:url('../assets/fonts/Axiforma-Regular.ttf') format('truetype'); font-weight:400; font-display:swap; }
@font-face { font-family:'Axiforma'; src:url('../assets/fonts/Axiforma-Medium.ttf') format('truetype'); font-weight:500; font-display:swap; }
@font-face { font-family:'Axiforma'; src:url('../assets/fonts/Axiforma-Bold.ttf') format('truetype'); font-weight:700; font-display:swap; }
@font-face { font-family:'Axiforma'; src:url('../assets/fonts/Axiforma-Black.ttf') format('truetype'); font-weight:900; font-display:swap; }
@font-face { font-family:'adineue PRO'; src:url('../assets/fonts/adineuePRO-Bold.ttf') format('truetype'); font-weight:700; font-display:swap; }

:root {
  --blue:      #2D6CF6;
  --blue-dark: #1E4FD0;
  --teal:      #3CC9C0;
  --green:     #5BCB5A;
  --navy:      #16243F;
  --text:      #16243F;
  --text-gray: #5C6B82;
  --bg:        #F7FAFF;
  --blue-soft: #EEF4FF;
  --white:     #ffffff;
  --border:    #E2E8F0;
  --gradient-brand: linear-gradient(90deg, #2D6CF6 0%, #3CC9C0 55%, #9FE870 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Axiforma', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.5; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'adineue PRO', 'Axiforma', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: 18px; cursor: pointer;
  border: none; white-space: nowrap; transition: transform .2s, box-shadow .2s;
}
.btn--gradient {
  background: var(--gradient-brand); color: #fff;
  box-shadow: 0 8px 24px rgba(30,111,224,0.35);
}
.btn--gradient:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(30,111,224,0.45); }

/* ── NAVBAR ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 32px;
}
.nav__logo img { height: 34px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.nav__links { display: flex; list-style: none; gap: 28px; }
.nav__links a { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: #fff; }

/* ── HERO ── */
.hero { background: var(--white); padding: 72px 0 64px; overflow: hidden; }
.hero__inner { display: flex; align-items: center; gap: 48px; }
.hero__left  { flex: 1; min-width: 0; }

.hero__badge {
  display: inline-block; background: var(--blue-soft); color: var(--blue);
  font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 20px;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(26px, 3.4vw, 44px); font-weight: 700; line-height: 1.18;
  color: var(--text); margin-bottom: 18px;
}
.hero__title .accent { color: var(--blue); }
.hero__sub {
  font-size: 16px; color: var(--text-gray); line-height: 1.7;
  max-width: 460px;
}

.hero__right { flex: 1; min-width: 0; position: relative; }
.hero__photo-wrap { position: relative; }
.hero__photo { width: 100%; border-radius: 16px; }

.float-badge {
  position: absolute; background: var(--white);
  border-radius: 12px; padding: 8px 14px;
  box-shadow: 0 4px 20px rgba(15,23,42,0.13);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text);
  white-space: nowrap; animation: floatBadge 3s ease-in-out infinite;
}
.float-badge i { font-size: 16px; }
.float-badge--excel   { top: 12%;  left: -10%; animation-delay: 0s;    }
.float-badge--correos { top: 6%;   right: -5%; animation-delay: .6s;   }
.float-badge--sunat   { top: 42%;  right: -8%; animation-delay: 1.2s;  }
.float-badge--erp     { bottom: 28%; left: -8%; animation-delay: .3s;  }
.float-badge--mas     { bottom: 10%; right: -4%; animation-delay: .9s; }
.float-badge--excel   .icon { color: #217346; }
.float-badge--correos .icon { color: #EA4335; }
.float-badge--sunat   .icon { color: var(--blue); }
.float-badge--erp     .icon { color: var(--teal); }
.float-badge--mas     .icon { color: var(--text-gray); }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ── PROBLEM SECTION ── */
.problems { background: var(--bg); padding: 72px 0; }
.problems__title {
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 700;
  text-align: center; margin-bottom: 40px;
}
.problems__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.problem-card {
  background: var(--white); border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.07);
}
.problem-card__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.problem-card__icon i { color: var(--blue); font-size: 20px; }
.problem-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.problem-card p  { font-size: 14px; color: var(--text-gray); line-height: 1.65; }

/* ── DIAGNOSTIC BANNER ── */
.diag-banner { background: var(--blue-soft); padding: 28px 0; }
.diag-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.diag-banner__left { display: flex; align-items: center; gap: 16px; }
.diag-banner__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.diag-banner__icon i { color: var(--white); font-size: 20px; }
.diag-banner__text strong {
  display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px;
}
.diag-banner__text strong .accent { color: var(--blue); }
.diag-banner__text span { font-size: 13px; color: var(--text-gray); }

/* ── SOLUTION ── */
.solution { background: var(--white); padding: 80px 0 64px; }
.solution__inner { display: flex; align-items: center; gap: 56px; }
.solution__left { flex: 1; min-width: 0; }
.solution__badge {
  display: inline-block; background: var(--blue-soft); color: var(--blue);
  font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 20px;
  margin-bottom: 20px;
}
.solution__title {
  font-size: clamp(24px, 3vw, 38px); font-weight: 700; line-height: 1.22;
  color: var(--text); margin-bottom: 40px;
}
.solution__title .accent { color: var(--blue); }

.solution__features { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.sol-feat {
  display: flex; align-items: flex-start; gap: 12px;
}
.sol-feat__icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sol-feat__icon i { color: var(--blue); font-size: 16px; }
.sol-feat p { font-size: 13px; color: var(--text-gray); line-height: 1.55; padding-top: 2px; }
.sol-feat p strong { display: block; color: var(--text); font-size: 14px; margin-bottom: 2px; }

.solution__right { flex: 1; min-width: 0; }
.solution__dashboard {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(45,108,246,0.18);
  animation: float 5s ease-in-out infinite;
}
.solution__dashboard img { width: 100%; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ── PARTNERS ── */
.partners4 { background: var(--navy); padding: 48px 0; }
.partners4__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.partners4__left p {
  font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 24px;
}
.partners4__logos img { width: 100%; max-width: 680px; height: auto; opacity: .9; }
.btn--outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  padding: 14px 32px; border-radius: 18px;
  font-family: 'adineue PRO', 'Axiforma', sans-serif; font-weight: 700; font-size: 1rem;
  white-space: nowrap; cursor: pointer; transition: all .2s; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* Solo mobile: copia partners arriba */
.partners4--mobile-top { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .partners4--mobile-top { display: block; }
  .partners4:not(.partners4--mobile-top) { display: none; }
  .hero__inner       { flex-direction: column; }
  .hero__right       { width: 100%; }
  .problems__grid    { grid-template-columns: 1fr; }
  .diag-banner__inner { flex-direction: column; text-align: center; }
  .solution__inner   { flex-direction: column-reverse; }
  .solution__right   { width: 100%; }
  .partners4__inner  { flex-direction: column; text-align: center; }
  .nav__links        { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  .float-badge { font-size: 11px; padding: 6px 10px; gap: 5px; }
  .float-badge i { font-size: 13px; }
  .float-badge--excel   { top: 5%;   left: -4%; }
  .float-badge--correos { top: 2%;   right: -2%; }
  .float-badge--sunat   { top: 38%;  right: -2%; }
  .float-badge--erp     { bottom: 30%; left: -4%; }
  .float-badge--mas     { bottom: 8%;  right: -2%; }
  .solution__features { grid-template-columns: 1fr; }
}
