/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #FFD9E2;
  --pink-soft: #FFE8EE;
  --pink-accent: #EC4C8A;
  --ink: #0A0A0A;
  --muted: #5a5a5a;
  --border: #E6E6E6;
  --bg: #FFFFFF;
  --container: 1120px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hand: 'Caveat', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.center { text-align: center; }
.muted { color: var(--muted); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }

.btn-lg { padding: 16px 34px; font-size: 14px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 50;
  border-bottom: 1px solid transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  letter-spacing: -0.3px;
}
.logo-icon { display: inline-flex; }
.logo-text { font-weight: 400; }
.logo-bold { font-weight: 800; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.15s;
}
.nav-link:hover { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  padding: 60px 0 40px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-sparkle {
  display: inline-block;
  color: var(--pink-accent);
  font-size: 20px;
  margin-bottom: 4px;
}

.hero-title {
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.underline-hand {
  position: relative;
  display: inline-block;
}
.underline-hand::after {
  content: "";
  position: absolute;
  left: 0; right: -4px;
  bottom: -2px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'><path d='M2 8 Q50 2 100 6 T198 4' stroke='%23EC4C8A' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 28px;
}

.hero-photo { display: flex; justify-content: center; }

.photo-blob {
  width: min(100%, 420px);
  aspect-ratio: 1/1;
  background: var(--pink);
  border-radius: 50% 50% 48% 52% / 50% 48% 52% 50%;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 -10px 30px rgba(236,76,138,0.08);
}
.photo-blob img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: normal;
}

/* ============ LOGOS STRIP ============ */
.logos-strip {
  padding: 20px 0 30px;
}
.logos-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.logos-sub {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}
.logos-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.fake-logo {
  font-weight: 700;
  color: #8a8a8a;
  font-size: 18px;
  letter-spacing: -0.3px;
}

/* ============ EXPLORE BANNER ============ */
.explore-banner {
  margin: 40px 0;
  background: var(--pink-soft);
  padding: 60px 0;
  border-radius: 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.photo-circle {
  width: min(100%, 360px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--pink);
  box-shadow: 0 20px 40px rgba(236,76,138,0.12);
  margin-left: auto;
}
.photo-circle img { width: 100%; height: 100%; object-fit: cover; }

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title.center { margin-bottom: 40px; }

.circle-hand {
  position: relative;
  display: inline-block;
  padding: 0 6px;
}
.circle-hand::after {
  content: "";
  position: absolute;
  inset: -8px -12px -6px -12px;
  border: 2.5px solid var(--pink-accent);
  border-radius: 50%;
  transform: rotate(-3deg);
}

.italic-note {
  font-family: var(--font-hand);
  color: var(--pink-accent);
  font-size: 0.65em;
  font-weight: 400;
  margin-left: 4px;
}

/* ============ HOW IT WORKS ============ */
.how-it-works { padding: 80px 0 40px; }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.how-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.how-steps li {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.how-steps li:first-child { border-top: none; padding-top: 0; }

.how-steps h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  gap: 6px;
}
.step-num { color: var(--pink-accent); }
.how-steps p {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 320px;
}

.how-illustration svg { width: 100%; max-width: 440px; margin: 0 auto; display: block; }

/* ============ WHY US ============ */
.why-us { padding: 60px 0; }

.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}
.why-row.reverse .why-copy { order: 2; }
.why-row.reverse .why-illus { order: 1; }

.why-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.why-copy p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 10px;
  max-width: 440px;
}
.why-copy .bold-line strong { color: var(--ink); }

.why-illus { display: flex; justify-content: center; }
.why-illus svg { width: 100%; max-width: 340px; }

/* Mini cards stack */
.why-cards {
  position: relative;
  height: 260px;
  max-width: 340px;
  width: 100%;
}
.mini-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  width: 200px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mini-card:first-child { left: 0; top: 0; transform: rotate(-3deg); }
.mini-card-2 { left: 100px; top: 60px; transform: rotate(2deg); }

.mini-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFC1D0, #F5A3B8);
}
.mini-avatar.dark { background: linear-gradient(135deg, #333, #111); }

.mini-name { font-weight: 700; font-size: 13px; }
.mini-role { font-size: 11px; color: var(--muted); }
.mini-btn {
  background: var(--ink);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 4px;
}
.mini-link { font-size: 11px; color: var(--pink-accent); font-weight: 600; cursor: pointer; }

/* ============ HIRE TOP LEVEL ============ */
.hire-top { padding: 60px 0; }

.hire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.highlight-pink {
  background: var(--pink);
  padding: 2px 8px;
  border-radius: 4px;
}

.hire-illus svg { width: 100%; max-width: 460px; }

.hire-copy p {
  color: var(--muted);
  font-size: 15px;
  max-width: 460px;
}

/* ============ TALENT GRID ============ */
.talent-section { padding: 40px 0 80px; }

.talent-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 34px;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.talent-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.talent-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-accent);
}

.talent-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
}

.talent-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFC1D0, #F5A3B8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}
.avatar-2 { background: linear-gradient(135deg, #9DB4E0, #6F8BC4); }
.avatar-3 { background: linear-gradient(135deg, #F5C89D, #D99967); }
.avatar-4 { background: linear-gradient(135deg, #B5DFC8, #7BC39A); }
.avatar-5 { background: linear-gradient(135deg, #D4A5E0, #9B6BB4); }
.avatar-6 { background: linear-gradient(135deg, #FFE1A8, #E6B856); }

.talent-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.talent-role {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2px;
}
.talent-location {
  font-size: 12px;
  color: var(--muted);
}

.talent-cta {
  font-size: 11px;
  font-weight: 700;
  background: var(--pink);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s;
}
.talent-cta:hover { background: var(--pink-accent); color: #fff; }

.talent-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.talent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.talent-tags span {
  font-size: 11px;
  background: #F2F2F2;
  padding: 4px 10px;
  border-radius: 20px;
  color: #555;
  font-weight: 500;
}
.talent-tags span:last-child {
  background: transparent;
  color: var(--pink-accent);
  font-weight: 700;
}

/* ============ CTA BAND ============ */
.cta-band {
  padding: 60px 0;
  text-align: center;
}
.cta-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  margin-bottom: 6px;
}
.cta-link {
  color: var(--pink-accent);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* ============ FAQ ============ */
.faq { padding: 60px 0 80px; background: #fafafa; }

.faq-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}

.faq-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-tab {
  text-align: left;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--muted);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  font-weight: 500;
}
.faq-tab:hover { background: #f0f0f0; color: var(--ink); }
.faq-tab.active {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  transition: box-shadow 0.15s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-item summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 26px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: var(--pink-accent);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #fafafa;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid,
  .explore-grid,
  .how-grid,
  .why-row,
  .why-row.reverse,
  .hire-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-row.reverse .why-copy { order: 1; }
  .why-row.reverse .why-illus { order: 2; }

  .hero-copy, .explore-copy, .hire-copy, .why-copy {
    text-align: center;
    margin: 0 auto;
  }
  .hero-sub, .why-copy p, .hire-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .underline-hand { display: inline-block; }

  .photo-circle { margin: 0 auto; }

  .talent-grid { grid-template-columns: 1fr; }

  .faq-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    gap: 8px;
  }
  .faq-tab { white-space: nowrap; flex-shrink: 0; }

  .hamburger { display: flex; }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  }
  .header-nav.open { display: flex; }

  .why-cards { height: 300px; max-width: 300px; margin: 0 auto; }
  .mini-card { width: 180px; }
  .mini-card-2 { left: 80px; top: 80px; }

  .logos-row { gap: 20px; }
  .fake-logo { font-size: 15px; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .hero { padding-top: 30px; }
  .explore-banner { padding: 40px 0; }
  .how-it-works, .hire-top, .cta-band, .faq { padding: 40px 0; }

  .why-row { padding: 24px 0; }

  .photo-blob, .photo-circle { width: 80%; }

  .talent-head { grid-template-columns: auto 1fr; }
  .talent-cta { grid-column: 1 / -1; justify-self: start; margin-top: 6px; }

  .footer-inner { flex-direction: column; text-align: center; }
}

.logo-icon {
  display: inline-block;
  /* tamaño responsivo: crece con el viewport pero con límites */
  width: clamp(120px, 18vw, 200px);
}

.logo-icon img {
  width: 100%;
  height: auto;
  display: block;
}