:root {
  --bg: #5d7ab0;
  --panel: #343434;
  --panel-2: #191919;
  --text: #ffffff;
  --muted: #b8bcc7;
  --blue: #0d6efd;
  --blue-2: #15a6ff;
  --green: #25d366;
  --green-dark: #1fb557;
  --orange: #ff9800;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(13, 110, 253, 0.08), transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: min(100% - 32px, 680px);
  margin: 0 auto;
}

.topbar {
  padding: 36px 0 26px;
  border-bottom: 2px solid var(--blue);
  background: linear-gradient(180deg, #494949 0%, #090909 100%);
}

.brand {
  text-align: center;
}

.logo {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  letter-spacing: 2px;
  font-weight: 900;
}

.logo span {
  color: #8c8f98;
}

.subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-style: italic;
}

.hero {
  padding: 42px 0 70px;
}

.badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: 0.95rem;
}

.hero .container {
  text-align: center;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--blue-2);
  line-height: 1.15;
}

.hero-text {
  margin: 0 auto 28px;
  max-width: 560px;
  color: #e8e8ea;
  font-size: 1.05rem;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px; /* controla la separación REAL */
}

.services-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0; /* IMPORTANTE */
    text-align: center;
    line-height: 1.2; /* reduce altura */
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0;
  font-size: 1.08rem;
  color: #f1f1f1;
}

.services-list i {
  color: var(--blue-2);
  margin-top: 3px;
  flex-shrink: 0;
}

.cta-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 152, 0, 0.6);
  border-radius: 22px;
  padding: 28px 20px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.cta-title {
  margin: 0 0 18px;
  color: var(--orange);
  font-weight: 800;
  font-size: 1.1rem;
}

.btn-whatsapp,
.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  font-size: 1.2rem;
  padding: 18px 20px;
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  background: var(--green-dark);
}

.btn-call {
  margin-top: 12px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--border);
  padding: 16px 18px;
  font-size: 1rem;
}

.btn-call:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.availability {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  z-index: 999;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  display: block;
}

.floating-whatsapp:hover {
  background: var(--green-dark);
}

@media (max-width: 480px) {
  .hero {
    padding-top: 34px;
  }

  .btn-whatsapp {
    font-size: 1.05rem;
    padding: 16px 18px;
  }

  .services-list li {
    font-size: 1rem;
  }
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.services-list li {
    margin: 0;
    line-height: 1.15;
}