/* ==========================================================================
   PixelToCode — Más clientes (versión explicada fácil, para público no técnico)
   ========================================================================== */

/* ---- Hero con chat de ejemplo ---- */
.easy-hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 211, 102, 0.14), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(6, 182, 212, 0.12), transparent 45%),
    rgba(248, 250, 252, 0.34);
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--silver-border);
}
.easy-hero .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.easy-hero h1 { font-size: clamp(2rem, 3.8vw, 3rem); color: var(--text-dark); }
.easy-hero .lead { font-size: 1.15rem; color: var(--text-body); max-width: 540px; }
.easy-hero .eyebrow { background: rgba(16, 185, 129, 0.12); color: var(--mint-green-hover); }
.easy-hero .hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.easy-hero .hero-note { margin: 18px 0 0; font-size: 0.9rem; color: var(--text-body); display: flex; gap: 18px; flex-wrap: wrap; }
.easy-hero .hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.easy-hero .hero-note i { color: var(--mint-green); }
.btn-lg { padding: 18px 32px; font-size: 1.08rem; }
.btn-whatsapp { background: #25d366; color: var(--white); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { background: #1fbe5a; transform: translateY(-1px); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45); }

/* Chat de ejemplo (ilustrativo) */
.chat-mock {
  background: #efeae2;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.9);
  overflow: hidden;
  max-width: 400px;
  margin-left: auto;
}
.chat-head {
  background: #075e54;
  color: var(--white);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.chat-head .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); color: #075e54;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.chat-head strong { display: block; font-size: 0.95rem; }
.chat-head small { font-size: 0.75rem; opacity: 0.8; }
.chat-body { padding: 18px 14px; display: grid; gap: 10px; }
.msg {
  max-width: 86%;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #111b21;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
.msg.out { background: #d9fdd3; justify-self: end; border-bottom-right-radius: 3px; }
.msg.in { background: var(--white); justify-self: start; border-bottom-left-radius: 3px; }
.chat-caption { text-align: center; font-size: 0.78rem; color: var(--text-body); font-family: var(--font-mono); margin: 12px 0 0; }

/* ---- Situaciones ("elegí lo que se parece a lo que necesitás") ---- */
.need-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.need-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.need-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.need-card .need-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--electric-cyan-deep), var(--electric-cyan));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.need-card h3 { font-size: 1.35rem; color: var(--text-dark); margin-bottom: 10px; }
.need-card > p { font-size: 1rem; color: var(--text-body); }
.need-card .need-for { font-size: 0.88rem; color: var(--text-body); margin: 0 0 22px; }
.need-card .need-for strong { color: var(--text-dark); }
.need-card .btn { margin-top: auto; align-self: flex-start; }

/* ---- Pasos grandes ---- */
.easy-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: easy; }
.easy-step {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  text-align: center;
}
.easy-step::before {
  counter-increment: easy;
  content: counter(easy);
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--mint-green);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.3rem;
}
.easy-step h3 { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 8px; }
.easy-step p { margin: 0; font-size: 0.95rem; }

/* ---- Ejemplos por rubro ---- */
.rubro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rubro-card {
  background: var(--card-light);
  border: 1px solid var(--border-silver);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.rubro-card .rubro-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rubro-card .rubro-head i {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-100); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.rubro-card h3 { font-size: 1.05rem; color: var(--text-dark); margin: 0; }
.rubro-card dl { margin: 0; display: grid; gap: 10px; }
.rubro-card dt { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--mint-green-hover); }
.rubro-card dd { margin: 2px 0 0; font-size: 0.9rem; color: var(--text-body); line-height: 1.5; }

/* ---- Bloque final de contacto ---- */
.easy-cta {
  background: linear-gradient(145deg, #0e7490 0%, var(--electric-cyan) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.easy-cta h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.easy-cta p { color: rgba(255, 255, 255, 0.88); font-size: 1.05rem; max-width: 560px; margin: 0 auto 26px; }
.easy-cta .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.easy-cta .btn-call { background: var(--white); color: var(--electric-cyan-deep); }
.easy-cta .btn-call:hover { background: var(--silver-card); }
.easy-cta .cta-fine { font-size: 0.85rem; margin: 22px 0 0; opacity: 0.85; }

/* Puente discreto a la versión técnica */
.easy-bridge { text-align: center; font-size: 0.92rem; color: var(--text-body); margin: 40px 0 0; }
.easy-bridge a { color: var(--electric-cyan-deep); font-weight: 600; border-bottom: 1px solid currentColor; }

/* Grillas: evita desbordes en pantallas angostas */
.easy-hero .hero-grid > *, .need-grid > *, .easy-steps > *, .rubro-grid > * { min-width: 0; }

@media (max-width: 980px) {
  .easy-hero .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .chat-mock { margin-left: 0; max-width: 100%; }
  .need-grid { grid-template-columns: 1fr; }
  .easy-steps { grid-template-columns: 1fr; }
  .rubro-grid { grid-template-columns: 1fr 1fr; }
  .easy-cta { padding: 40px 24px; }
}
@media (max-width: 640px) {
  .rubro-grid { grid-template-columns: 1fr; }
  .need-card { padding: 26px 22px; }
  .need-card .btn { align-self: stretch; }
  .btn-lg { padding: 16px 22px; font-size: 1rem; width: 100%; }
}
