/*
Theme Name: Zetta Watches Theme
Author: Zetta Team
Description: Tema estilo Supabase/Fintech para relojes virales.
Version: 1.0
*/

/* ===== Variables base ===== */

:root {
  --zw-bg: #050816;
  --zw-bg-soft: #0b1020;
  --zw-card: #111827;
  --zw-border: #1f2937;
  --zw-text-main: #f9fafb;
  --zw-text-muted: #9ca3af;
  --zw-accent: #a855f7;
  --zw-accent-soft: rgba(168, 85, 247, 0.12);
  --zw-font: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

/* ===== Reset simple ===== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== Base global ===== */

body {
  font-family: var(--zw-font);
  background: radial-gradient(circle at top, #1f2937 0, #050816 45%, #020617 100%);
  color: var(--zw-text-main);
}

/* Contenedor general donde WordPress imprime the_content() */
.zetta-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 16px 60px; /* 80px para dejar espacio al header sticky */
}

/* ===== Header ===== */

.zw-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 8, 22, 0.92);
  border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

.zw-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.zw-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.zw-logo-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--zw-accent);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.7);
}

.zw-logo-text {
  font-weight: 600;
  font-size: 16px;
  color: var(--zw-text-main);
}

.zw-nav {
  display: flex;
  gap: 14px;
  margin-left: 24px;
  flex: 1;
}

.zw-nav a {
  font-size: 13px;
  color: var(--zw-text-muted);
  text-decoration: none;
}

.zw-nav a:hover {
  color: #e5e7eb;
}

.zw-nav-cta {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--zw-accent), #6366f1);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

.zw-nav-cta:hover {
  filter: brightness(1.08);
}

/* Responsive header */
@media (max-width: 768px) {
  .zw-header-inner {
    flex-wrap: wrap;
  }
  .zw-nav {
    margin-left: 0;
    flex-wrap: wrap;
  }
}

/* ===== Footer ===== */

.zw-site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.7);
  background: #020617;
}

.zw-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 16px 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
}

.zw-footer-brand {
  margin: 0 0 4px;
  color: #e5e7eb;
}

.zw-footer-tagline {
  margin: 0;
  color: var(--zw-text-muted);
}

.zw-footer-links a {
  margin-left: 12px;
  color: #9ca3af;
  text-decoration: none;
}

.zw-footer-links a:hover {
  color: var(--zw-accent);
}

@media (max-width: 640px) {
  .zw-footer-links a {
    margin-left: 0;
    margin-right: 12px;
  }
}

/* ===== Estilos específicos de la landing Zetta (antes estaban dentro de <style> en Home) ===== */

.zw-page {
  padding: 40px 0 64px;
}

.zw-container {
  max-width: 1120px;
  margin: 0 auto;
}

/* Pill mini del hero */
.zw-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--zw-border);
  font-size: 12px;
  color: var(--zw-text-muted);
  margin-bottom: 12px;
}

.zw-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--zw-accent);
  box-shadow: 0 0 12px var(--zw-accent);
}

/* Hero principal */
.zw-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .zw-hero {
    grid-template-columns: minmax(0, 1fr);
  }
}

.zw-hero-title {
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.zw-hero-title span {
  color: var(--zw-accent);
}

.zw-hero-sub {
  color: var(--zw-text-muted);
  font-size: 15px;
  max-width: 420px;
  margin-bottom: 24px;
}

.zw-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.zw-badge {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--zw-border);
  background: rgba(15, 23, 42, 0.8);
  color: var(--zw-text-muted);
}

.zw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.zw-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--zw-accent), #6366f1);
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.7);
  cursor: pointer;
}

.zw-btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.zw-btn-ghost {
  font-size: 13px;
  color: var(--zw-text-muted);
  text-decoration: none;
}

/* Tarjeta lateral del hero */
.zw-hero-side {
  border-radius: 24px;
  border: 1px solid var(--zw-border);
  background: radial-gradient(circle at top, #111827 0, #020617 100%);
  padding: 20px 18px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.9);
}

.zw-chip-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: var(--zw-accent-soft);
  color: var(--zw-accent);
  margin-bottom: 10px;
}

.zw-hero-side-title {
  font-size: 16px;
  margin-bottom: 12px;
}

.zw-hero-side-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--zw-text-muted);
}

.zw-hero-side-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.zw-bullet {
  font-size: 14px;
  margin-top: 2px;
}

.zw-tagline {
  font-size: 11px;
  color: var(--zw-text-muted);
}

/* Secciones */
.zw-section {
  margin-bottom: 48px;
}

.zw-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.zw-section-title {
  font-size: 20px;
}

.zw-section-sub {
  font-size: 13px;
  color: var(--zw-text-muted);
  max-width: 420px;
}

/* Grid de modelos */
.zw-models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .zw-models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .zw-models-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.zw-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--zw-border);
  background: linear-gradient(145deg, #020617, #020617 40%, #111827 100%);
  padding: 16px;
  overflow: hidden;
}

.zw-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--zw-border);
  font-size: 10px;
  color: var(--zw-text-muted);
  margin-bottom: 10px;
}

.zw-card-title {
  font-size: 15px;
  margin-bottom: 4px;
}

.zw-card-desc {
  font-size: 13px;
  color: var(--zw-text-muted);
  margin-bottom: 10px;
}

.zw-card-extra {
  font-size: 11px;
  color: var(--zw-text-muted);
  margin-bottom: 12px;
}

.zw-pill-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--zw-accent-soft);
  color: var(--zw-accent);
  font-size: 11px;
}

.zw-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-top: 12px;
}

.zw-price {
  font-weight: 600;
}

.zw-card-btn {
  font-size: 11px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--zw-accent);
  color: var(--zw-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Pasos */
.zw-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px) {
  .zw-steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

.zw-step-card {
  border-radius: 16px;
  border: 1px solid var(--zw-border);
  background: rgba(15, 23, 42, 0.8);
  padding: 14px 14px 16px;
  font-size: 13px;
}

.zw-step-label {
  font-size: 11px;
  color: var(--zw-text-muted);
  margin-bottom: 4px;
}

.zw-step-title {
  font-size: 14px;
  margin-bottom: 6px;
}

.zw-step-desc {
  font-size: 12px;
  color: var(--zw-text-muted);
}

/* Beneficios */
.zw-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .zw-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .zw-benefits-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.zw-benefit {
  border-radius: 14px;
  border: 1px dashed var(--zw-border);
  background: rgba(15, 23, 42, 0.7);
  padding: 12px;
}

.zw-benefit-title {
  font-size: 13px;
  margin-bottom: 4px;
}

.zw-benefit-desc {
  font-size: 12px;
  color: var(--zw-text-muted);
}

/* FAQ box */
.zw-faq-list {
  border-radius: 18px;
  border: 1px solid var(--zw-border);
  background: rgba(15, 23, 42, 0.9);
  padding: 16px 16px 10px;
  font-size: 13px;
}

.zw-faq-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(31, 41, 55, 0.7);
}

.zw-faq-item:last-child {
  border-bottom: none;
}

.zw-faq-q {
  font-weight: 500;
  margin-bottom: 3px;
}

.zw-faq-a {
  color: var(--zw-text-muted);
  font-size: 12px;
}

/* CTA final */
.zw-footer-cta {
  border-radius: 20px;
  border: 1px solid var(--zw-accent-soft);
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.35), transparent 55%),
              rgba(15, 23, 42, 0.98);
  padding: 18px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  margin-top: 8px;
}

.zw-footer-cta-text {
  max-width: 420px;
}

.zw-footer-cta-title {
  font-size: 16px;
  margin-bottom: 4px;
}

.zw-footer-cta-sub {
  color: var(--zw-text-muted);
  font-size: 12px;
}

.zw-footer-meta {
  margin-top: 18px;
  font-size: 11px;
  color: var(--zw-text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.zw-footer-meta a {
  color: var(--zw-text-muted);
  text-decoration: none;
}

.zw-footer-meta a:hover {
  color: var(--zw-accent);
}
