/* PY Servicios — clean local trade look */
:root {
  --bg: #0b1220;
  --bg-card: #121a2b;
  --bg-soft: #182338;
  --text: #e8eef9;
  --muted: #9aadc8;
  --line: #2a3a55;
  --accent: #22c55e;
  --accent-2: #38bdf8;
  --accent-3: #f59e0b;
  --danger: #f87171;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --max: 1100px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(34, 197, 94, 0.16), transparent 60%),
    radial-gradient(900px 400px at 90% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(11, 18, 32, 0.85);
  border-bottom: 1px solid rgba(42, 58, 85, 0.8);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #041018;
  font-size: 0.85rem;
  font-weight: 800;
}
.brand small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.72rem;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #04210f !important;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}
.nav-cta:hover { filter: brightness(1.05); text-decoration: none; }

/* Hero */
.hero {
  padding: 3.5rem 0 2.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .nav-links .hide-sm { display: none; }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.35);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
h1 {
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 1.4rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  font-size: 0.98rem;
}
.btn-primary {
  background: var(--accent);
  color: #04210f;
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-wa {
  background: #25d366;
  color: #04210f;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.meta-row strong { color: var(--text); }

.hero-card {
  background: linear-gradient(180deg, rgba(24, 35, 56, 0.95), rgba(18, 26, 43, 0.98));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.hero-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.checklist li {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.checklist li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

/* Sections */
section { padding: 2.4rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}
.section-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  max-width: 40rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover {
  border-color: rgba(56, 189, 248, 0.45);
  transform: translateY(-1px);
}
.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.card ul li { margin: 0.25rem 0; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #86efac;
  margin-bottom: 0.45rem;
}

/* Brands / trust */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.pill {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.pill strong { color: var(--text); }

/* Process */
.steps {
  counter-reset: step;
  display: grid;
  gap: 0.8rem;
}
.step {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.step h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.93rem; }

/* Packages */
.price-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1rem;
}
.pkg {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.pkg .price {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 800;
  color: var(--accent-3);
}
.pkg.featured {
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.15);
}

/* Contact */
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 860px) {
  .contact-panel { grid-template-columns: 1fr; }
}
form label {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
form .field { margin-bottom: 0.85rem; }
form input,
form select,
form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0d1524;
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font: inherit;
}
form input:focus,
form select:focus,
form textarea:focus {
  outline: 2px solid rgba(56, 189, 248, 0.35);
  border-color: var(--accent-2);
}
form textarea { min-height: 120px; resize: vertical; }
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.contact-list li {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}
.contact-list strong {
  display: block;
  margin-bottom: 0.15rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer .foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Page hero smaller */
.page-hero {
  padding: 2.2rem 0 1rem;
}
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero .lead { margin-bottom: 0; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
th, td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { color: var(--muted); font-weight: 600; background: rgba(0,0,0,0.15); }
tr:last-child td { border-bottom: 0; }

.notice {
  border-left: 3px solid var(--accent-2);
  background: rgba(56, 189, 248, 0.08);
  padding: 0.85rem 1rem;
  border-radius: 0 10px 10px 0;
  color: var(--muted);
  font-size: 0.93rem;
}
.notice strong { color: var(--text); }
