/* ═══════════════════════════════════════════════
   APPMOLD — Main Styles
   Light / Minimalist — Apple & Gemini inspired
   ═══════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Brand Colors ─────────────────────────────── */
  --c-purple:        #5B21B6;                   /* Royal Purple — CTAs, links, accents  */
  --c-purple-hover:  #4C1D95;                   /* Hover state                          */
  --c-purple-light:  #A78BFA;                   /* Tech Lilac — subtle accents          */
  --c-purple-bg:     rgba(91, 33, 182, 0.06);  /* Card accent backgrounds              */
  --c-purple-border: rgba(91, 33, 182, 0.18);  /* Card accent borders                  */
  --c-sage:          #8BA89C;                   /* Sage Green — secondary accent        */
  --c-sage-bg:       rgba(139, 168, 156, 0.12);/* Sage backgrounds                     */

  /* ── Neutral Palette ─────────────────────────── */
  --c-bg:       #FAFAFA;   /* Paper — main background    */
  --c-bg-alt:   #F1F5F9;   /* Alternating section bg     */
  --c-bg-card:  #ffffff;   /* Card backgrounds           */
  --c-border:   #E2E8F0;   /* Default borders            */
  --c-divider:  #F1F5F9;   /* Lighter dividers           */

  /* ── Text ────────────────────────────────────── */
  --c-text:        #130F1A;   /* Midnight — headings, strong text  */
  --c-text-body:   #64748B;   /* Steel Gray — body paragraphs      */
  --c-text-muted:  #94A3B8;   /* Meta, captions                    */
  --c-text-light:  #CBD5E1;   /* Very subtle text                  */

  /* ── Typography ─────────────────────────────── */
  --f-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --f-body:    'Outfit', system-ui, -apple-system, sans-serif;

  /* ── Sizing ─────────────────────────────────── */
  --container-max: 1200px;
  --container-pad: clamp(1.5rem, 5vw, 4rem);
  --nav-h: 68px;

  /* ── Radius ──────────────────────────────────── */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  999px;

  /* ── Shadows ─────────────────────────────────── */
  --shadow-xs:   0 1px 3px rgba(19, 15, 26, 0.06);
  --shadow-sm:   0 2px 10px rgba(19, 15, 26, 0.07);
  --shadow-md:   0 4px 24px rgba(19, 15, 26, 0.09);
  --shadow-hover: 0 8px 32px rgba(19, 15, 26, 0.11);

  /* ── Transitions ─────────────────────────────── */
  --t-fast:   150ms ease;
  --t-normal: 260ms ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-bg-alt); }
::-webkit-scrollbar-thumb { background: var(--c-purple-light); border-radius: 3px; }

/* ─── Container ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--r-xl);
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t-normal);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn--primary {
  background: var(--c-purple);
  color: #fff;
  border-color: var(--c-purple);
}
.btn--primary:hover {
  background: var(--c-purple-hover);
  border-color: var(--c-purple-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--primary:active { transform: translateY(0); box-shadow: none; }

.btn--outline {
  background: transparent;
  color: var(--c-purple);
  border-color: var(--c-purple);
}
.btn--outline:hover {
  background: var(--c-purple);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════
   BADGE / TAG
   ═══════════════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--c-purple-bg);
  border: 1px solid var(--c-purple-border);
  color: var(--c-purple);
}

/* ═══════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════ */
.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
}

.section__label {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--f-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-text);
  max-width: 640px;
  margin-bottom: 1.25rem;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--c-text-body);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.dot {
  color: var(--c-text-light);
  margin: 0 0.3rem;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.9);
  transition: box-shadow var(--t-normal), background var(--t-normal);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: 0 1px 0 var(--c-border);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Logo inline SVG + wordmark */
.nav__logo-svg {
  height: 34px;
  width: auto;
  transition: opacity var(--t-fast);
}

.nav__logo-name {
  font-family: var(--f-body);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--c-text);
  transition: opacity var(--t-fast);
  margin-top: 1px;
}

.nav__logo:hover .nav__logo-svg,
.nav__logo:hover .nav__logo-name { opacity: 0.7; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--c-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-normal);
}
.nav__link:hover { color: var(--c-text); }
.nav__link:hover::after { transform: scaleX(1); }

/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.75rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.lang-toggle:hover { border-color: var(--c-purple); color: var(--c-text); }
.lang-toggle__sep { color: var(--c-border); }
.lang-toggle__option { cursor: pointer; transition: color var(--t-fast); }
.lang-toggle__option.active { color: var(--c-purple); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--t-normal);
}
.nav__menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__menu-btn.open span:nth-child(2) { opacity: 0; }
.nav__menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  padding: 1rem var(--container-pad) 1.5rem;
  box-shadow: var(--shadow-sm);
}
.nav__mobile ul { display: flex; flex-direction: column; }
.nav__mobile-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text-body);
  border-bottom: 1px solid var(--c-divider);
  transition: color var(--t-fast);
}
.nav__mobile-link:hover { color: var(--c-purple); }
.nav__mobile.open { display: block; }

/* ═══════════════════════════════════════════════
   HERO — 2 colunas: texto + ilustração SVG
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-h) 0 5rem;
  background: var(--c-bg);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-purple);
  background: var(--c-purple-bg);
  border: 1px solid var(--c-purple-border);
  padding: 0.35rem 1rem;
  border-radius: var(--r-xl);
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.6s 0.15s ease both;
}

.hero__tagline {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s 0.28s ease both;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--c-text-body);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.6s 0.42s ease both;
}

.hero .btn {
  animation: fadeInUp 0.6s 0.56s ease both;
}

/* SVG illustration */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.9s 0.4s ease both;
}

.hero__svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-text-light);
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--t-fast);
}
.hero__scroll:hover { color: var(--c-purple); }

/* ═══════════════════════════════════════════════
   LOGOS STRIP
   ═══════════════════════════════════════════════ */
.logos-strip {
  background: var(--c-bg);
  border-top: 1px solid var(--c-divider);
  border-bottom: 1px solid var(--c-divider);
  padding: 2.25rem 0;
}

.logos-strip .container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.logos-strip__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-text-light);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.logos-strip__row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  flex: 1;
}

.logos-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  transition: opacity var(--t-fast);
}
.logos-strip__item:hover { opacity: 0.7; }

/* Se tiver imagem de logo real */
.logos-strip__item img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: all var(--t-normal);
}
.logos-strip__item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Versão texto (enquanto não tem logo) */
.logos-strip__name {
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-text-light);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.logos-strip__item:hover .logos-strip__name { color: var(--c-text-muted); }

.logos-strip__divider {
  width: 1px;
  height: 20px;
  background: var(--c-divider);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about { background: var(--c-bg-alt); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.about__text p {
  color: var(--c-text-body);
  line-height: 1.85;
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
}
.about__text p:last-child { margin-bottom: 0; }

.founder-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-normal), border-color var(--t-normal);
}
.founder-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-purple-light);
}

.founder-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-purple-bg);
  border: 1.5px solid var(--c-purple-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.founder-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.founder-card__label {
  font-family: var(--f-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: 0.25rem;
}

.founder-card__name {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.3rem;
}

.founder-card__title {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.founder-card__bio {
  font-size: 0.875rem;
  color: var(--c-text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-divider);
}

.founder-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.services { background: var(--c-bg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: all var(--t-normal);
  cursor: default;
}
.service-card:hover {
  border-color: var(--c-purple-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.service-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--c-purple-bg);
  border: 1px solid var(--c-purple-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--c-purple);
}

.service-card__title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--c-text-body);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════ */
.manifesto {
  background: #130F1A;
  overflow: hidden;
  text-align: center;
}

.manifesto__inner {
  position: relative;
  padding: 2rem 0;
  max-width: 720px;
  margin: 0 auto;
}

.manifesto__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32rem;
  height: 32rem;
  background: #5B21B6;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
  pointer-events: none;
}

.manifesto__icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 2rem;
  opacity: 0.7;
}

.manifesto__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A78BFA;
  margin-bottom: 1.75rem;
}

.manifesto__quote {
  font-family: var(--f-display);
  font-size: clamp(1.625rem, 3.2vw, 2.75rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #FAFAFA;
  margin-bottom: 0;
}

.manifesto__emphasis {
  display: block;
  font-weight: 700;
  color: #A78BFA;
  margin-top: 0.2rem;
}

.manifesto__sub {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.75;
  margin-top: 1.75rem;
}

/* ═══════════════════════════════════════════════
   PROJECTS
   ═══════════════════════════════════════════════ */
.projects { background: var(--c-bg-alt); }

.projects__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.project-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--t-normal);
  box-shadow: var(--shadow-xs);
}
.project-card:hover {
  border-color: var(--c-purple-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* Featured project card — subtle left border accent */
.project-card--featured {
  border-left: 3px solid var(--c-purple);
}

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

.project-card__company-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.itau      { background: #fff3e0; color: #e65100; border: 1px solid #ffe0b2; }
.hvar      { background: var(--c-purple-bg); color: var(--c-purple); border: 1px solid var(--c-purple-border); }
.globo     { background: #fce4ec; color: #c62828; border: 1px solid #f8bbd0; }
.bix       { background: #e8eaf6; color: #283593; border: 1px solid #c5cae9; }
.inclusion { background: #e0f2f1; color: #00695c; border: 1px solid #b2dfdb; }

/* Logo de empresa (quando substituir os ícones de texto) */
.project-card__company-logo {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}

.project-card__company {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.25rem;
}

.project-card__meta {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.project-card__sector {
  color: var(--c-purple);
  font-weight: 600;
}

.project-card__desc {
  font-size: 0.875rem;
  color: var(--c-text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

/* ═══════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════ */
.products {
  background: #130F1A;
  overflow: hidden;
}

.products__inner {
  text-align: center;
  position: relative;
  padding: 4rem 0;
  max-width: 640px;
  margin: 0 auto;
}

/* Glow de IA — fundo escuro */
.products__glow {
  display: block;
  position: absolute;
  right: -12rem;
  top: -8rem;
  width: 32rem;
  height: 32rem;
  background: #5B21B6;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}

.products__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #FAFAFA;
  margin-bottom: 1.25rem;
}

.products__subtitle {
  font-size: 1.0625rem;
  color: #94A3B8;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* Label e botão em contexto escuro */
.products .section__label { color: #A78BFA; }

.products .btn--outline {
  color: #FAFAFA;
  border-color: rgba(255, 255, 255, 0.25);
}
.products .btn--outline:hover {
  background: #5B21B6;
  border-color: #5B21B6;
  color: #fff;
}

.products__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}
.products__dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.4);
  animation: pulse 2s ease-in-out infinite;
}
.products__dots span:nth-child(2) { animation-delay: 0.4s; background: #A78BFA; }
.products__dots span:nth-child(3) { animation-delay: 0.8s; }

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact { background: var(--c-bg-alt); text-align: center; }
.contact .section__title,
.contact .section__subtitle,
.contact .section__label {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-xl);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1.5px solid var(--c-border);
  background: var(--c-bg);
  color: var(--c-text-body);
  transition: all var(--t-normal);
  box-shadow: var(--shadow-xs);
}
.contact__link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact__link--whatsapp:hover { border-color: #25d366; color: #1da852; }
.contact__link--linkedin:hover { border-color: #0a66c2; color: #0a66c2; }
.contact__link--email:hover    { border-color: var(--c-purple); color: var(--c-purple); }

.contact__location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__logo-svg {
  height: 26px;
  width: auto;
  opacity: 0.65;
}

.footer__logo-name {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-text-muted);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

.footer__rights {
  font-size: 0.8125rem;
  color: var(--c-text-light);
}
