/* ============================================================
   GALGTEC — Tecnologia criada a partir do conhecimento
   ============================================================ */

:root {
  /* Identidade Galgtec (extraída dos arquivos oficiais) */
  /* Paleta oficial do site original da Galgtec */
  --navy-950: #060D1C;     /* painel escuro (panel-1) */
  --navy-900: #0A1428;     /* fundo do hero */
  --navy-800: #11214A;     /* marinho médio */
  --navy-700: #16305C;     /* brilho do hero */
  --brand-blue: #025EA7;   /* azul da logo */
  --blue-royal: #2563EB;   /* azul primário */
  --blue-500: #3B82F6;     /* azul médio */
  --cyan: #3A90F5;         /* glows/bordas */
  --royal: #3B6FF6;
  --blue-deep: #1E3A8A;    /* marinho/azul royal */
  --blue-glint: #A9C4F8;   /* acento 2 — destaques em palavras/títulos */
  --blue-mid: #7AA5F5;     /* acento 1 — detalhes com mais presença */
  --blue-soft: #C9DBF2;
  --title-light: #F2F6FC;  /* texto claro */
  --text-secondary: #7F9BCE; /* rótulos */
  --pill-light: #E8EEF9;   /* pílulas/badges claros */

  /* Neutros */
  --white: #FFFFFF;
  --offwhite: #F5F7FB;
  --gray-100: #E9EEF5;
  --gray-300: #B3C0DA;    /* texto secundário sobre fundos escuros */
  --slate: #33415C;        /* grafite azulado */
  --ink: #14213A;

  /* Galgjur (uso pontual) */
  --wine: #7B1C1C;
  --wine-dark: #481112;
  --wine-mid: #841812;

  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1160px;
  --radius: 18px;
  --header-h: 72px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -0.015em;
}

p { margin: 0 0 1em; }
a { color: var(--brand-blue); text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--blue-royal);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--white); color: var(--ink);
  padding: .6rem 1rem; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
}

.section { position: relative; padding: clamp(5rem, 10vw, 8.5rem) 0; }
section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }
.section-light { background: var(--offwhite); color: var(--ink); }
.section-dark { background: var(--navy-950); color: var(--gray-100); }

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 600;
  max-width: 21ch;
}
.section-title.center { margin-inline: auto; text-align: center; }
.section-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--brand-blue), var(--blue-royal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand-blue);
}
.section-dark .section-title { color: var(--title-light); }
.section-dark .section-title em {
  background: linear-gradient(100deg, var(--blue-glint), var(--blue-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-glint);
}

.section-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--slate);
  max-width: 62ch;
}
.section-dark .section-sub { color: var(--gray-300); }
.section-sub.center { margin-inline: auto; text-align: center; }

.lead { font-size: 1.2rem; font-weight: 500; color: var(--ink); }
.section-dark .lead { color: var(--white); }

.marker {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--brand-blue);
  margin-bottom: 1.2rem;
}
.section-dark .marker { color: var(--blue-glint); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 600;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, #11214A, #1E3A8A);
  color: var(--title-light);
  border: 1px solid rgba(122, 165, 245, .28);
  box-shadow: 0 10px 28px -10px rgba(6, 13, 28, .8);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #16305C, #26479B);
  border-color: rgba(122, 165, 245, .45);
  box-shadow: 0 14px 32px -10px rgba(22, 48, 92, .85);
}
.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.55); transform: translateY(-2px); }
.section-light .btn-ghost { color: var(--ink); border-color: rgba(20,33,58,.25); }
.btn-wine {
  background: linear-gradient(135deg, #3A0D0E, #6B1A1A);
  color: #F6EDED;
  border: 1px solid rgba(139, 60, 60, .35);
  box-shadow: 0 10px 26px -10px rgba(58, 13, 14, .6);
}
.btn-wine:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #4A1112, #7B2020);
  border-color: rgba(139, 60, 60, .5);
}
/* Botão neutro em vidro fosco — combina sobre fundos de cores diferentes */
.btn-glass {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px -12px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.btn-glass:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .18);
}

/* ---------- Cabeçalho ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  height: auto;
  padding-top: env(safe-area-inset-top);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 13, 31, .72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(157, 190, 245, .12);
}
.header-inner {
  width: min(var(--container), calc(100% - 3rem));
  margin-inline: auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; justify-self: start; }
.brand-word { height: 24px; width: auto; }
.main-nav { justify-self: center; }
.main-nav ul { display: flex; gap: 1.9rem; }
.main-nav a {
  color: var(--gray-100);
  font-size: .93rem; font-weight: 500;
  position: relative; padding: .35rem 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: linear-gradient(135deg, #11214A, #1E3A8A);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.btn-header { padding: .6rem 1.3rem; min-height: 42px; font-size: .88rem; }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.menu-toggle span {
  width: 20px; height: 1.8px; background: var(--white);
  transition: transform .35s var(--ease), opacity .35s;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.4px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 84vw);
  background: rgba(8, 17, 38, .92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-left: 1px solid rgba(157,190,245,.14);
  z-index: 120;
  padding: calc(var(--header-h) + 1.5rem) 2rem 2rem;
  transform: translateX(105%);
  visibility: hidden;
  transition: transform .45s var(--ease), visibility 0s linear .45s;
  display: flex; flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .45s var(--ease);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 2rem; }
.mobile-menu a:not(.btn) {
  display: block; padding: .8rem 0;
  color: var(--gray-100);
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500;
  border-bottom: 1px solid rgba(157,190,245,.08);
}
.mobile-menu-backdrop {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(4, 9, 20, .55);
  opacity: 0; transition: opacity .4s;
}
.mobile-menu-backdrop.show { opacity: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; background: var(--navy-950); }
.hero.scrub-mode { height: 320vh; }
.hero-sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-media { position: absolute; inset: 0; }
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Esconde o controle de play nativo que o iOS/Safari sobrepõe no vídeo */
.hero-media video::-webkit-media-controls-start-playback-button,
.hero-media video::-webkit-media-controls-overlay-play-button,
.hero-media video::-webkit-media-controls-play-button,
.hero-media video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none;
  appearance: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 46%, rgba(6,13,31,.42) 0%, rgba(6,13,31,.72) 82%),
    linear-gradient(to top, rgba(6,13,31,.95) 0%, rgba(6,13,31,.28) 36%),
    linear-gradient(to bottom, rgba(6,13,31,.7) 0%, rgba(6,13,31,.12) 24%);
}
.hero-mark {
  position: absolute; left: 50%; top: 44%;
  width: clamp(70px, 9vw, 120px); height: auto;
  transform: translate(-50%, -50%) scale(.4);
  opacity: 0;
  filter: drop-shadow(0 0 26px rgba(157,190,245,.45));
  will-change: transform, opacity;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  width: min(980px, calc(100% - 3rem));
  padding-top: 4vh;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-glint);
  padding: .55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(58, 144, 245, .38);
  background: rgba(17, 33, 74, .6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-bottom: 1.6rem;
}
.hero-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(58, 144, 245, .9);
}
.hero-title {
  font-size: clamp(2.15rem, 5vw, 3.9rem);
  font-weight: 700;
  color: var(--title-light);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 28px rgba(4, 9, 22, .65);
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--blue-mid), var(--blue-glint));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  color: var(--gray-300);
  max-width: 56ch;
  margin: 0 auto 2.2rem;
  text-shadow: 0 1px 14px rgba(4, 9, 22, .75);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn { min-width: 13rem; }
.hero-scrollcue {
  position: absolute; bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  color: var(--gray-300);
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
}
.scroll-line {
  width: 1.5px; height: 44px;
  background: linear-gradient(to bottom, var(--blue-glint), transparent);
  animation: scrollcue 2.4s var(--ease) infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Sobre ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-lines { margin-top: 2rem; display: grid; gap: .9rem; }
.about-lines li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 500;
  color: var(--slate);
}
.about-lines li::before {
  content: "";
  position: absolute; left: 0; top: .62em;
  width: 18px; height: 1.5px;
  background: linear-gradient(to right, var(--brand-blue), var(--blue-royal));
}
.about-visual {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(157,190,245,.14);
  padding: 1.5rem;
  box-shadow: 0 30px 60px -30px rgba(6,13,31,.5);
}
.merge-svg { width: 100%; height: auto; }
.svg-label {
  font-family: var(--font-body);
  font-size: 13px;
  fill: #9DBEF5;
}

/* ---------- Conceito central ---------- */
.concept {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(30,58,138,.25), transparent),
    var(--navy-950);
  text-align: center;
  overflow: hidden;
}
.concept .container { position: relative; z-index: 2; }

/* Cápsulas flutuantes (código do site anterior da Galgtec) */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shapes span {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg, #24406e, #142748);
  will-change: transform;
  animation: capsule-drift 14s ease-in-out infinite alternate;
}
@keyframes capsule-drift {
  0% {
    transform: rotate(35deg) translateY(-100px) scale(0.9);
  }
  100% {
    transform: rotate(35deg) translateY(100px) scale(1.12);
  }
}
.hero-shapes span:nth-child(1) {
  width: 150px;
  height: 440px;
  top: -90px;
  left: 7%;
  opacity: 0.16;
  animation-duration: 5s;
  animation-delay: 0s;
}
.hero-shapes span:nth-child(2) {
  width: 120px;
  height: 360px;
  bottom: -110px;
  right: 10%;
  opacity: 0.14;
  animation-duration: 6.5s;
  animation-delay: -2s;
}
.hero-shapes span:nth-child(3) {
  width: 90px;
  height: 280px;
  top: 14%;
  right: 26%;
  opacity: 0.1;
  animation-duration: 4.5s;
  animation-delay: -3s;
}
.hero-shapes span:nth-child(4) {
  width: 70px;
  height: 220px;
  bottom: 14%;
  left: 24%;
  opacity: 0.1;
  animation-duration: 5.8s;
  animation-delay: -1s;
}
.hero-shapes span:nth-child(5) {
  width: 110px;
  height: 340px;
  top: -60px;
  left: 40%;
  opacity: 0.12;
  animation-duration: 7s;
  animation-delay: -5s;
}
.hero-shapes span:nth-child(6) {
  width: 80px;
  height: 250px;
  bottom: -70px;
  left: 44%;
  opacity: 0.1;
  animation-duration: 5.2s;
  animation-delay: -2.5s;
}
.hero-shapes span:nth-child(7) {
  width: 130px;
  height: 400px;
  top: 8%;
  left: -40px;
  opacity: 0.13;
  animation-duration: 6.8s;
  animation-delay: -4s;
}
.hero-shapes span:nth-child(8) {
  width: 100px;
  height: 300px;
  bottom: 6%;
  right: -30px;
  opacity: 0.12;
  animation-duration: 5.6s;
  animation-delay: -1.5s;
}
.hero-shapes span:nth-child(9) {
  width: 120px;
  height: 370px;
  top: 38%;
  left: 9%;
  opacity: 0.12;
  animation-duration: 6.2s;
  animation-delay: -3.5s;
}
.hero-shapes span:nth-child(10) {
  width: 85px;
  height: 260px;
  top: 44%;
  right: 8%;
  opacity: 0.11;
  animation-duration: 5.4s;
  animation-delay: -2.2s;
}
.hero-shapes span:nth-child(11) {
  width: 100px;
  height: 320px;
  top: 55%;
  left: 28%;
  opacity: 0.1;
  animation-duration: 6.9s;
  animation-delay: -4.5s;
}
.hero-shapes span:nth-child(12) {
  width: 75px;
  height: 240px;
  top: 60%;
  right: 27%;
  opacity: 0.1;
  animation-duration: 5s;
  animation-delay: -1.8s;
}
@media (max-width: 640px) {
  .hero-shapes span {
    transform: scale(0.7);
  }
  .hero-shapes span:nth-child(n+7) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-shapes span {
    animation: none;
    transform: rotate(35deg);
  }
}
.concept-flow {
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.concept-step {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.step-head { display: flex; align-items: baseline; gap: 1.1rem; }
.step-desc {
  margin: 0;
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  color: var(--gray-300);
  max-width: 52ch;
}
.step-num {
  font-family: var(--font-display);
  font-size: .85rem; font-weight: 600;
  color: var(--blue-glint);
  opacity: .75;
}
.step-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.015em;
}
.concept-link span {
  display: block;
  width: 1.5px; height: clamp(34px, 5vw, 56px);
  margin: .5rem auto;
  background: linear-gradient(to bottom, rgba(157,190,245,.65), rgba(157,190,245,.1));
}
.concept-final {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 500;
  color: var(--gray-100);
  max-width: 30ch;
  margin-inline: auto;
}
.concept-final em {
  font-style: normal; color: var(--blue-glint);
}

/* ---------- Produto ---------- */
.product {
  background:
    radial-gradient(ellipse 42% 38% at 90% 8%, rgba(107, 26, 26, .07), transparent),
    radial-gradient(ellipse 40% 34% at 6% 88%, rgba(107, 26, 26, .05), transparent),
    var(--offwhite);
}
.product .marker { color: #6B1A1A; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}
/* Alinha o texto pela base para o botão ficar mais próximo dos cards */
.product-copy { align-self: end; }
.product-cta-inline { margin-top: 1.75rem; }
/* Botão pós-cards: só aparece no mobile (no desktop o botão fica junto ao texto) */
.product-cta-wrap {
  display: none;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.galgjur-word {
  background: linear-gradient(100deg, #4A1112, #8B2020);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #5C1515;
}
.product-visual {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(58, 13, 14, .18);
  box-shadow: 0 36px 70px -34px rgba(58, 13, 14, .5);
  aspect-ratio: 16 / 9;
  background: #160506;
}
.ambient-video { width: 100%; height: 100%; object-fit: cover; }

/* Sobreposição de marca no vídeo do Galgjur */
.pv-overlay {
  position: absolute; inset: 0;
  text-align: center;
  background: radial-gradient(ellipse 75% 65% at 50% 55%, rgba(16, 5, 6, .05), rgba(16, 5, 6, .42) 92%);
}
.pv-overlay img {
  position: absolute;
  left: 50%; top: 45%;
  transform: translate(-50%, -50%);
  /* sem filtros de cor: o logo mantém exatamente os tons originais */
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .55));
}
.pv-overlay p {
  position: absolute;
  left: 1rem; right: 1rem;
  top: 75%;
  transform: translateY(-50%);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 600;
  color: #E2C79F; /* dourado-champanhe, eco dos fios de luz do vídeo */
  letter-spacing: .01em;
  text-shadow: 0 2px 18px rgba(15, 4, 5, .85);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.feature-card {
  position: relative;
  background: rgba(255, 252, 252, .72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid rgba(107, 26, 26, .14);
  padding: 1.8rem 1.5rem;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 1.5px;
  background: linear-gradient(to right, transparent, rgba(139, 32, 32, .55), transparent);
  opacity: 0; transition: opacity .45s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -22px rgba(107, 26, 26, .28);
  border-color: rgba(107, 26, 26, .32);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  color: #6B1A1A;
  background: linear-gradient(150deg, rgba(107, 26, 26, .08), rgba(139, 32, 32, .14));
  border: 1px solid rgba(107, 26, 26, .16);
  margin-bottom: 1.2rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.08rem; font-weight: 600; }
.feature-card p { font-size: .95rem; color: var(--slate); margin: 0; }

/* ---------- Conexão ---------- */
.connection {
  background:
    radial-gradient(ellipse 45% 55% at 12% 38%, rgba(22, 48, 92, .5), transparent 68%),
    radial-gradient(ellipse 45% 60% at 88% 40%, rgba(74, 17, 18, .5), transparent 68%),
    linear-gradient(100deg, #0A1428 0%, #0A1428 41%, #1C0F16 50%, #330E0F 59%, #330E0F 100%);
  text-align: center;
}
.connection-diagram {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end; /* alinha ícones e logotipos pela base */
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto clamp(3.5rem, 6vw, 5rem);
}
.conn-node {
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  padding: 1.6rem 2rem 1.4rem;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.conn-galgtec {
  background: linear-gradient(170deg, rgba(17, 33, 74, .38), rgba(10, 20, 40, .18));
  border: 1px solid rgba(122, 165, 245, .16);
}
.conn-galgjur {
  background: linear-gradient(170deg, rgba(58, 13, 14, .45), rgba(30, 10, 10, .2));
  border: 1px solid rgba(139, 60, 60, .25);
}
.conn-node img { filter: drop-shadow(0 0 20px rgba(157,190,245,.3)); }
.conn-galgjur img { filter: drop-shadow(0 0 26px rgba(107, 26, 26, .6)); }
.conn-galgjur .conn-label { color: #C9A3A3; }
.future-core img { filter: drop-shadow(0 0 24px rgba(168,84,84,.55)); }
.conn-label {
  font-size: .8rem; letter-spacing: .06em;
  color: var(--text-secondary);
  max-width: 22ch; margin: 0;
}
.conn-name {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.05rem;
  color: var(--white);
}
.conn-name-wine { color: #8B1A12; }
.conn-wordmark { width: auto; filter: none; }
.conn-line {
  width: 100%; height: 60px; overflow: visible;
  align-self: end;
  margin-bottom: 42px; /* alinha a linha ao centro dos ícones */
}
.galgjur-mark {
  display: grid; place-items: center;
  width: 72px; height: 72px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: #F2D9D9;
  background: linear-gradient(150deg, var(--wine-dark), var(--wine));
  border: 1px solid rgba(232,183,183,.3);
  box-shadow: 0 0 30px rgba(123,28,28,.4);
}

/* ---------- Pilares ---------- */
.pillars-wrap {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.pillars-progress {
  position: relative;
  width: 2px;
  background: rgba(2,94,167,.14);
  border-radius: 2px;
}
.pillars-progress span {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 0%;
  background: linear-gradient(to bottom, var(--brand-blue), var(--blue-royal));
  border-radius: 2px;
}
.pillars-list { display: grid; gap: clamp(3rem, 6vw, 5rem); }
.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(2,94,167,.35);
}
.pillar-body h3 { font-size: 1.35rem; }
.pillar-body p { color: var(--slate); max-width: 56ch; }

/* Visuais dos pilares */
.pillar-visual { margin-top: 1.2rem; height: 54px; display: flex; align-items: center; gap: 8px; }
.pv-organize span {
  width: 26px; height: 8px; border-radius: 3px;
  background: linear-gradient(to right, rgba(2,94,167,.35), rgba(37,99,235,.55));
}
.pv-grow span {
  width: 34px; border-radius: 4px;
  background: linear-gradient(to top, rgba(2,94,167,.5), rgba(37,99,235,.35));
}
.pv-grow span:nth-child(1){height: 16px} .pv-grow span:nth-child(2){height: 26px}
.pv-grow span:nth-child(3){height: 36px} .pv-grow span:nth-child(4){height: 46px}
.pv-shield { position: relative; width: 80px; justify-content: center; }
.pv-shield .core {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue-royal);
  box-shadow: 0 0 14px rgba(37,99,235,.5);
}
.pv-shield .ring {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(2,94,167,.35);
  border-radius: 50%;
}
.pv-shield .r1 { width: 36px; height: 36px; }
.pv-shield .r2 { width: 54px; height: 54px; border-style: dashed; opacity: .6; }
.pv-fit span {
  width: 22px; height: 22px; border-radius: 6px;
  border: 1.5px solid rgba(2,94,167,.4);
  background: rgba(37,99,235,.08);
}

/* ---------- Ciclo ---------- */
.cycle, .future { overflow: hidden; }
.section-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .3;
}
.cycle::after, .future::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--navy-950) 0%, rgba(6,13,31,.35) 30%, rgba(6,13,31,.35) 70%, var(--navy-950) 100%);
}
.cycle .container, .future .container { position: relative; z-index: 2; }
.cycle-flow {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem 1.2rem;
  margin: clamp(3rem, 6vw, 4.5rem) auto 2.4rem;
}
.cycle-flow li:not(.cycle-sep) {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
  padding: .7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(157,190,245,.24);
  background: rgba(15,30,58,.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.cycle-sep {
  width: 34px; height: 1.5px;
  background: linear-gradient(to right, rgba(157,190,245,.1), rgba(157,190,245,.7));
}
.cycle-note {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--blue-glint);
}
.cycle-cta { text-align: center; margin-top: clamp(2.4rem, 4vw, 3.2rem); }
.cycle-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 860px;
  margin: clamp(2.6rem, 5vw, 3.8rem) auto 0;
}
.cycle-highlight {
  background: rgba(15, 30, 58, .5);
  border: 1px solid rgba(157, 190, 245, .2);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  text-align: left;
}
.cycle-highlight h3 { font-size: 1.12rem; color: var(--white); margin-bottom: .4rem; }
.cycle-highlight p { margin: 0; color: var(--gray-300); font-size: .98rem; }
.conn-cta { text-align: center; margin-top: 2.4rem; }

/* ---------- Futuro ---------- */
.future-map {
  position: relative;
  height: clamp(230px, 34vw, 330px);
  margin: clamp(2.5rem, 5vw, 4rem) auto;
  max-width: 680px;
}
.future-core {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.future-node {
  position: absolute;
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(157,190,245,.35);
  background: rgba(37,99,235,.12);
  box-shadow: 0 0 18px rgba(37,99,235,.18);
}
.future-node::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: rgba(157,190,245,.7);
}
.future-node.n1 { left: 10%; top: 18%; }
.future-node.n2 { right: 12%; top: 12%; }
.future-node.n3 { left: 16%; bottom: 12%; }
.future-node.n4 { right: 9%; bottom: 20%; }
.future-legend {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem 3rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.future-legend p { margin: 0; font-size: .95rem; color: var(--gray-300); display: flex; align-items: center; gap: .6rem; }
.future-legend strong { color: var(--white); }
.legend-next { opacity: .75; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot-wine { background: var(--wine-mid); box-shadow: 0 0 10px rgba(132,24,18,.6); }
.dot-blue { background: var(--blue-royal); box-shadow: 0 0 10px rgba(37,99,235,.5); }

/* ---------- Princípios ---------- */
.principles { padding-block: clamp(4rem, 8vw, 6rem); }
.principles-mosaic {
  display: flex; flex-wrap: wrap; gap: .9rem;
  margin-top: 1.5rem;
}
.principles-mosaic li {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 500;
  color: var(--ink);
  padding: .75rem 1.4rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(2,94,167,.16);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s, color .35s;
  cursor: default;
}
.principles-mosaic li:hover {
  transform: translateY(-3px);
  border-color: rgba(2,94,167,.45);
  box-shadow: 0 12px 26px -14px rgba(2,94,167,.4);
  color: var(--brand-blue);
}

/* ---------- CTA ---------- */
.cta {
  background:
    radial-gradient(ellipse 55% 60% at 12% 18%, rgba(30, 58, 138, .38), transparent),
    radial-gradient(ellipse 45% 50% at 92% 90%, rgba(72, 17, 18, .28), transparent),
    radial-gradient(ellipse 40% 40% at 75% 20%, rgba(37, 99, 235, .14), transparent),
    var(--navy-950);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Contato final centrado */
.contact-final { text-align: center; }
.contact-final .section-sub { margin-bottom: 2.4rem; }
.btn-lg { padding: 1.05rem 2.5rem; font-size: 1.02rem; }

/* Contato dentro do CTA */
.cta-contact {
  position: relative;
  background: linear-gradient(165deg, rgba(20, 38, 72, .72), rgba(9, 18, 38, .6));
  border: 1px solid rgba(157, 190, 245, .18);
  border-radius: 24px;
  padding: clamp(1.7rem, 3vw, 2.5rem);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 40px 90px -40px rgba(2, 94, 167, .45);
  overflow: hidden;
}
.cta-contact::before {
  content: "";
  position: absolute; inset: 0 12% auto;
  height: 1.5px;
  background: linear-gradient(to right, transparent, rgba(157, 190, 245, .75), transparent);
}
.cta-contact::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  right: -140px; top: -140px;
  background: radial-gradient(circle, rgba(37, 99, 235, .22), transparent 65%);
  pointer-events: none;
}
.cta-contact-title {
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-tiles {
  position: relative;
  display: grid;
  gap: .8rem;
  margin-bottom: 1.6rem;
}
.contact-tile {
  display: flex; align-items: center; gap: .95rem;
  padding: .78rem 1rem;
  border-radius: 15px;
  background: rgba(157, 190, 245, .055);
  border: 1px solid rgba(157, 190, 245, .13);
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
a.contact-tile:hover {
  border-color: rgba(157, 190, 245, .45);
  background: rgba(157, 190, 245, .1);
  transform: translateX(4px);
}
.ct-icon {
  flex: 0 0 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--blue-glint);
  background: linear-gradient(150deg, rgba(37, 99, 235, .22), rgba(30, 58, 138, .3));
  border: 1px solid rgba(157, 190, 245, .22);
}
.ct-icon svg { width: 18px; height: 18px; }
.ct-text { display: flex; flex-direction: column; gap: .05rem; min-width: 0; }
.ct-label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-glint);
}
.ct-value { color: var(--white); font-weight: 500; font-size: .98rem; overflow-wrap: anywhere; }
.btn-block { width: 100%; }

/* Notebook abstrato */
.laptop { perspective: 1200px; }
.laptop-screen {
  background: #0B1730;
  border: 1.5px solid rgba(157,190,245,.22);
  border-radius: 14px 14px 4px 4px;
  padding: 4.5%;
  aspect-ratio: 16 / 10;
  box-shadow: 0 40px 80px -35px rgba(2,94,167,.35);
}
.laptop-base {
  height: 14px;
  background: linear-gradient(to bottom, #1A2C50, #0D1B36);
  border-radius: 0 0 16px 16px;
  margin: 0 -4%;
}
.ui-abstract { height: 100%; display: flex; flex-direction: column; gap: 6%; }
.ui-top { display: flex; align-items: center; gap: 4%; height: 9%; }
.ui-logo {
  width: 9%; height: 100%;
  border-radius: 5px;
  background: linear-gradient(140deg, var(--wine-dark), var(--wine));
}
.ui-pill { flex: 1; height: 55%; border-radius: 99px; background: rgba(157,190,245,.14); }
.ui-pill.short { flex: 0 0 18%; background: rgba(157,190,245,.24); }
.ui-cols { flex: 1; display: flex; gap: 4%; min-height: 0; }
.ui-side { flex: 0 0 20%; display: flex; flex-direction: column; gap: 9%; padding-top: 2%; }
.ui-side span { height: 8%; border-radius: 4px; background: rgba(157,190,245,.16); }
.ui-side span:first-child { background: rgba(132,24,18,.55); }
.ui-main { flex: 1; display: flex; flex-direction: column; gap: 6%; }
.ui-block { border-radius: 6px; background: rgba(157,190,245,.1); border: 1px solid rgba(157,190,245,.12); }
.ui-block.wide { height: 16%; }
.ui-row { display: flex; gap: 4%; height: 30%; }
.ui-row .ui-block { flex: 1; }
.ui-block.tall { flex: 1; }
.cta-visual-note {
  text-align: center;
  font-size: .8rem;
  color: var(--gray-300);
  opacity: .65;
  margin-top: 1.2rem;
}

/* ---------- Contato ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.contact-info { display: grid; gap: 1.1rem; margin: 2rem 0 2.2rem; }
.contact-info li { display: grid; gap: .15rem; }
.ci-label {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand-blue);
}
.contact-info a, .contact-info span:not(.ci-label) {
  font-size: 1.08rem; font-weight: 500; color: var(--ink);
}
.contact-info a:hover { color: var(--brand-blue); }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(2,94,167,.14);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 30px 60px -35px rgba(6,13,31,.35);
  display: grid; gap: 1.2rem;
}
.field { display: grid; gap: .45rem; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font: inherit;
  padding: .8rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--gray-300);
  background: var(--offwhite);
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
  width: 100%;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-royal);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.field.invalid input, .field.invalid textarea { border-color: #B4232A; }
.field-error {
  font-size: .82rem; color: #B4232A;
  min-height: 1em;
}
.form-note { font-size: .82rem; color: var(--slate); margin: 0; opacity: .8; }

/* ---------- Rodapé ---------- */
.site-footer {
  background: var(--navy-950);
  color: var(--gray-300);
  padding: 1.2rem 0 .8rem;
  border-top: 1px solid rgba(157,190,245,.1);
}
.footer-brand-stack { display: flex; flex-direction: column; gap: .3rem; align-items: flex-start; }
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  flex-wrap: wrap;
}
.footer-left { display: flex; align-items: center; gap: 1.15rem; flex-wrap: wrap; }
.footer-logo { height: 20px; width: auto; }
.footer-tagline { font-size: .9rem; font-style: italic; color: #5B82CF; margin: 0; }
.footer-social { display: flex; gap: .6rem; }
.social-item { position: relative; display: inline-flex; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gray-300);
  border: 1px solid rgba(157, 190, 245, .22);
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.footer-social a:hover {
  color: var(--white);
  border-color: rgba(157, 190, 245, .55);
  background: rgba(37, 99, 235, .15);
}
.footer-social svg { width: 15px; height: 15px; }

/* Tooltip personalizado — elemento real, permanece visível e permite copiar */
.social-item .tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: .4rem .6rem;
  border-radius: 7px;
  background: #0e1c38;
  border: 1px solid rgba(157, 190, 245, .28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
  color: var(--white);
  font-size: .74rem;
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  user-select: text;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
/* setinha embaixo do balão */
.social-item .tip::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #0e1c38;
}
/* ponte invisível cobrindo o vão entre o ícone e o balão, para o hover não cair */
.social-item .tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -6px;
  right: -6px;
  height: 14px;
}
.social-item:hover .tip,
.social-item:focus-within .tip,
.social-item .tip:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img { margin-bottom: 1rem; height: 22px; width: auto; }
.footer-brand p { font-size: .95rem; max-width: 26ch; }
.footer-col h4 {
  font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-glint);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { color: var(--gray-300); font-size: .95rem; transition: color .3s; }
.footer-col a:hover { color: var(--white); }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .85rem;
}
.footer-bottom {
  border-top: 1px solid rgba(157,190,245,.1);
  margin-top: 1rem;
  padding-top: .85rem;
}
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .5rem .9rem;
}
.footer-legal a {
  color: var(--gray-300);
  font-size: .82rem;
  transition: color .3s var(--ease);
}
.footer-legal a:hover { color: var(--white); }
.footer-legal-sep {
  width: 1px; height: 13px;
  background: rgba(157,190,245,.28);
}
.footer-copy {
  margin: .55rem 0 0;
  font-size: .72rem;
  color: rgba(157, 190, 245, .55);
  text-align: center;
}
@media (max-width: 900px) {
  .footer-bar { flex-direction: column; justify-content: center; text-align: center; }
  .footer-left { justify-content: center; flex-direction: column; }
  .footer-brand-stack { align-items: center; }
  .footer-right { align-items: center; }
  .footer-social { justify-content: center; }
  .footer-legal { justify-content: center; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .btn-header { display: none; }
  .menu-toggle { display: flex; grid-column: 3; justify-self: end; }
  .about-grid, .product-grid, .cta-grid, .contact-grid { grid-template-columns: 1fr; }
  .product-cta-inline { display: none; }
  .product-cta-wrap { display: flex; }
  .about-visual { order: -1; max-width: 440px; }
  .connection-diagram { grid-template-columns: 1fr; gap: 0; align-items: center; }
  .conn-line { height: 70px; width: 60px; margin: 0 auto; transform: rotate(90deg); align-self: center; }
  .hero { height: 100vh; height: calc(100lvh + env(safe-area-inset-bottom)); }
  .hero-sticky {
    position: relative;
    height: 100vh; height: calc(100lvh + env(safe-area-inset-bottom));
    padding-top: calc(var(--header-h) + env(safe-area-inset-top));
    padding-bottom: calc(env(safe-area-inset-bottom) + 8px);
  }
  .hero-content { padding-top: 0; }
  .hero-scrollcue { display: none; }
  .hero-eyebrow { font-size: .68rem; padding: .4rem .9rem; letter-spacing: .1em; }
  .pillars-wrap { grid-template-columns: 1fr; }
  .pillars-progress { display: none; }
  .pillar { grid-template-columns: 1fr; gap: .6rem; }
  .cycle-sep { display: none; }
  .cycle-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { gap: .7rem; }
  .hero-actions .btn { width: auto; }
  .cta-actions .btn { width: 100%; }
  .container { width: calc(100% - 2.4rem); }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .scroll-line { animation: none; }
  .hero { height: 100vh; }
  .hero-mark { opacity: .9; transform: translate(-50%,-50%) scale(1); }
}
