/* ═══════════════════════════════════════
   TOKENS — edita aquí para personalizar
   ═══════════════════════════════════════ */
:root {
  --bg:         #F4F5F7;       /* fondo de página */
  --card-bg:    #FFFFFF;       /* fondo de la tarjeta */
  --ink:        #111318;       /* texto principal */
  --mid:        #6B7280;       /* texto secundario */
  --border:     #E5E7EB;       /* bordes suaves */
  --accent:     #2152C8;       /* color acento principal */
  --accent2:    #3B6BEA;       /* acento hover */
  --radius-card: 24px;
  --radius-btn:  12px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ── PAGE ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.25rem 4rem;
}

/* ── CARD ── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  max-width: 420px;
  width: 100%;
  box-shadow:
    0 2px 8px rgba(17,19,24,.06),
    0 8px 32px rgba(17,19,24,.07);
  overflow: hidden;
  animation: rise .5s cubic-bezier(.22,1,.36,1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
  position: relative;
  background: linear-gradient(160deg, #1A2A52 0%, #2152C8 100%);
  padding: 2.5rem 1.5rem 3.5rem;
  text-align: center;
}

.photo-wrap {
  display: inline-block;
  border-radius: 50%;
  padding: 3px;
  background: rgba(255,255,255,.25);
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  margin-bottom: 1rem;
}

.photo-wrap img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.hero-title {
  margin-top: .3rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* tira de película */
.reel {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 26px;
  background: #0D1117;
}

.reel-holes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 10px;
}

.reel-hole {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1E2433;
  border: 1.5px solid #2E3447;
  flex-shrink: 0;
}

/* ── BODY ── */
.body {
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ── SECTION ── */
.section {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.section-label {
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── SERVICES LIST ── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.services-list li {
  font-size: .9rem;
  color: var(--ink);
  padding: .1rem 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: .45rem;
}

.services-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ── PORTFOLIO LINK ── */
.portfolio-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .18s, background .18s;
}

.portfolio-link:hover {
  border-color: var(--accent2);
  background: #EEF3FF;
}

.portfolio-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.arrow {
  margin-left: auto;
  color: var(--mid);
  font-size: .9rem;
}

/* ── BUTTONS ── */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .8rem 1rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity .18s, transform .15s;
  width: 100%;
}

.btn:active { transform: scale(.97); }

/* Guardar Contacto */
.btn-save {
  background: var(--accent);
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  padding: .95rem 1rem;
}

.btn-save:hover { opacity: .88; }

/* WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover { opacity: .88; }

/* Instagram */
.btn-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.btn-ig:hover { opacity: .88; }

/* TikTok */
.btn-tiktok {
  background: #010101;
  color: #fff;
}

.btn-tiktok:hover { opacity: .82; }

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
  margin-top: 1.75rem;
  font-size: .7rem;
  color: #B0B6C3;
  letter-spacing: .05em;
  text-align: center;
}
