/* Mavitec — Light & Premium (alta performance, atmosfera Apple) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #f9fafb;
  --bg-footer: #f3f4f6;
  --bg-elevated: #ffffff;
  --text: #111827;
  --text-strong: #000000;
  --muted: #6b7280;
  --line: rgba(0, 0, 0, 0.06);
  --line-hair: rgba(0, 0, 0, 0.04);
  --neo-border: 1px solid rgba(0, 0, 0, 0.04);
  --neo-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --neo-shadow-hover: 0 16px 48px rgba(37, 99, 235, 0.12);
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-dark: #1e3a8a;
  --accent-neon: #3b82f6;
  --max: 1080px;
  --header-h: 70px;
  --radius-card: 20px;
  --radius-bento: 32px;
  --space-section: clamp(4.5rem, 12vw, 7.5rem);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --title-tracking: -0.04em;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Tech-Reveal: fundo #F9FAFB + gradiente mouse + SVGs + logos */
.ambient,
.tech-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.tech-bg__solid {
  position: absolute;
  inset: 0;
  background: var(--bg);
}

.tech-bg__mouse {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 80% at var(--mx, 50%) var(--my, 45%),
    rgba(37, 99, 235, 0.15),
    rgba(249, 250, 251, 0) 65%
  );
  transition: background 0.12s ease-out;
}

.tech-bg__layers {
  position: absolute;
  inset: -12% -8% -8% -8%;
  width: auto;
  height: auto;
}

.tech-bg__layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.tech-bg__layer .tech-svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 110vh;
}

.tech-bg__layer--circuits {
  opacity: 0.55;
}

.tech-bg__layer--docker {
  opacity: 0.45;
}

.tech-bg__layer--network {
  opacity: 0.42;
}

.tech-bg__floats {
  position: absolute;
  inset: 0;
}

.tech-float-wrap {
  position: absolute;
  opacity: 0.38;
  filter: grayscale(0.15) opacity(0.95);
  will-change: transform;
}

.tech-float {
  display: block;
  width: auto;
  height: auto;
  max-width: min(120px, 22vw);
  max-height: 40px;
  object-fit: contain;
  will-change: transform;
}

.tech-float-wrap:last-child .tech-float {
  max-width: 48px;
  max-height: 48px;
}

@media (max-width: 720px) {
  .tech-bg__floats {
    opacity: 0.65;
  }
}

.tech-reveal--reduced .tech-bg__layers,
.tech-reveal--reduced .tech-bg__floats {
  display: none;
}

.tech-reveal--reduced .tech-bg__mouse {
  opacity: 0.7;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}

#hero-title,
#quem-somos,
#servicos,
#saas-bento,
#depoimentos,
#contato,
#rodape {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* —— Header (vidro branco) —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header__bar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-strong);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: var(--title-tracking);
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
}
/* Wordmark horizontal no header (home) — maior que o ícone quadrado */
.brand__mark--wordmark {
  width: auto;
  height: 52px;
  max-width: min(260px, 55vw);
  border-radius: 12px;
}
.brand__name {
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav a:hover,
.nav a:focus-visible {
  color: var(--text-strong);
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}
.nav a[aria-current='page'] {
  color: var(--text-strong);
  background: rgba(37, 99, 235, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: var(--neo-border);
  border-radius: 10px;
  background: var(--bg-elevated);
  box-shadow: var(--neo-shadow);
  color: var(--text-strong);
  cursor: pointer;
}
.nav-toggle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 860px) {
  .nav,
  .header__bar > .btn-solid {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  flex-direction: column;
  gap: 0.25rem;
  z-index: 99;
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(0, 0, 0, 0.04);
  outline: none;
}
.mobile-nav .btn-solid {
  margin-top: 0.5rem;
  text-align: center;
  justify-content: center;
}

/* —— Botões —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-solid {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.btn-solid:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn-line {
  background: var(--bg-elevated);
  color: var(--text-strong);
  border: var(--neo-border);
  box-shadow: var(--neo-shadow);
}
.btn-line:hover {
  box-shadow: var(--neo-shadow-hover);
}
.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
}

/* —— Hero —— */
main {
  padding-top: var(--header-h);
}

.hero {
  padding: var(--space-section) 0;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 260px);
  gap: 3rem;
  align-items: start;
}

@media (max-width: 800px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__aside {
    order: -1;
  }
}

.kicker {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__title-wrap {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.75rem 0.75rem 0;
  margin: 0 0 1rem -0.25rem;
  border-radius: 24px;
  background: radial-gradient(ellipse 140% 120% at 30% 30%, rgba(37, 99, 235, 0.08), transparent 62%);
}

@keyframes floatHeroMockup {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.laptop-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  perspective: 1200px;
  animation: floatHeroMockup 7s ease-in-out infinite;
  z-index: 10;
}

.laptop-mockup {
  position: relative;
  width: 100%;
  padding-bottom: 64%; 
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255,255,255,0.7);
  background-color: #0f172a;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0,0,0,0.05) inset,
    0 0 40px rgba(37, 99, 235, 0.2);
  transform: rotateX(8deg) rotateY(-4deg) rotateZ(1deg);
  transform-style: preserve-3d;
}

.laptop-mockup::before {
  content: '';
  position: absolute;
  top: -8px; 
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #334155;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(255,255,255,0.2);
}

.laptop-mockup__screen {
  position: absolute;
  top: 3%; right: 2%; bottom: 4%; left: 2%;
  background: #1e293b;
  border-radius: 6px;
  overflow: hidden;
}

.laptop-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.laptop-mockup__base {
  position: absolute;
  bottom: -4%;
  left: -5%;
  width: 110%;
  height: 6%;
  background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
  border-radius: 2px 2px 8px 8px;
  transform: rotateX(8deg) rotateY(-4deg) rotateZ(1deg);
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.1),
    inset 0 1px 1px rgba(255,255,255,0.8);
}
.laptop-mockup__base::after {
  content: '';
  position: absolute;
  top: 0; left: 45%; right: 45%;
  height: 25%;
  background: #94a3b8;
  border-radius: 0 0 4px 4px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: var(--title-tracking);
  line-height: 1.08;
  max-width: 18ch;
  color: var(--text-strong);
}

.lead {
  margin: 0 0 2rem;
  font-size: 1.0625rem;
  color: #6b7280;
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.metric-list {
  margin: 0;
  padding: 1.25rem;
  list-style: none;
  border: var(--neo-border);
  border-radius: var(--radius-card);
  background: var(--bg-elevated);
  box-shadow: var(--neo-shadow);
}
.metric-list li {
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.metric-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.metric-list__v {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: var(--title-tracking);
  margin-bottom: 0.15rem;
}

/* —— Faixa logos —— */
.strip {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.75rem 0;
  background: rgba(255, 255, 255, 0.5);
}
.strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.strip__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.strip__logos img {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(0.15);
}
.strip__logos img.strip__logo--hetzner {
  height: 52px;
  max-width: 176px;
}

/* —— Bento SaaS —— */
.bento-section {
  padding: var(--space-section) 0;
}
.bento {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 320px;
}
@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
}
.bento__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-bento);
  border: var(--neo-border);
  background: var(--bg-elevated);
  box-shadow: var(--neo-shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  overflow: hidden;
}
.bento__item:hover,
.bento__item:focus-visible {
  box-shadow: var(--neo-shadow-hover);
  transform: translateY(-2px);
  outline: none;
}
.bento__item--large {
  grid-row: span 2;
  min-height: 100%;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
}
@media (max-width: 900px) {
  .bento__item--large {
    grid-row: auto;
    min-height: 220px;
  }
}
.bento__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.bento__logo {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  max-height: 40px;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.95;
}
.bento__item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: var(--title-tracking);
  color: var(--text-strong);
}
.bento__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 38ch;
}
.bento__cta {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

/* —— Seções genéricas —— */
.section {
  padding: var(--space-section) 0;
}
.section--tight {
  padding-top: 0;
}
.section--mute {
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.block-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}
.block-head--left {
  max-width: 36rem;
}
.block-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.125rem);
  font-weight: 600;
  letter-spacing: var(--title-tracking);
  line-height: 1.15;
  color: var(--text-strong);
}
.subhead {
  margin: 0;
  color: #6b7280;
  font-size: 1.0625rem;
}
.home-more {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}
.home-more a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.home-more a:hover {
  text-decoration: underline;
}

/* Páginas internas */
.subpage-main {
  min-height: 50vh;
}
.page-intro {
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 2.5rem;
}
.page-intro h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 600;
  letter-spacing: var(--title-tracking);
  line-height: 1.1;
  color: var(--text-strong);
}
.section-block {
  padding-bottom: var(--space-section);
}
.section-block--mute {
  padding-top: var(--space-section);
  margin-top: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.55);
}
.cards--detail {
  align-items: stretch;
}
.card--static {
  cursor: default;
  pointer-events: none;
}
.card--static:hover {
  transform: none;
  box-shadow: var(--neo-shadow);
}
.detail-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
}
.detail-list li + li {
  margin-top: 0.35rem;
}
.process-steps {
  margin: 0;
  padding-left: 1.25rem;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.process-steps li + li {
  margin-top: 0.75rem;
}
.process-steps strong {
  color: var(--text-strong);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.product-tile {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-card);
  border: var(--neo-border);
  background: var(--bg-elevated);
  box-shadow: var(--neo-shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-tile:hover,
.product-tile:focus-visible {
  box-shadow: var(--neo-shadow-hover);
  transform: translateY(-2px);
  outline: none;
}
.product-tile__badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.product-tile__logo {
  display: block;
  max-height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.product-tile__title-only {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: var(--title-tracking);
  color: var(--text-strong);
}
.product-tile h3:not(.product-tile__title-only) {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: var(--title-tracking);
  color: var(--text-strong);
}
.product-tile p {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.product-tile__cta {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.back-home {
  margin: 1.25rem 0 0;
}
.back-home__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.back-home__link:hover {
  color: var(--accent);
}

/* Pilares */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}
.pillar {
  padding: 1.5rem;
  border-radius: var(--radius-card);
  border: var(--neo-border);
  background: var(--bg-elevated);
  box-shadow: var(--neo-shadow);
}
.pillar__n {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: var(--title-tracking);
  color: var(--text-strong);
}
.pillar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Cards serviços */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.card {
  display: block;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-card);
  border: var(--neo-border);
  background: var(--bg-elevated);
  box-shadow: var(--neo-shadow);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover,
.card:focus-visible {
  box-shadow: var(--neo-shadow-hover);
  transform: translateY(-2px);
  outline: none;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: var(--title-tracking);
  color: var(--text-strong);
}
.card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.card__more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

/* Depoimentos */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.quote {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius-card);
  border: var(--neo-border);
  background: var(--bg-elevated);
  box-shadow: var(--neo-shadow);
}
.quote blockquote {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
}
.quote figcaption {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Contato */
.contact {
  padding: var(--space-section) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.contact__box {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border: var(--neo-border);
  box-shadow: var(--neo-shadow);
}
.contact h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: var(--title-tracking);
  color: var(--text-strong);
}
.contact__lede {
  margin: 0 0 1.75rem;
  color: #6b7280;
  font-size: 1rem;
}
.contact__mail {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
}
.contact__mail a {
  color: var(--accent);
  text-decoration: none;
}
.contact__mail a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--bg-footer);
  padding: 3rem 0 2rem;
  color: var(--text);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
.footer__tag {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 280px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 560px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
}
.footer__h {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
}
.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__list li + li {
  margin-top: 0.4rem;
}
.footer__list a {
  font-size: 0.875rem;
  color: #4b5563;
  text-decoration: none;
}
.footer__list a:hover {
  color: var(--accent);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}
.footer__copy {
  margin: 0;
}
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.footer__meta a {
  color: #4b5563;
  text-decoration: none;
}
.footer__meta a:hover {
  color: var(--accent);
}
.footer__sep {
  opacity: 0.45;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  margin: 0;
  padding: calc(var(--header-h) + 2rem) 1.25rem 3rem;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}
.legal-inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-card);
  border: var(--neo-border);
  background: var(--bg-elevated);
  box-shadow: var(--neo-shadow);
}
.legal-eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.legal-inner h1 {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: var(--title-tracking);
  color: var(--text-strong);
}
.legal-meta {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.legal-inner p,
.legal-inner ul {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #374151;
}
.legal-inner ul {
  padding-left: 1.1rem;
}
.legal-inner ul a {
  color: var(--accent);
  text-decoration: none;
}
.legal-inner ul a:hover {
  text-decoration: underline;
}
.legal-back {
  display: inline-flex;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.legal-back:hover {
  text-decoration: underline;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn-solid:hover,
  .card:hover,
  .bento__item:hover,
  .product-tile:hover {
    transform: none;
  }
}

/* Idioma + IP */
.lang-ui {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: var(--neo-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--neo-shadow);
}
.lang-ui label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lang-ui select {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 12px;
}
.ip-indicator {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 120;
  padding: 8px 10px;
  border: var(--neo-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--neo-shadow);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .lang-ui,
  .ip-indicator {
    bottom: 10px;
    transform: scale(0.92);
    transform-origin: bottom;
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  right: 14px;
  bottom: 68px;
  z-index: 121;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  background: #22c15e;
}

.whatsapp-float:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  line-height: 0;
}

.whatsapp-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

@media (max-width: 700px) {
  .whatsapp-float {
    right: 10px;
    bottom: 60px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-icon,
  .whatsapp-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Cookie consent bar */
.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 56px;
  z-index: 122;
}

.cookie-consent__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: var(--neo-border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--neo-shadow);
}

.cookie-consent__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f6e7cf;
  flex-shrink: 0;
}

.cookie-consent__text {
  margin: 0;
  color: #4b5563;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.cookie-consent__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cookie-consent__btn {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: #111827;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 12px;
  cursor: pointer;
}

.cookie-consent__btn--accept {
  background: #16a34a;
  border-color: #15803d;
  color: #fff;
}

.cookie-consent__btn--decline {
  background: #fff;
}

.cookie-consent__btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .cookie-consent {
    bottom: 76px;
  }
  .cookie-consent__item {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .cookie-consent__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
