:root {
  --bg: #0A2540;
  --bg-deep: #081a30;
  --bg-soft: #0d1b2e;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.10);
  --text: #f5f7fb;
  --muted: #A7B0C0;
  --primary: #024AD8;
  --primary-soft: rgba(2, 74, 216, 0.16);
  --accent: #C8A96A;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.22);
  --radius: 24px;
  --radius-lg: 32px;
  --max: 1180px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(2, 74, 216, 0.18), transparent 26%),
    radial-gradient(circle at left center, rgba(200, 169, 106, 0.12), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 50%, var(--bg) 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
  position: relative;
}

.nav-links a.active-link {
  color: var(--text);
}

.nav-links a.active-link::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: var(--transition);
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  min-width: 0;
  flex-shrink: 0;
}

.nav-logo {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-role {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  transition: var(--transition);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2467e6);
  color: white;
  box-shadow: 0 10px 30px rgba(2, 74, 216, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 169, 106, 0.40);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.10);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.07);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.20);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.30);
}

.btn-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: var(--transition);
  padding: 0;
  flex-shrink: 0;
}

.btn-linkedin img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btn-linkedin:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(200, 169, 106, 0.30);
  background: rgba(255, 255, 255, 0.08);
}

/* HERO */
.hero {
  padding: 70px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 0 0 18px;
  max-width: 10ch;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.stat {
  min-width: 170px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
}

.stat strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.hero-card {
  position: relative;
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(2, 74, 216, 0.25), transparent 60%);
  pointer-events: none;
}

.profile-shell {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #e8edf4, #c8d3e2);
  min-height: 500px;
  display: flex;
  align-items: end;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.profile-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(7, 17, 31, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-soft);
}

.floating-card strong {
  display: block;
  margin-bottom: 4px;
}

.floating-card span {
  color: var(--muted);
}

.floating-card span strong {
  color: var(--accent);
}

/* SECTIONS */
section {
  padding: 40px 0;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 10px;
  letter-spacing: -0.04em;
  position: relative;
}

.section-head h2 span {
  color: var(--accent);
}

.section-head h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  max-width: 70ch;
}

.highlight-gold {
  color: var(--accent);
}

/* GRIDS */
.grid-3,
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* CARDS */
.card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
}

.card .icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  font-weight: 800;
  color: var(--text);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ABOUT / DIFERENCIAL */
.about-highlight {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(2, 74, 216, 0.10), transparent);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
}

.quote {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 15px;
}

.tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tagline span {
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.diferencial-text {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.diferencial-text strong {
  color: var(--text);
  font-weight: 600;
}

.diferencial-highlight {
  margin-top: 10px;
  font-weight: 600;
  color: var(--text);
}

/* SERVICE LISTS */
.service-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.service-card li {
  margin-bottom: 4px;
}

/* IMPACT */
.impact {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.impact:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.impact strong {
  display: block;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 8px;
}

.impact span {
  color: var(--muted);
  line-height: 1.6;
}

/* CTA */
.cta-box {
  margin-top: 20px;
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(135deg, rgba(2, 74, 216, 0.15), rgba(200, 169, 106, 0.05));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
}

.cta-box p {
  margin: 0 auto;
  max-width: 60ch;
  color: var(--text);
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  padding: 40px 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--card-border);
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .grid-3,
  .services,
  .about,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    gap: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: var(--transition);
    z-index: 120;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero {
    padding: 48px 0 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat {
    width: 100%;
  }

  .profile-shell {
    min-height: 380px;
  }

  .quote {
    font-size: 1.45rem;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--max));
  }

  .nav-logo {
    width: 38px;
    height: 38px;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-whatsapp {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-linkedin {
    width: 52px;
    height: 52px;
    align-self: center;
  }

  .hero-card,
  .cta-box,
  .card,
  .about-highlight {
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .section-head h2,
  .cta-box h2 {
    font-size: 2rem;
  }
}