/* ── Wotel — Landing Page Styles ──────────────────────────────────────────── */
/* Extiende styles.css. Acento: WhatsApp green #25D366                        */

:root {
  --wt: #25D366;       /* WhatsApp green */
  --wt-d: #1DA851;    /* dark shade */
  --wt-glow: rgba(37,211,102,.18);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.wt-hbg {
  background:
    linear-gradient(135deg, rgba(7,18,29,.90) 0%, rgba(10,35,25,.78) 55%, rgba(15,40,30,.86) 100%),
    url('../img/fondo-hero.webp') center/cover no-repeat;
}
.wt-hbg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(37,211,102,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Título: letra plana + em verde — override del display:block global de .hh1 em */
.wt-em { color: var(--wt); font-style: normal; }
.hh1 .wt-em { display: inline; }
.wt-st-em { color: var(--wt); font-style: normal; }

/* Badge "Powered by…" */
.wt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted);
  border: 1px solid rgba(37,211,102,.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-top: 36px;
  text-transform: uppercase;
}
.wt-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--wt);
  animation: bl 2s ease infinite;
}

/* Botón principal verde */
.wt-bp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: var(--wt);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.wt-bp:hover { background: var(--wt-d); transform: translateY(-1px); }

/* ── Stats ───────────────────────────────────────────────────────────────── */
.wt-stats {
  background: var(--bg-surf);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 7%;
}
.wt-stats-inner {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.wt-stat-num {
  font-family: var(--fd);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: .04em;
  color: var(--wt);
  line-height: 1;
  margin-bottom: 8px;
}
.wt-stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Steps (Cómo funciona) ───────────────────────────────────────────────── */
.wt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wt-step {
  background: var(--bg-surf);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.wt-step:hover { border-color: rgba(37,211,102,.3); transform: translateY(-2px); }
.wt-step-n {
  font-family: var(--fd);
  font-size: 48px;
  color: rgba(37,211,102,.15);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.wt-step-title {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 15px;
  color: var(--text, var(--light));
  margin-bottom: 8px;
}
.wt-step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── Problemas / Solución ────────────────────────────────────────────────── */
.wt-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.wt-probs { display: flex; flex-direction: column; gap: 20px; }
.wt-prob {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: #4a6070;
  line-height: 1.65;
}
.wt-prob strong { color: var(--dark); display: block; margin-bottom: 2px; }
.wt-prob-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}

.wt-sol-label {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wt);
  margin-bottom: 20px;
  display: block;
}
.wt-sols { display: flex; flex-direction: column; gap: 16px; }
.wt-sol {
  background: #fff;
  border: 1px solid rgba(24,41,55,.1);
  border-left: 3px solid var(--wt);
  border-radius: 8px;
  padding: 18px 20px;
}
.wt-sol-title { font-weight: 700; font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.wt-sol-desc  { font-size: 13px; color: #4a6070; line-height: 1.6; }

/* ── Chat demo ───────────────────────────────────────────────────────────── */
.wt-demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.wt-feat-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wt-feat-list li { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.wt-feat-dot { color: var(--wt); font-size: 14px; }

/* Phone frame */
.wt-phone {
  background: #ECE5DD;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  max-width: 360px;
  margin-left: auto;
  font-family: var(--fb);
}
.wt-phone-header {
  background: #075E54;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}
.wt-phone-avatar {
  width: 40px; height: 40px;
  background: #128C7E;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.wt-phone-name  { color: #fff; font-weight: 600; font-size: 14px; }
.wt-phone-status { color: rgba(255,255,255,.7); font-size: 11px; }
.wt-chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 280px;
  background: #ECE5DD url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.wt-msg {
  max-width: 82%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  position: relative;
}
.wt-in {
  background: #DCF8C6;
  align-self: flex-end;
  border-top-right-radius: 2px;
  color: #333;
}
.wt-out {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 2px;
  color: #333;
}
.wt-time { font-size: 10px; color: rgba(0,0,0,.4); float: right; margin-left: 10px; margin-top: 2px; }
.wt-btns { display: flex; gap: 6px; justify-content: flex-start; }
.wt-btn {
  background: #fff;
  border: 1px solid rgba(37,211,102,.5);
  color: #075E54;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 16px;
  cursor: pointer;
}
.wt-phone-footer {
  background: #F0F0F0;
  padding: 10px 14px;
}
.wt-chat-input {
  background: #fff;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(0,0,0,.35);
}

/* ── Beneficios ──────────────────────────────────────────────────────────── */
.wt-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.wt-benefit {
  background: #fff;
  border: 1px solid rgba(24,41,55,.1);
  border-radius: 12px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.wt-benefit:hover { border-color: rgba(37,211,102,.35); transform: translateY(-2px); }
.wt-benefit-icon  { font-size: 28px; display: block; margin-bottom: 12px; }
.wt-benefit-title { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 6px; }
.wt-benefit-desc  { font-size: 13px; color: #4a6070; line-height: 1.65; }

/* ── CTA final ───────────────────────────────────────────────────────────── */
.wt-cta-card {
  background: var(--bg-surf);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: 20px;
  padding: 64px 48px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.wt-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wt-steps { grid-template-columns: repeat(2, 1fr); }
  .wt-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .wt-two      { grid-template-columns: 1fr; gap: 40px; }
  .wt-demo-inner { grid-template-columns: 1fr; gap: 40px; }
  .wt-phone    { margin: 0 auto; }
  .wt-cta-card { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .wt-steps    { grid-template-columns: 1fr; }
  .wt-benefits { grid-template-columns: 1fr; }
  .wt-stats-inner { gap: 32px; }
}
