:root {
  --bg: #02070f;
  --bg-soft: #06111f;
  --panel: rgba(7, 20, 35, 0.72);
  --panel-strong: rgba(8, 25, 43, 0.92);
  --text: #f6fbff;
  --muted: #a9b8c8;
  --cyan: #16d8ff;
  --cyan-2: #009be6;
  --line: rgba(22, 216, 255, 0.35);
  --border: rgba(135, 213, 255, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --max: 1380px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Poppins", sans-serif;

  background:
    radial-gradient(
      circle at 75% 13%,
      rgba(0, 170, 255, 0.07),
      transparent 24%
    ),
    radial-gradient(
      circle at 20% 35%,
      rgba(0, 117, 194, 0.04),
      transparent 26%
    ),
    linear-gradient(
      135deg,
      #000204 0%,
      #010711 52%,
      #000205 100%
    );
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(22, 216, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 216, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

#network {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.8;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(22, 216, 255, 0.12), transparent 67%);
}

.section-shell {
  width: min(92%, var(--max));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 150px;
  padding: 16px max(4vw, 32px);
  transition: 0.35s ease;
}

.topbar.scrolled {
  min-height: 100px;
  background: rgba(1, 7, 14, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: normal;
  gap: 14px;
}

.brand-symbol {
  width: 100px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 3px solid var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  box-shadow: 
  inset 0 0 20px rgba(22, 216, 255, 0.13), 
  0 0 22px rgba(22, 216, 255, 0.18);
}

.brand-text {
  display: grid;
  line-height: 1.08;
  letter-spacing: 0.24em;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text small {
  color: var(--cyan);
  font-size: 0.68rem;
  letter-spacing: 0.46em;
}

/* .nav-menu {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
}

.nav-menu a {
  position: relative;
  padding: 12px 0;
  color: #e5eef6;
  font-size: 0.96rem;
  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: var(--cyan);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--cyan);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
} */

/* =========================================
   MENU PRINCIPAL
========================================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  justify-content: center;
}

.nav-menu > a,
.dropbtn {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu > a:hover,
.nav-menu > a.active,
.dropbtn:hover {
  color: var(--cyan);
}

/* Linha animada dos links principais */

.nav-menu > a::after,
.dropbtn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(
      90deg,
      var(--cyan),
      var(--cyan-2)
  );
  transition: width 0.3s ease;
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after,
.dropdown:hover .dropbtn::after {
  width: 100%;
}

/* =========================================
 DROPDOWN
========================================= */

.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.dropbtn i {
  font-size: 0.72rem;
  transition: transform 0.3s ease;
}

/* Caixa do submenu */

.dropdown-content {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;

  background: rgba(5, 16, 28, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
      0 18px 45px rgba(0, 0, 0, 0.45),
      0 0 25px rgba(22, 216, 255, 0.08);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform:
      translateX(-50%)
      translateY(12px);

  transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;

  z-index: 1000;
}

/* Pequena seta acima do dropdown */

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;

  background: rgba(5, 16, 28, 0.96);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);

  transform:
      translateX(-50%)
      rotate(45deg);
}

/* Links internos */

.dropdown-content a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;

  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;

  transition:
      background 0.3s ease,
      color 0.3s ease,
      transform 0.3s ease;
}


.dropdown-content a:hover {
  color: var(--cyan);
  background: rgba(22, 216, 255, 0.1);
  transform: translateX(4px);
}

/* Exibir dropdown */

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform:
      translateX(-50%)
      translateY(0);
}

.dropdown:hover .dropbtn i,
.dropdown:focus-within .dropbtn i {
  transform: rotate(180deg);
}

.outline-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border-radius: 14px;
  padding: 0 24px;
  font-weight: 500;
  transition: 0.3s ease;
}

.outline-button {
  border: 1px solid var(--cyan);
  background: rgba(0, 170, 255, 0.03);
}

.outline-button:hover {
  color: #00131c;
  background: var(--cyan);
  box-shadow: 0 0 30px rgba(22, 216, 255, 0.3);
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
  padding-top: 135px;
  padding-bottom: 70px;
}

.eyebrow {
  color: var(--cyan);
  letter-spacing: 0.34em;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 500;
}

.hero-copy h1 {
  margin-top: 18px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(3.4rem, 6.2vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
}

.hero-copy h1 span,
.hero-copy h1 strong {
  display: block;
}

.hero-copy h1 span {
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.12);
}

.hero-copy h1 strong {
  margin-top: 10px;
  color: transparent;
  background: linear-gradient(180deg, #36dcff 0%, #008ad4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 34px rgba(0, 157, 230, 0.26);
}

.role {
  margin-top: 28px;
  color: #dae6f0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: 0.18em;
}

.long-line,
.bio-line {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 20px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(22, 216, 255, 0.5);
}

.summary {
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.primary-button {
  color: #001521;
  background: linear-gradient(135deg, #19d9ff, #009ee8);
  box-shadow: 0 0 25px rgba(22, 216, 255, 0.24);
}

.primary-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(22, 216, 255, 0.34);
}

.secondary-button {
  color: var(--text);
  border: 1px solid rgba(139, 205, 255, 0.33);
  background: rgba(4, 14, 25, 0.6);
}

.secondary-button:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-4px);
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.social-links a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(103, 201, 255, 0.35);
  background: rgba(4, 16, 28, 0.72);
  font-size: 1.25rem;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #00131c;
  background: var(--cyan);
  transform: translateY(-5px);
  box-shadow: 0 0 28px rgba(22, 216, 255, 0.32);
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.portrait-halo {
  position: absolute;
  width: min(84%, 610px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--cyan);
  background:
    radial-gradient(circle at 50% 40%, rgba(2, 12, 18, 0.8), rgba(1, 13, 25, 0.78) 62%, rgba(0, 0, 0, 0.25) 100%);
  box-shadow:
    0 0 18px rgba(22, 216, 255, 0.8),
    0 0 55px rgba(22, 216, 255, 0.35),
    inset 0 0 65px rgba(22, 216, 255, 0.12);
}

.portrait-frame {
  position: absolute;
  inset: 3% 4% 5% 4%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 42% 42% 26% 26% / 35% 35% 18% 18%;
  mask-image: linear-gradient(to bottom, #000 0%, #000 77%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 77%, transparent 100%);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: brightness(1.05) contrast(1.06) saturate(0.95);
}

.bio-card {
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: min(60%, 430px);
  padding: 28px 30px;
  border: 1px solid rgba(83, 201, 255, 0.7);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(8, 29, 49, 0.411), rgba(4, 14, 26, 0.76));
  box-shadow: var(--shadow), inset 0 0 28px rgba(22, 216, 255, 0.04);
  
}

.bio-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.bio-card h3 {
  margin-top: 6px;
  color: var(--cyan);
  font-size: 1rem;
  font-weight: 500;
}

.bio-card p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.projects,
.tech,
.contact {
  padding-top: 100px;
  padding-bottom: 90px;
}

.section-heading {
  text-align: center;
}

.section-heading p {
  color: var(--cyan);
  letter-spacing: 0.38em;
  font-weight: 600;
}

.section-heading h2 {
  margin-top: 8px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  letter-spacing: 0.06em;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
}

.project-tabs {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 32px auto 40px;
}

.tab-button {
  position: relative;
  border: 0;
  padding: 12px 12px 16px;
  color: #e5edf4;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
}

.tab-button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: var(--cyan);
  transition: 0.3s ease;
}

.tab-button.active {
  color: var(--cyan);
}

.tab-button.active::after {
  width: 100%;
}

.project-panel {
  display: none;
}

.project-panel.active {
  display: block;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border: 1px solid rgba(87, 193, 255, 0.24);
  border-radius: 18px;
  background: rgba(5, 18, 31, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  transition: 0.35s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.16), transparent 70%);
  transform: translateX(-100%);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(22, 216, 255, 0.65);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.48), 0 0 35px rgba(22, 216, 255, 0.12);
}

.project-card:hover::before {
  opacity: 1;
  animation: shine 0.9s ease;
}

.project-visual {
  position: relative;
  min-height: 225px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  text-align: center;
}

.project-visual span {
  position: relative;
  z-index: 4;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.8rem);
  letter-spacing: 0.15em;
  text-shadow: 0 0 25px rgba(22, 216, 255, 0.75);
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.visual-dashboard {
  background: linear-gradient(145deg, #071c30, #040c16);
}

.visual-dashboard::before {
  inset: 28px;
  border: 1px solid rgba(22, 216, 255, 0.35);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(22, 216, 255, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(22, 216, 255, 0.13) 1px, transparent 1px);
  background-size: 32px 32px;
}

.visual-code {
  background: radial-gradient(circle at center, rgba(80, 39, 180, 0.45), transparent 38%), linear-gradient(145deg, #100727, #030712);
}

.visual-code::before {
  left: 12%;
  right: 12%;
  top: 22%;
  bottom: 22%;
  border: 1px solid rgba(184, 131, 255, 0.34);
  border-radius: 12px;
  box-shadow: inset 0 0 34px rgba(114, 57, 255, 0.13);
}

.visual-globe {
  background: radial-gradient(circle at 58% 50%, rgba(0, 132, 255, 0.45), transparent 23%), linear-gradient(145deg, #041328, #02070f);
}

.visual-globe::before {
  width: 140px;
  height: 140px;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(22, 216, 255, 0.65);
  box-shadow: 0 0 35px rgba(22, 216, 255, 0.3), inset 0 0 28px rgba(22, 216, 255, 0.13);
}

.visual-grid {
  background: linear-gradient(145deg, #081525, #02060b);
}

.visual-grid::before {
  background-image:
    linear-gradient(rgba(22, 216, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 216, 255, 0.2) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: perspective(500px) rotateX(62deg) scale(1.6) translateY(22%);
  transform-origin: bottom;
}

.visual-neon {
  background: radial-gradient(circle at 50% 50%, rgba(185, 41, 255, 0.42), transparent 28%), linear-gradient(145deg, #12031f, #02060a);
}

.visual-neon::before {
  inset: 20% 18%;
  border: 2px solid #a82bff;
  border-radius: 18px;
  transform: rotate(-5deg);
  box-shadow: 0 0 35px rgba(168, 43, 255, 0.5);
}

.visual-terminal {
  background: linear-gradient(145deg, #031914, #020807);
}

.visual-terminal::before {
  inset: 26px;
  border: 1px solid rgba(49, 255, 175, 0.32);
  border-radius: 10px;
  background: repeating-linear-gradient(to bottom, rgba(49, 255, 175, 0.12) 0 2px, transparent 2px 22px);
}

.project-info {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.project-info strong {
  font-size: 1.05rem;
}

.project-info i {
  color: var(--cyan);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 45px;
}

.tech-card {
  min-height: 140px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}

.tech-card i {
  color: var(--cyan);
  font-size: 2.5rem;
}

.tech-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(22, 216, 255, 0.13);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(8, 29, 49, 0.88), rgba(3, 12, 22, 0.82));
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-top: 10px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-card p:last-child {
  margin-top: 14px;
  color: var(--muted);
}

footer {
  padding: 34px 20px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(1, 6, 12, 0.58);
}

#backToTop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 58px;
  height: 58px;
  z-index: 900;
  display: grid;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--text);
  background: rgba(3, 16, 29, 0.86);
  box-shadow: 0 0 24px rgba(22, 216, 255, 0.18);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: 0.3s ease;
}

#backToTop.visible {
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover {
  color: #00131c;
  background: var(--cyan);
  transform: translateY(-5px);
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shine {
  to { transform: translateX(100%); }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero-visual {
    min-height: 600px;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 4%;
    right: 4%;
    display: grid;
    gap: 0;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(2, 10, 19, 0.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.3s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
  }

  .hero-visual {
    order: -1;
    min-height: 600px;
  }

  .hero-copy {
    text-align: center;
  }

  .summary {
    margin-inline: auto;
  }

  .long-line {
    margin-inline: auto;
  }

  .hero-actions,
  .social-links {
    justify-content: center;
  }

  .portrait-halo {
    width: min(76%, 560px);
  }

  .portrait-frame {
    inset: 1% 10% 5%;
  }

  .bio-card {
    right: 50%;
    transform: translateX(50%);
    width: min(70%, 440px);
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 650px) {
  .topbar {
    min-height: 76px;
    padding: 12px 18px;
  }

  .brand-symbol {
    width: 55px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .hero {
    gap: 10px;
    padding-top: 100px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .portrait-halo {
    width: min(96%, 455px);
  }

  .portrait-frame {
    inset: 3% 0 5%;
  }

  .bio-card {
    width: 92%;
    padding: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .project-tabs {
    gap: 22px;
  }

  .project-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 270px;
  }

  .projects,
  .tech,
  .contact {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .contact-card .primary-button {
    width: 100%;
  }

  #backToTop {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
