/* GS Consultoria — Design System */
:root {
  --bg: #FAFAF8;
  --primary: #0A2342;
  --accent: #1B6CA8;
  --accent-secondary: #00C896;
  --text: #111111;
  --text-muted: #444444;
  --gray: #E8E8E4;
  --white: #FFFFFF;
  --hero-gradient-end: #EEF4FB;
  --line-decor: #E0ECF7;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 72px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

/* Grão de papel (noise) — fixo em toda a página */
html::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: transparent;
  overflow-x: hidden;
  position: relative;
}

/* Grid de pontos */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(10, 35, 66, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  background-repeat: repeat;
}

/* Riscos diagonais animados no fundo */
.bg-lines {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-lines__line {
  position: absolute;
  height: 1px;
  transform-origin: center center;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(224, 236, 247, 0.15) 15%,
    var(--line-decor) 50%,
    rgba(224, 236, 247, 0.15) 85%,
    transparent 100%
  );
  animation: bgLineDrift var(--line-dur, 20s) ease-in-out infinite;
  animation-delay: var(--line-delay, 0s);
  will-change: transform, opacity;
}

.bg-lines__line--1 {
  --line-dur: 24s;
  --line-delay: 0s;
  width: 130%;
  top: 28%;
  left: -15%;
  --line-angle: -14deg;
  transform: rotate(var(--line-angle));
}

.bg-lines__line--2 {
  --line-dur: 19s;
  --line-delay: -4s;
  width: 110%;
  top: 58%;
  left: -5%;
  --line-angle: -8deg;
  transform: rotate(var(--line-angle));
  opacity: 0.65;
}

.bg-lines__line--3 {
  --line-dur: 28s;
  --line-delay: -9s;
  width: 95%;
  top: 12%;
  right: -20%;
  left: auto;
  --line-angle: -22deg;
  transform: rotate(var(--line-angle));
  opacity: 0.5;
}

.bg-lines__line--4 {
  --line-dur: 21s;
  --line-delay: -2s;
  width: 75%;
  top: 78%;
  left: 10%;
  --line-angle: -5deg;
  transform: rotate(var(--line-angle));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(27, 108, 168, 0.25) 40%,
    rgba(27, 108, 168, 0.35) 50%,
    rgba(27, 108, 168, 0.25) 60%,
    transparent
  );
}

.bg-lines__line--5 {
  --line-dur: 32s;
  --line-delay: -14s;
  width: 60%;
  top: 42%;
  right: 5%;
  left: auto;
  --line-angle: -18deg;
  transform: rotate(var(--line-angle));
  opacity: 0.4;
}

@keyframes bgLineDrift {
  0%, 100% {
    transform: rotate(var(--line-angle)) translate(0, 0) scaleX(1);
    opacity: 0.45;
  }
  33% {
    transform: rotate(calc(var(--line-angle) + 1.5deg)) translate(36px, -14px) scaleX(1.02);
    opacity: 0.75;
  }
  66% {
    transform: rotate(calc(var(--line-angle) - 1deg)) translate(-28px, 10px) scaleX(0.98);
    opacity: 0.55;
  }
}

@keyframes heroLineDrift {
  0%, 100% {
    transform: rotate(-12deg) translate(0, 0);
    opacity: 0.6;
  }
  50% {
    transform: rotate(-9deg) translate(48px, -20px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-lines__line,
  .hero__line {
    animation: none;
  }
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 95% 5%, rgba(238, 244, 251, 0.95) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 5% 95%, rgba(232, 232, 228, 0.4) 0%, transparent 45%);
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ——— Navbar ——— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.logo__gs {
  font-weight: 800;
  color: var(--primary);
}

.logo__text {
  font-weight: 400;
  color: var(--text-muted);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--primary);
}

.nav__cta {
  display: none;
  padding: 10px 20px;
  background: var(--accent-secondary);
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 200, 150, 0.35);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav__mobile a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 8px 0;
  color: var(--primary);
}

.nav__mobile .nav__cta {
  display: inline-block;
  text-align: center;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }

  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-block;
  }

  .nav__mobile {
    display: none !important;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 48px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg) 50%, var(--hero-gradient-end) 100%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero__line {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line-decor) 30%,
    rgba(27, 108, 168, 0.35) 70%,
    transparent 100%
  );
  transform: rotate(-12deg);
  animation: heroLineDrift 16s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero__line--2 {
  top: 55%;
  right: -25%;
  width: 90%;
  transform: rotate(-18deg);
  opacity: 0.5;
  animation: heroLineDrift 22s ease-in-out infinite reverse;
  animation-delay: -6s;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  box-shadow: var(--shadow);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 35, 66, 0.25);
}

.btn--accent {
  background: var(--accent-secondary);
  color: var(--primary);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 200, 150, 0.35);
}

.link-secondary {
  font-weight: 500;
  color: var(--accent);
  position: relative;
  padding-bottom: 2px;
}

.link-secondary::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.link-secondary:hover::after {
  width: 100%;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.hero__svg-wrap {
  width: 100%;
  max-width: 480px;
}

.hero__svg-wrap svg {
  width: 100%;
  height: auto;
}

.floating-card {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero entrance animations */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in--scale {
  transform: scale(0.95);
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-0 { transition-delay: 0ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-550 { transition-delay: 550ms; }
.delay-700 { transition-delay: 700ms; }
.delay-800 { transition-delay: 800ms; }

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .hero__visual {
    justify-content: flex-end;
  }
}

/* ——— Sections ——— */
.section {
  padding: 96px 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Services ——— */
.services__grid {
  display: grid;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--accent);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card__tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--bg);
  color: var(--accent);
  border-radius: 6px;
  border: 1px solid var(--gray);
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ——— About ——— */
.about__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about__text .section__title {
  text-align: left;
  margin-bottom: 24px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-card__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* ——— Why choose ——— */
.why__grid {
  display: grid;
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 32px 24px;
}

.why-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--accent-secondary);
  background: rgba(0, 200, 150, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card__icon svg {
  width: 28px;
  height: 28px;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ——— Contact ——— */
.contact__grid {
  display: grid;
  gap: 48px;
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact__item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.contact__item a {
  color: var(--accent);
  transition: color var(--transition);
}

.contact__item a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 108, 168, 0.15);
  outline: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 6px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(0, 200, 150, 0.15);
  border: 1px solid var(--accent-secondary);
  border-radius: 8px;
  color: var(--primary);
  font-weight: 500;
  margin-top: 16px;
  animation: successIn 0.5s ease;
}

.form-success.show {
  display: block;
}

@keyframes successIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }
}

/* ——— Footer ——— */
.footer {
  border-top: 1px solid var(--gray);
  padding: 48px 0 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .footer__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/* ——— Legal pages ——— */
.legal-page {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 80px;
}

.legal-layout {
  display: grid;
  gap: 40px;
}

.legal-sidebar {
  display: none;
}

.legal-sidebar__title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-sidebar nav a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -12px;
  transition: color var(--transition), border-color var(--transition);
}

.legal-sidebar nav a:hover,
.legal-sidebar nav a.active {
  color: var(--accent);
  border-left-color: var(--accent-secondary);
}

.legal-content {
  max-width: 720px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.legal-content .legal-meta {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray);
}

.legal-content section {
  margin-bottom: 40px;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--primary);
}

@media (min-width: 1024px) {
  .legal-layout {
    grid-template-columns: 240px 1fr;
    gap: 64px;
    align-items: start;
  }

  .legal-sidebar {
    display: block;
    position: sticky;
    top: calc(var(--nav-height) + 32px);
  }
}

/* Decorative geometric accent */
.section--alt {
  background: linear-gradient(180deg, rgba(250, 250, 248, 0.6) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.geo-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid var(--line-decor);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}
