*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --coral: #F0617A;
  --dark: #1a1a18;
  --gray: #666;
  --muted: #999;
  --cream: #ffffff;
  --border: rgba(26,26,24,0.1);
  --font-display: 'Barlow Condensed', Arial Narrow, sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav, .hero, .page-header, .section, .block-title, .product, .service, .pq-card, .bio, .team, .cta, .contact-body, footer {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 100;
  border-bottom: 0.5px solid var(--border);
}

.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--dark); }

/* HERO */
.hero {
  padding: 72px 56px 80px;
  border-bottom: 0.5px solid var(--border);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 48px;
}

.hero h1 em {
  color: var(--coral);
  font-style: italic;
}

.hero h1 .hero-italic {
  font-style: italic;
  color: var(--dark);
}

.hero-sub {
  border-left: 3px solid var(--coral);
  padding-left: 20px;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-sub p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 6px;
}

.hero-sub p:last-child { margin: 0; }
.hero-sub strong { color: var(--dark); font-weight: 400; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 13px 28px;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.hero-cta:hover { background: var(--dark); color: var(--cream); }

/* PAGE HEADER */
.page-header {
  padding: 72px 56px 56px;
  border-bottom: 0.5px solid var(--border);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 32px;
  max-width: 700px;
}

.page-header h1 em { color: var(--coral); font-style: normal; }

.page-header p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 300;
}

/* SECTIONS */
.section {
  padding: 64px 56px;
  border-bottom: 0.5px solid var(--border);
}

.section-label {
  font-size: 11px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 24px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: 28px;
  max-width: 600px;
}

.section p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 16px;
  font-weight: 300;
}

.section p.strong { color: var(--dark); font-weight: 400; }
.section p:last-child { margin-bottom: 0; }

/* BLOCKQUOTE */
.blockquote {
  border-left: 3px solid var(--coral);
  padding-left: 20px;
  margin: 32px 0;
  max-width: 520px;
}

.blockquote p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 6px;
}

.blockquote p:last-child { margin: 0; }
.blockquote strong { color: var(--dark); font-weight: 400; }

/* BLOCK TITLE */
.block-title {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 28px 56px;
  border-bottom: 0.5px solid var(--border);
}

/* PRODUCTS */
.product {
  padding: 56px;
  border-bottom: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
}

.product-meta { padding-top: 4px; }
.product-level { font-size: 11px; color: var(--coral); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-bottom: 10px; }
.product-name { font-family: var(--font-display); font-size: 32px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; margin-bottom: 16px; }
.tag { display: inline-block; font-size: 11px; color: var(--muted); border: 0.5px solid var(--border); padding: 4px 12px; margin-bottom: 6px; font-weight: 400; letter-spacing: 0.04em; }
.product-body p { font-size: 15px; color: var(--gray); line-height: 1.8; max-width: 520px; margin-bottom: 14px; font-weight: 300; }
.product-body p.strong { color: var(--dark); font-weight: 400; font-size: 16px; }
.product-for { font-size: 13px; color: var(--muted); border-left: 2px solid var(--coral); padding-left: 14px; margin-top: 20px; line-height: 1.7; }

/* SERVICES */
.service {
  padding: 40px 56px;
  border-bottom: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
}

.service-name { font-family: var(--font-display); font-size: 28px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; padding-top: 4px; }
.service-body p { font-size: 15px; color: var(--gray); line-height: 1.75; font-weight: 300; }

/* PARA QUIÉN */
.pq-card {
  padding: 56px;
  border-bottom: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
}

.pq-num { font-family: var(--font-display); font-size: 72px; font-weight: 800; color: var(--coral); line-height: 1; opacity: 0.25; }
.pq-body h3 { font-family: var(--font-display); font-size: 30px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 14px; }
.pq-body p { font-size: 15px; color: var(--gray); line-height: 1.75; font-weight: 300; max-width: 480px; }

/* BIO */
.bio {
  padding: 64px 56px;
  border-bottom: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
}

.bio-avatar { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; }
.bio-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bio h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 4px; }
.bio-role { font-size: 11px; color: var(--coral); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-bottom: 20px; }
.bio p { font-size: 15px; color: var(--gray); line-height: 1.75; max-width: 520px; margin-bottom: 12px; font-weight: 300; }
.bio a { font-size: 13px; color: var(--muted); border-bottom: 0.5px solid var(--border); padding-bottom: 2px; transition: color 0.2s; }
.bio a:hover { color: var(--dark); }

/* TEAM */
.team { padding: 64px 56px; border-bottom: 0.5px solid var(--border); }
.team h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 16px; }
.team p { font-size: 15px; color: var(--gray); line-height: 1.75; max-width: 540px; margin-bottom: 12px; font-weight: 300; }
.team p.strong { color: var(--dark); font-weight: 400; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill { font-size: 12px; color: var(--muted); border: 0.5px solid var(--border); padding: 5px 14px; letter-spacing: 0.03em; }

/* CTA */
.cta { padding: 80px 56px; }
.cta h2 { font-family: var(--font-body); font-size: 22px; font-weight: 400; letter-spacing: 0; line-height: 1.4; margin-bottom: 10px; text-transform: none; }
.cta p { font-size: 16px; color: var(--gray); margin-bottom: 36px; font-weight: 300; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; color: var(--dark); border: 1px solid var(--dark); padding: 13px 28px; cursor: pointer; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s, color 0.2s; }
.cta-btn:hover { background: var(--dark); color: var(--cream); }

/* FOOTER */
footer { padding: 22px 56px; border-top: 0.5px solid var(--border); display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
footer span { font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.coral-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.f1 { animation: fadeUp 0.5s ease 0.05s both; }
.f2 { animation: fadeUp 0.5s ease 0.2s both; }
.f3 { animation: fadeUp 0.5s ease 0.35s both; }
.f4 { animation: fadeUp 0.5s ease 0.5s both; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 11px; }
  .hero { padding: 48px 24px 56px; }
  .hero h1 { font-size: 68px; }
  .page-header { padding: 48px 24px 40px; }
  .page-header h1 { font-size: 52px; }
  .section, .cta { padding: 48px 24px; }
  .block-title { padding: 20px 24px; }
  .product, .service, .pq-card { grid-template-columns: 1fr; gap: 16px; padding: 40px 24px; }
  .bio { padding: 48px 24px; grid-template-columns: 1fr; }
  .team { padding: 48px 24px; }
  .cta h2 { font-size: 36px; }
  footer { padding: 18px 24px; }
}
