:root {
  --black: #000000;
  --zinc-950: #09090b;
  --white: #ffffff;

  /* Palette oro */
  --gold: #d4af37;
  --gold-hover: #b88917;
  --gold-light: #f8e7a1;
  --gold-soft: #fff3c4;
  --gold-border: rgba(212, 175, 55, 0.55);
  --gold-glow: rgba(212, 175, 55, 0.32);

  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --glass: rgba(255, 255, 255, 0.05);
  --panel: rgba(0, 0, 0, 0.5);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 1024px;
}

.center {
  text-align: center;
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 112px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.logo span {
  color: var(--gold);
}

.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--gray-300);
}

.desktop-nav a,
.mobile-nav a {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--white);
}

.nav-cta,
.mobile-cta,
.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-hover));
  color: #120d02;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.18);
}

.nav-cta {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.mobile-cta:hover,
.button-primary:hover {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-hover));
  box-shadow: 0 16px 38px rgba(212, 175, 55, 0.28);
}

.menu-button {
  display: none;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.menu-button:hover {
  border-color: var(--gold-border);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  color: var(--gray-300);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-inner {
  display: grid;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 20px;
}

.mobile-cta {
  text-align: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 112px 0 0;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 14px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 576px;
  margin-bottom: 32px;
  color: var(--gray-300);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.65;
}

.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-outline {
  border: 1px solid var(--border-strong);
}

.button-outline:hover {
  border-color: var(--gold-border);
  color: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.button-large {
  padding-inline: 40px;
}

.hero-panel-wrap {
  position: relative;
}

.red-glow {
  position: absolute;
  inset: 0;
  background: var(--gold);
  filter: blur(120px);
  opacity: 0.3;
}

.glass-panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
}

.hero-panel h2 {
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero-panel p {
  margin-bottom: 32px;
  color: var(--gray-300);
  line-height: 1.7;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
}

.mini-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: var(--panel);
}

.mini-card div {
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.mini-card p {
  margin: 8px 0 0;
  color: var(--gray-300);
  font-size: 14px;
}

.section {
  padding: 112px 0;
}

.border-top {
  border-top: 1px solid var(--border);
}

.section-dark {
  background: var(--zinc-950);
}

.section-text {
  color: var(--gray-300);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading {
  margin-bottom: 64px;
}

.section-heading h2,
.positioning h2,
.split-grid h2,
.contact-box h2 {
  font-size: clamp(40px, 5vw, 56px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 240px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.08);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.service-card p {
  color: var(--gray-400);
  line-height: 1.7;
}

.team-section {
  background: #000;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(212, 175, 55, 0.1);
}

.team-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #18181b;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-content {
  padding: 28px;
}

.team-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.team-role {
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 14px;
}

.team-content p:last-child {
  color: #a1a1aa;
  line-height: 1.7;
}

.center-text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.method-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: var(--glass);
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.method-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.08);
}

.method-card div {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

.method-card h3 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 800;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.audience-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  font-weight: 800;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.audience-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.08);
}

.results-title {
  margin-bottom: 56px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.result-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  background: var(--glass);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.result-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.08);
}

.result-card p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 800;
}

.red-section {
  background: linear-gradient(135deg, #8a650c 0%, var(--gold) 45%, #5c3f05 100%);
  color: #100b01;
}

.red-section h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
}

.red-section p {
  color: #1f1603;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}

.contact-box {
  max-width: 896px;
}

.contact-box .section-text {
  margin-bottom: 32px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero {
    padding-top: 104px;
  }

  h1 {
    font-size: 48px;
  }

  h2,
  .section-heading h2,
  .positioning h2,
  .split-grid h2,
  .contact-box h2,
  .red-section h2 {
    font-size: 36px;
  }

  .section {
    padding: 88px 0;
  }

  .button-group,
  .button {
    width: 100%;
  }

  .services-grid,
  .method-grid,
  .results-grid,
  .audience-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .glass-panel {
    padding: 24px;
  }
}
