:root{
  --bg: #0b1220;
  --card: #ffffff;
  --text: #0b1220;
  --muted: rgba(11,18,32,.70);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(2, 8, 23, .10);
}

/* Base */
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color: var(--text);
  line-height: 1.55;
}

/* Títulos */
h1,h2,h3{
  letter-spacing: -0.02em;
  text-transform: none !important;
}

/* Contenedores */
section{ padding: 64px 0; }

/* Cards */
.service-item,
.andy-card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 24px;
}

/* Hero */
.hero-andy{
  padding-top: 120px;
}
.hero-video{
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Botones */
.btn{
  border-radius: 999px !important;
  font-weight: 700;
}

/* WhatsApp flotante */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(34,197,94,.35);
}
.wa-float:hover{ filter: brightness(0.95); }

@media (max-width: 768px){
  section{ padding: 40px 0; }
  h1{ font-size: 2rem; }
  .hero-andy{ padding-top: 100px; }
}
/* ===== FASE 2: Contacto real ===== */
.contact-card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border: 1px solid rgba(2,8,23,.06);
}

.contact-form label{
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-note{
  margin-top: 12px;
  opacity: .8;
  font-size: 0.95em;
}

/* Honeypot oculto */
.hp-field{
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

