/* ==========================================================================
   Vínculo Executive — Design System
   Navy #0a1628 · Gold #c5a059 · Cream #f9f7f2
   ========================================================================== */

:root {
  --navy: #0a1628;
  --navy-light: #132038;
  --navy-muted: #1e3050;
  --gold: #c5a059;
  --gold-light: #d4b878;
  --gold-dark: #a8863f;
  --cream: #f9f7f2;
  --cream-dark: #ede9e0;
  --white: #ffffff;
  --text: #2c3344;
  --text-muted: #5a6272;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-light-muted: rgba(255, 255, 255, 0.6);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;

  --container: 72rem;
  --header-h: 5rem;
  --radius: 0.375rem;
  --radius-lg: 0.75rem;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  display: block;
  min-height: 50vh;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* Typography */
.lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section__label--gold {
  color: var(--gold);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section__title--light {
  color: var(--white);
}

.section__desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin-top: 1rem;
}

.section__desc--light {
  color: var(--text-light-muted);
}

.section__header {
  margin-bottom: 3rem;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__desc {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 0.9375rem;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  width: auto;
  height: auto;
}

.logo__img--vinculo {
  max-height: 3rem;
  width: auto;
}

.logo__img--executive {
  max-height: 2.75rem;
  width: auto;
}

.site-header .logo__img--executive {
  max-height: 2.5rem;
}

.site-header .logo__img--vinculo {
  max-height: 2.65rem;
}

.site-footer .logo__img--vinculo {
  max-height: 3.25rem;
}

.site-footer .logo {
  justify-content: center;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header--scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.2);
}

.site-header--scrolled .site-nav__list a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.site-nav__toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--white);
  transition: background var(--transition);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__list a:not(.btn) {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.site-nav__list a:not(.btn):hover,
.site-nav__list a:not(.btn).is-active {
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80') center/cover no-repeat;
}

.hero__bg--agency {
  background: url('/images/hero-family.jpg') center/cover no-repeat;
}

.hero--agency .hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.84) 0%,
    rgba(10, 22, 40, 0.72) 45%,
    rgba(10, 22, 40, 0.88) 100%
  );
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.65) 50%,
    rgba(10, 22, 40, 0.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: calc(var(--header-h) + 3rem) 4rem;
  max-width: 52rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Sections */
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  background: var(--navy);
  color: var(--text-light);
}

.section--compact {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

/* Problema */
.problema {
  max-width: 48rem;
  margin-inline: auto;
}

.problema__text {
  margin-bottom: 2.5rem;
}

.problema__text p + p {
  margin-top: 1rem;
  color: var(--text-muted);
}

.problema__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.problema__items li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  font-size: 0.9375rem;
  font-weight: 500;
}

.problema__callout {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow);
}

/* Solution */
.solution {
  position: relative;
  overflow: hidden;
}

.solution__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=80') center/cover no-repeat;
  opacity: 0.12;
}

.solution__content {
  position: relative;
  z-index: 1;
}

.solution__statement {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 500;
  font-style: italic;
  text-align: center;
  color: var(--gold);
  margin-block: 3rem;
}

.solution__mission {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--text-light-muted);
  max-width: 36rem;
  margin-inline: auto;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 160, 89, 0.25);
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process__step {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
}

.process__step:hover {
  background: rgba(197, 160, 89, 0.08);
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateY(-2px);
}

.process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--gold);
}

.process__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.process__step h3 {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

/* Icons */
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.icon--gold {
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-dark);
}

.icon--navy {
  background: rgba(10, 22, 40, 0.06);
  color: var(--navy);
}

/* Cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-2--spaced {
  margin-top: 3rem;
}

.card {
  padding: 2.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
}

.card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.card > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.9375rem;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.service p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Steps */
.steps {
  max-width: 42rem;
  margin-inline: auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--cream-dark);
}

.step:last-child {
  border-bottom: none;
}

.step__number {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.step__content h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.step__content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Comparison */
.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 0;
}

.comparison__col {
  padding: 2.5rem;
}

.comparison__col h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.comparison__col li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.comparison__col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.comparison__col--navy {
  background: var(--navy);
  color: var(--text-light);
}

.comparison__col--navy li::before {
  background: var(--gold);
}

.comparison__col--gold {
  background: var(--gold);
  color: var(--navy);
}

.comparison__col--gold h3 {
  border-bottom-color: rgba(10, 22, 40, 0.15);
}

.comparison__col--gold li::before {
  background: var(--navy);
}

/* Value cards */
.value-card {
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.value-card .icon {
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.commitment li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.commitment strong {
  color: var(--navy);
  font-weight: 600;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: all var(--transition);
}

.benefits li:hover {
  background: rgba(197, 160, 89, 0.08);
  border-color: rgba(197, 160, 89, 0.3);
}

.benefits__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--gold);
}

.benefits__icon svg {
  width: 100%;
  height: 100%;
}

.benefits--light li {
  background: var(--white);
  border-color: var(--cream-dark);
  color: var(--text);
  box-shadow: var(--shadow);
}

.benefits--light li:hover {
  background: var(--white);
  border-color: var(--gold);
}

.benefits__icon--navy {
  color: var(--navy);
}

.partner-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: 2rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}

.partner-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--navy);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.partner-banner__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 36rem;
}

.programa__note {
  text-align: center;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-light-muted);
}

/* CTA */
.cta {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80') center/cover no-repeat;
}

.cta__bg--agency {
  background: url('/images/hero-family.jpg') center 30% / cover no-repeat;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.82),
    rgba(10, 22, 40, 0.92)
  );
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 44rem;
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta__subtitle {
  font-size: 1.0625rem;
  color: var(--text-light-muted);
  margin-bottom: 2.5rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta__location {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  letter-spacing: 0.06em;
}

/* Footer */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  padding-block: 3rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}

.site-footer__link:hover {
  color: var(--gold-dark);
}

.site-footer__link svg,
.site-footer__location svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.site-footer__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.site-footer__bottom {
  padding-block: 1.25rem;
  border-top: 1px solid var(--cream-dark);
}

.site-footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* Homepage */
.grid-2--align {
  align-items: center;
}

.about-intro .lead {
  margin-top: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.0625rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.social-link svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.social-link:hover {
  color: var(--gold-dark);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-stat {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}

.about-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.about-stat__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.about-stat h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.about-stat p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  color: var(--gold-dark);
  background: rgba(197, 160, 89, 0.12);
  border-radius: 50%;
}

.service-card__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-card--featured {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  background: var(--navy);
  border-color: var(--navy);
  color: var(--text-light);
}

.service-card--featured:hover {
  transform: none;
}

.service-card__body {
  flex: 1 1 15rem;
  min-width: 0;
}

.service-card--featured h3,
.service-card--featured p {
  color: var(--text-light);
}

.service-card--featured p {
  color: var(--text-light-muted);
  margin-bottom: 0;
}

.service-card__badge {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-card__logo {
  flex: 0 0 auto;
  display: block;
  height: 6.5rem;
  width: auto;
  object-fit: contain;
}

.service-card--featured .btn {
  flex: 0 0 auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .service-card--featured {
    flex-direction: column;
    text-align: center;
  }

  .service-card--featured .btn {
    margin-left: 0;
    width: 100%;
  }

  .partner-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .partner-banner .btn {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .process {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

@media (max-width: 768px) {
  .site-nav__toggle {
    display: flex;
  }

  .site-nav__list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(249, 247, 242, 0.98);
    backdrop-filter: blur(12px);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .site-nav__list--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav__list li {
    width: 100%;
  }

  .site-nav__list a {
    display: block;
    padding: 0.875rem 1rem;
    color: var(--navy) !important;
    border-radius: var(--radius);
  }

  .site-nav__list a:hover {
    background: var(--cream-dark);
  }

  .site-nav__list .btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 480px) {
  .process {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
