:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --nav-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --zenty-blue: #071a33;
  --zenty-blue-2: #0d2b52;
  --zenty-cyan: #22c7e8;
  --zenty-orange: #ff4a17;
  --zenty-soft: #f4f7fb;
}

body { font-family: var(--default-font); }

.header .logo img {
  max-height: 58px;
  object-fit: contain;
}

.zenty-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(125deg, rgba(2, 11, 24, .92), rgba(3, 38, 72, .82)), url('../img/hero-bg.webp') center center / cover no-repeat;
  padding-top: 112px;
}

.zenty-hero::before { display: none; }

.zenty-hero-panel {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

.zenty-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  letter-spacing: .02em;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, .08);
}

.zenty-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zenty-cyan);
  box-shadow: 0 0 0 6px rgba(34, 199, 232, .14);
}

.zenty-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
  margin-bottom: 18px;
}

.zenty-hero-subtitle {
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 26px;
}

.zenty-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-zenty-primary,
.btn-zenty-primary:focus {
  background: linear-gradient(135deg, var(--zenty-orange), #ff7a1a);
  color: #fff !important;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(255, 74, 23, .28);
}

.btn-zenty-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(255, 74, 23, .34); }

.btn-zenty-outline,
.btn-zenty-outline:focus {
  border: 1px solid rgba(255, 255, 255, .42);
  color: #fff !important;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  background: rgba(255,255,255,.07);
}

.btn-zenty-outline:hover { background: rgba(255,255,255,.16); }

.zenty-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.zenty-proof-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  padding: 12px 14px;
}

.zenty-proof-grid i { color: var(--zenty-cyan); font-size: 20px; }

.zenty-lead-form {
  background: rgba(255, 255, 255, .96);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .30);
}

.zenty-lead-form .form-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.zenty-lead-form .form-title span {
  color: var(--zenty-orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.zenty-lead-form .form-title strong {
  color: var(--zenty-blue);
  font-size: 23px;
  line-height: 1.2;
}

.zenty-lead-form .form-control,
.zenty-lead-form .form-select,
.zenty-lead-form .input-group-text {
  min-height: 46px;
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  color: #203348;
}

.zenty-lead-form .input-group .input-group-text { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.zenty-lead-form .input-group .form-control { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.zenty-lead-form textarea.form-control { min-height: 110px; }

.captcha-label {
  color: #203348;
  font-size: 14px;
  margin-bottom: 8px;
}

.captcha-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  padding: 10px;
  background: #f8fbff;
}

.captcha-box span {
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  padding: 8px;
  border-radius: 12px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.captcha-box span:hover,
.captcha-box span.selected {
  transform: scale(1.12);
  background: #fff;
  box-shadow: 0 8px 20px rgba(13, 43, 82, .15);
}

.zenty-form-message {
  display: none;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 12px;
}

.zenty-form-message.is-error { display: block; background: #fde8e8; color: #8a1f1f; border: 1px solid #f5b7b7; }
.zenty-form-message.is-success { display: block; background: #e7f8ef; color: #116139; border: 1px solid #a9e4c2; }

.about h2 { font-weight: 800; letter-spacing: -.035em; }

.zenty-idea-card {
  background: linear-gradient(145deg, #fff, #f5f9ff);
  border: 1px solid #e5ecf5;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(15, 38, 70, .08);
}

.zenty-idea-card > span,
.zenty-solution-card .tag {
  color: var(--zenty-orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.zenty-idea-card h3 {
  font-size: 30px;
  line-height: 1.16;
  letter-spacing: -.035em;
  margin: 10px 0 18px;
}

.zenty-idea-card ul { padding: 0; margin: 0; list-style: none; }
.zenty-idea-card li { display: flex; gap: 10px; margin: 12px 0; color: #3e5166; }
.zenty-idea-card i { color: var(--zenty-orange); }

.zenty-solution-card,
.zenty-client-card {
  height: 100%;
  background: var(--surface-color);
  border: 1px solid #e6edf5;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(15, 38, 70, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.zenty-solution-card:hover,
.zenty-client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 74, 23, .34);
  box-shadow: 0 22px 55px rgba(15, 38, 70, .12);
}

.zenty-solution-card .icon,
.zenty-client-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(255,74,23,.12), rgba(34,199,232,.12));
  color: var(--zenty-orange);
  font-size: 25px;
  margin-bottom: 18px;
}

.zenty-solution-card h3,
.zenty-client-card h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin: 8px 0 10px;
}

.zenty-solution-card p,
.zenty-client-card p { color: #56697f; line-height: 1.65; }

.zenty-solution-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  margin-top: 8px;
}

.zenty-featured {
  background: linear-gradient(160deg, var(--zenty-blue), #103967);
  color: #fff;
  border-color: rgba(255,255,255,.15);
}
.zenty-featured h3,
.zenty-featured p { color: #fff; }
.zenty-featured .icon { background: rgba(255,255,255,.14); color: #fff; }
.zenty-featured .read-more { color: #fff; }

.features .nav-link { border-radius: 18px; }
.features .nav-tabs { border: 0; }
.features .tab-content { border-radius: 24px; }
.features .tab-pane h3 { font-weight: 800; letter-spacing: -.03em; }

.zenty-client-card { text-align: left; }
.zenty-client-card i { display: flex; }

.zenty-accordion .accordion-item {
  border: 1px solid #e6edf5;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 12px 30px rgba(15, 38, 70, .05);
}
.zenty-accordion .accordion-button { font-weight: 800; color: var(--zenty-blue); }
.zenty-accordion .accordion-button:not(.collapsed) { background: #f5f9ff; color: var(--zenty-orange); }

.footer-note { opacity: .7; font-size: 12px; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  background-color: #25D366;
  color: white;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0,0,0,.26);
  text-decoration: none;
  transition: all .25s ease;
}
.whatsapp-float:hover { color: #fff; transform: translateY(-2px) scale(1.04); background-color: #20b358; }

@media (max-width: 1199px) {
  .header .cta-btn { margin-right: 48px; }
}

@media (max-width: 991px) {
  .zenty-hero { padding-top: 96px; }
  .zenty-hero-panel { padding: 24px; border-radius: 22px; }
}

@media (max-width: 767px) {
  .zenty-hero { min-height: auto; }
  .zenty-hero h1 { font-size: 38px; }
  .zenty-proof-grid { grid-template-columns: 1fr; }
  .zenty-hero-actions .btn { width: 100%; justify-content: center; }
  .zenty-lead-form { padding: 18px; border-radius: 20px; }
  .features .nav-tabs .nav-item { flex: 0 0 20%; width: 20%; }
  .features .nav-link { min-height: 80px; padding: 10px 6px; }
}

/* =========================================================
   ZENTY PRODUCTOS EN PRIMERA PANTALLA
   Ajuste solicitado: productos visibles de inmediato,
   secciones compactas y formulario transparente más pequeño.
========================================================= */

.zenty-hero-products {
  min-height: 100vh;
  align-items: flex-start;
  padding: 112px 0 42px;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 199, 232, .24), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(255, 74, 23, .22), transparent 28%),
    linear-gradient(125deg, rgba(2, 11, 24, .94), rgba(5, 36, 68, .88)),
    url('../img/hero-bg.webp') center center / cover no-repeat;
}

.zenty-product-hero-panel {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25);
  backdrop-filter: blur(12px);
}

.zenty-hero-intro { margin-bottom: 18px; }

.zenty-hero-products h1 {
  color: #fff;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 800;
  margin-bottom: 14px;
  max-width: 980px;
}

.zenty-hero-products .zenty-hero-subtitle {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.58;
}

.zenty-hero-actions-compact {
  justify-content: flex-start;
  margin-bottom: 12px;
}

.zenty-hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .83);
  font-size: 14px;
  line-height: 1.45;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
}

.zenty-hero-note i {
  color: var(--zenty-cyan);
  font-size: 18px;
  flex: 0 0 auto;
}

.zenty-first-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding-top: 16px;
}

.zenty-product-tile {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 24px;
  padding: 20px;
  color: var(--zenty-blue);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.zenty-product-tile::after {
  content: "";
  position: absolute;
  inset: auto -40px -55px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 74, 23, .10);
}

.zenty-product-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .24);
  border-color: rgba(255, 74, 23, .34);
}

.zenty-product-main {
  background: linear-gradient(155deg, #ff4a17, #ff7a1a);
  color: #fff;
}

.zenty-product-main::after { background: rgba(255, 255, 255, .16); }

.zenty-product-tile .tile-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 74, 23, .13), rgba(34, 199, 232, .16));
  color: var(--zenty-orange);
  font-size: 28px;
  position: relative;
  z-index: 1;
}

.zenty-product-main .tile-icon {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.zenty-product-tile .tile-content {
  position: relative;
  z-index: 1;
}

.zenty-product-tile span {
  display: inline-block;
  color: var(--zenty-orange);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.zenty-product-main span { color: rgba(255, 255, 255, .86); }

.zenty-product-tile h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.035em;
  margin: 0 0 7px;
  color: inherit;
}

.zenty-product-tile p {
  font-size: 14px;
  line-height: 1.48;
  margin: 0 0 14px;
  color: #4c6075;
}

.zenty-product-main p { color: rgba(255, 255, 255, .90); }

.zenty-product-tile a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--zenty-blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.zenty-product-main a { color: #fff; }

.zenty-product-detail .section-title { padding-bottom: 32px; }

.zenty-detail-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(15, 38, 70, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.zenty-detail-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 74, 23, .32);
  box-shadow: 0 22px 55px rgba(15, 38, 70, .11);
}

.zenty-detail-principal {
  background: linear-gradient(160deg, #071a33, #103967);
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
}

.zenty-detail-dark {
  background: linear-gradient(160deg, #0d2b52, #071a33);
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
}

.zenty-detail-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}

.zenty-detail-head > i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 74, 23, .14), rgba(34, 199, 232, .14));
  color: var(--zenty-orange);
  font-size: 28px;
  flex: 0 0 auto;
}

.zenty-detail-principal .zenty-detail-head > i,
.zenty-detail-dark .zenty-detail-head > i {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

.zenty-detail-head span {
  display: block;
  color: var(--zenty-orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.zenty-detail-principal .zenty-detail-head span,
.zenty-detail-dark .zenty-detail-head span { color: rgba(255, 255, 255, .76); }

.zenty-detail-head h3 {
  color: inherit;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.035em;
  margin: 0;
}

.zenty-detail-card p {
  color: #56697f;
  line-height: 1.62;
  margin-bottom: 18px;
}

.zenty-detail-principal p,
.zenty-detail-dark p { color: rgba(255, 255, 255, .86); }

.zenty-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.zenty-mini-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f4f7fb;
  color: #334960;
  font-size: 13px;
  font-weight: 700;
}

.zenty-mini-list i { color: var(--zenty-orange); }

.zenty-detail-principal .zenty-mini-list span,
.zenty-detail-dark .zenty-mini-list span {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.zenty-detail-principal .zenty-mini-list i,
.zenty-detail-dark .zenty-mini-list i { color: #fff; }

.zenty-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--zenty-orange);
  font-weight: 800;
  text-decoration: none;
}

.zenty-detail-principal .zenty-text-link,
.zenty-detail-dark .zenty-text-link { color: #fff; }

.zenty-route-card {
  height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(15, 38, 70, .06);
}

.zenty-route-card > i {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(255, 74, 23, .13), rgba(34, 199, 232, .14));
  color: var(--zenty-orange);
  font-size: 26px;
  margin-bottom: 16px;
}

.zenty-route-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}

.zenty-route-card p {
  color: #56697f;
  line-height: 1.6;
  margin-bottom: 0;
}

.zenty-contact-glass-section {
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 199, 232, .20), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 74, 23, .22), transparent 32%),
    linear-gradient(135deg, rgba(3, 15, 31, .95), rgba(13, 43, 82, .90)),
    url('../img/hero-bg.webp') center center / cover no-repeat;
}

.zenty-contact-glass-section h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.045em;
  margin-bottom: 18px;
}

.zenty-contact-glass-section p {
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.62;
  max-width: 650px;
}

.zenty-eyebrow-light {
  margin-bottom: 16px;
}

.zenty-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.zenty-contact-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.zenty-glass-form {
  max-width: 560px;
  margin-left: auto;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
}

.zenty-glass-form .form-title span { color: var(--zenty-cyan); }
.zenty-glass-form .form-title strong { color: #fff; font-size: 21px; }

.zenty-glass-form .form-control,
.zenty-glass-form .form-select,
.zenty-glass-form .input-group-text {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .90);
  border-radius: 12px;
  font-size: 14px;
}

.zenty-glass-form textarea.form-control { min-height: 88px; }

.zenty-glass-form .captcha-label {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  margin-bottom: 6px;
}

.zenty-glass-form .captcha-box {
  border-color: rgba(255, 255, 255, .20);
  background: rgba(255, 255, 255, .10);
  padding: 7px;
}

.captcha-box-small span {
  font-size: 22px;
  padding: 6px 8px;
}

@media (max-width: 1399px) {
  .zenty-first-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .zenty-product-tile { min-height: 190px; }
}

@media (max-width: 991px) {
  .zenty-hero-products { min-height: auto; padding: 96px 0 36px; }
  .zenty-product-hero-panel { padding: 22px; }
  .zenty-first-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zenty-glass-form { margin-left: 0; max-width: 100%; }
}

@media (max-width: 767px) {
  .zenty-hero-products h1 { font-size: 34px; }
  .zenty-first-products { grid-template-columns: 1fr; }
  .zenty-product-tile { min-height: auto; }
  .zenty-contact-actions .btn { width: 100%; }
  .zenty-detail-head { align-items: flex-start; }
}

/* =========================================================
   AJUSTE RESPONSIVE NOTEBOOK - PRODUCTOS EN PRIMERA PANTALLA
   Mantiene diseño base, reduce alturas y usa fotos originales.
========================================================= */
html { scroll-behavior: smooth; }

.header {
  min-height: 76px;
}

.header .logo img {
  max-height: 48px;
  width: auto;
}

.header .cta-btn {
  padding: 10px 18px;
  font-size: 13px;
}

.navmenu a,
.navmenu a:focus {
  font-size: 13px;
  padding: 18px 13px;
}

.zenty-hero-products {
  min-height: 100svh;
  padding: 94px 0 22px;
}

.zenty-product-hero-panel {
  border-radius: 24px;
  padding: clamp(18px, 2vw, 24px);
}

.zenty-hero-intro {
  margin-bottom: 12px;
}

.zenty-eyebrow {
  padding: 6px 12px;
  font-size: 13px;
  margin-bottom: 12px;
}

.zenty-hero-products h1 {
  max-width: 860px;
  font-size: clamp(32px, 3.25vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.052em;
  margin-bottom: 10px;
}

.zenty-hero-products .zenty-hero-subtitle {
  max-width: 760px;
  font-size: 15.5px;
  line-height: 1.48;
}

.zenty-hero-actions-compact {
  gap: 10px;
  margin-bottom: 10px;
}

.zenty-hero-actions-compact .btn {
  padding: 10px 18px;
  font-size: 14px;
}

.zenty-hero-note {
  padding: 10px 12px;
  border-radius: 15px;
  font-size: 13px;
  line-height: 1.35;
}

.zenty-first-products {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
}

.zenty-product-tile {
  min-height: 0;
  gap: 8px;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.zenty-product-tile::after {
  width: 88px;
  height: 88px;
  inset: auto -30px -40px auto;
}

.zenty-product-tile:hover {
  transform: translateY(-2px);
}

.zenty-product-tile .tile-media {
  position: relative;
  height: clamp(54px, 7.6vh, 74px);
  border-radius: 14px;
  overflow: hidden;
  background: #e9eef5;
  margin-bottom: 2px;
}

.zenty-product-tile .tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 51, .04), rgba(7, 26, 51, .22));
}

.zenty-product-main .tile-media::after {
  background: linear-gradient(180deg, rgba(255, 74, 23, .08), rgba(7, 26, 51, .36));
}

.zenty-product-tile .tile-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.zenty-product-tile .tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 21px;
  margin-top: -30px;
  margin-left: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 24px rgba(7, 26, 51, .12);
}

.zenty-product-main .tile-icon {
  background: rgba(255, 255, 255, .22);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 26, 51, .18);
}

.zenty-product-tile span {
  font-size: 10px;
  letter-spacing: .07em;
  margin-bottom: 4px;
}

.zenty-product-tile h2 {
  font-size: clamp(17px, 1.4vw, 20px);
  letter-spacing: -0.035em;
  margin-bottom: 4px;
}

.zenty-product-tile p {
  font-size: 12.8px;
  line-height: 1.34;
  margin-bottom: 8px;
}

.zenty-product-tile a {
  font-size: 12.5px;
  gap: 5px;
}

.zenty-product-main p,
.zenty-product-main span,
.zenty-product-main a,
.zenty-product-main h2 {
  text-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

@media (min-width: 1200px) and (max-height: 780px) {
  .header { min-height: 68px; }
  .header .logo img { max-height: 42px; }
  .navmenu a,
  .navmenu a:focus { padding: 15px 11px; }
  .header .cta-btn { padding: 8px 15px; }
  .zenty-hero-products { padding-top: 78px; padding-bottom: 16px; }
  .zenty-product-hero-panel { padding: 17px; border-radius: 22px; }
  .zenty-eyebrow { margin-bottom: 8px; font-size: 12px; padding: 5px 11px; }
  .zenty-hero-products h1 { font-size: clamp(29px, 3vw, 43px); margin-bottom: 8px; }
  .zenty-hero-products .zenty-hero-subtitle { font-size: 14px; line-height: 1.38; }
  .zenty-hero-actions-compact .btn { padding: 8px 14px; font-size: 13px; }
  .zenty-hero-note { padding: 8px 10px; font-size: 12px; }
  .zenty-first-products { gap: 8px; padding-top: 8px; }
  .zenty-product-tile { padding: 9px; border-radius: 16px; }
  .zenty-product-tile .tile-media { height: 50px; border-radius: 12px; }
  .zenty-product-tile .tile-icon { width: 38px; height: 38px; font-size: 19px; margin-top: -27px; }
  .zenty-product-tile h2 { font-size: 17px; }
  .zenty-product-tile p { font-size: 12px; line-height: 1.26; margin-bottom: 7px; }
  .zenty-product-tile span { font-size: 9.5px; margin-bottom: 3px; }
  .zenty-product-tile a { font-size: 12px; }
}

@media (max-width: 1199px) {
  .zenty-first-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .zenty-hero-products { min-height: auto; }
}

@media (max-width: 991px) {
  .zenty-hero-products { padding: 88px 0 28px; }
  .zenty-product-hero-panel { padding: 18px; }
  .zenty-first-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zenty-hero-products h1 { font-size: 34px; }
  .zenty-hero-actions-compact .btn { flex: 1 1 auto; }
}

@media (max-width: 575px) {
  .header .logo img { max-height: 40px; }
  .header .cta-btn { display: none; }
  .zenty-hero-products { padding-top: 78px; }
  .zenty-product-hero-panel { border-radius: 18px; padding: 15px; }
  .zenty-hero-products h1 { font-size: 30px; }
  .zenty-hero-products .zenty-hero-subtitle { font-size: 14px; }
  .zenty-first-products { grid-template-columns: 1fr; }
  .zenty-product-tile {
    display: grid;
    grid-template-columns: 96px 42px 1fr;
    align-items: center;
    gap: 10px;
  }
  .zenty-product-tile .tile-media {
    grid-column: 1;
    grid-row: 1 / span 2;
    height: 92px;
    margin: 0;
  }
  .zenty-product-tile .tile-icon {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }
  .zenty-product-tile .tile-content {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
  .zenty-product-tile p { margin-bottom: 6px; }
}

/* =========================================================
   AJUSTE NOTEBOOK: hero centrado, más ancho y separado del menú
   Solicitado: bajar un poco del menú superior y ocupar mejor alto/ancho.
========================================================= */
.zenty-hero-products {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100svh;
  padding-top: clamp(116px, 12.5vh, 138px);
  padding-bottom: clamp(24px, 4vh, 44px);
}

.zenty-hero-products > .container {
  width: min(100% - 46px, 1560px);
  max-width: 1560px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

.zenty-product-hero-panel {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(22px, 2.15vw, 32px);
}

.zenty-hero-intro {
  align-items: center !important;
}

.zenty-hero-products h1 {
  max-width: 940px;
}

.zenty-first-products {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .zenty-hero-products {
    padding-top: clamp(118px, 13vh, 146px);
  }

  .zenty-first-products {
    gap: clamp(12px, 1vw, 16px);
  }

  .zenty-product-tile {
    min-height: clamp(220px, 24vh, 250px);
    padding: clamp(12px, 1.05vw, 16px);
  }

  .zenty-product-tile .tile-media {
    height: clamp(64px, 8vh, 84px);
  }
}

@media (min-width: 1200px) and (max-height: 820px) {
  .zenty-hero-products {
    padding-top: 112px;
    padding-bottom: 20px;
  }

  .zenty-product-hero-panel {
    padding: 20px;
  }

  .zenty-product-tile {
    min-height: 208px;
  }

  .zenty-product-tile .tile-media {
    height: 58px;
  }
}

@media (min-width: 1500px) and (min-height: 860px) {
  .zenty-hero-products {
    padding-top: 138px;
  }
}

@media (max-width: 991px) {
  .zenty-hero-products > .container {
    width: min(100% - 28px, 100%);
  }
}

/* =========================================================
   AJUSTE FINAL: separación real entre menú superior y tarjeta principal
   Mantiene los productos visibles en notebook, pero evita que el panel
   quede pegado al header fijo.
========================================================= */
.zenty-hero-products {
  padding-top: clamp(134px, 15vh, 166px) !important;
}

.zenty-product-hero-panel {
  margin-top: 0;
}

@media (min-width: 1200px) and (max-height: 820px) {
  .zenty-hero-products {
    padding-top: 138px !important;
    padding-bottom: 14px !important;
  }

  .zenty-product-hero-panel {
    padding: 18px !important;
  }

  .zenty-first-products {
    gap: 10px !important;
  }

  .zenty-product-tile {
    min-height: 196px !important;
  }

  .zenty-product-tile .tile-media {
    height: 52px !important;
  }
}

@media (max-width: 991px) {
  .zenty-hero-products {
    padding-top: 108px !important;
  }
}

@media (max-width: 575px) {
  .zenty-hero-products {
    padding-top: 94px !important;
  }
}

/* =========================================================
   AJUSTE EXTRA: más aire entre menú superior y tarjeta principal
   Modifica estos valores si necesitas subir/bajar el panel.
========================================================= */
.zenty-hero-products {
  padding-top: clamp(172px, 18.5vh, 210px) !important;
}

@media (min-width: 1200px) and (max-height: 820px) {
  .zenty-hero-products {
    padding-top: 172px !important;
    padding-bottom: 10px !important;
  }

  .zenty-product-hero-panel {
    padding: 17px !important;
  }

  .zenty-product-tile {
    min-height: 188px !important;
  }

  .zenty-product-tile .tile-media {
    height: 48px !important;
  }
}

@media (min-width: 1500px) and (min-height: 860px) {
  .zenty-hero-products {
    padding-top: 188px !important;
  }
}

/* =========================================================
   AJUSTE FINAL: anclajes correctos con menú fijo
   Evita que Productos, Detalle, Ventajas y Contacto queden
   cortados o aparezcan a mitad de sección.
========================================================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

#hero,
#productos,
#detalle-productos,
#diferenciadores,
#contact {
  scroll-margin-top: 96px;
}

.zenty-anchor-point {
  display: block;
  position: relative;
  height: 1px;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 1200px) and (max-height: 820px) {
  html { scroll-padding-top: 88px; }

  #hero,
  #productos,
  #detalle-productos,
  #diferenciadores,
  #contact {
    scroll-margin-top: 88px;
  }
}

@media (max-width: 991px) {
  html { scroll-padding-top: 84px; }

  #hero,
  #productos,
  #detalle-productos,
  #diferenciadores,
  #contact {
    scroll-margin-top: 84px;
  }
}
