@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #020004;
  --bg2: #08000f;
  --bg3: #12001f;

  --purple: #a855f7;
  --purple2: #7c3aed;
  --purple-dark: #3b0764;
  --purple-light: #e9d5ff;

  --pink: #f0abfc;
  --white: #ffffff;

  --text: #f7edff;
  --muted: #c4b5fd;

  --border: rgba(233, 213, 255, 0.18);
  --glass: rgba(18, 0, 32, 0.62);
  --glass2: rgba(255, 255, 255, 0.045);

  --shadow: 0 0 30px rgba(168, 85, 247, 0.45);
  --shadow-strong: 0 0 45px rgba(168, 85, 247, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(168, 85, 247, 0.35), transparent 35%),
    radial-gradient(circle at 10% 20%, rgba(126, 34, 206, 0.35), transparent 28%),
    radial-gradient(circle at 90% 35%, rgba(217, 70, 239, 0.22), transparent 30%),
    linear-gradient(180deg, #020004 0%, #08000f 45%, #030006 100%);
}

/* BACKGROUND PREMIUM */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -25%;
  z-index: -3;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(168, 85, 247, 0.55), transparent 16%),
    radial-gradient(circle at 82% 12%, rgba(236, 72, 153, 0.28), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(124, 58, 237, 0.36), transparent 22%);
  filter: blur(70px);
  animation: cosmicMove 10s infinite alternate ease-in-out;
}

body::after {
  background:
    radial-gradient(circle at 78% 75%, rgba(216, 180, 254, 0.22), transparent 20%),
    radial-gradient(circle at 5% 85%, rgba(147, 51, 234, 0.28), transparent 18%);
  filter: blur(95px);
  animation: cosmicMoveTwo 15s infinite alternate ease-in-out;
}

@keyframes cosmicMove {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.65;
  }

  50% {
    transform: translate(5%, -4%) scale(1.18);
    opacity: 0.95;
  }

  100% {
    transform: translate(-5%, 5%) scale(1.05);
    opacity: 0.75;
  }
}

@keyframes cosmicMoveTwo {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.35;
  }

  50% {
    transform: translate(-6%, 5%) scale(1.22);
    opacity: 0.75;
  }

  100% {
    transform: translate(5%, -5%) scale(1.08);
    opacity: 0.5;
  }
}

/* GRID + NOISE */
main {
  position: relative;
}

main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(216, 180, 254, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 180, 254, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
}

main::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.035) 45%, transparent 55%),
    radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.35) 100%);
  opacity: 0.6;
}

a {
  color: inherit;
  text-decoration: none;
}



/* ajuste por causa do header flutuante */
.hero {
  padding-top: 150px;
}

@media (max-width: 950px) {
  .header {
    width: min(720px, calc(100% - 24px));
    border-radius: 26px;
    top: 12px;
  }

  .navbar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .logo {
    margin: auto;
  }

  .nav-links {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 170px;
  }
}

@media (max-width: 650px) {
  .header {
    position: sticky;
    width: calc(100% - 20px);
    top: 10px;
    margin: 10px auto 0;
    transform: none;
    left: auto;
  }

  .navbar {
    padding: 13px 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }
}
.btn::before,
.project-card a::before,
.more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.95),
    transparent
  );
  transform: skewX(-25deg);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(216, 180, 254, 0.26), rgba(88, 28, 135, 0.72));
  box-shadow:
    0 0 18px rgba(168, 85, 247, 1),
    0 0 45px rgba(168, 85, 247, 0.55),
    inset 0 0 20px rgba(255, 255, 255, 0.09);
}

.nav-links a:hover::before,
.btn:hover::before,
.project-card a:hover::before,
.more-btn:hover::before {
  animation: lightPass 0.75s ease forwards;
}

@keyframes lightPass {
  from {
    left: -100%;
  }

  to {
    left: 145%;
  }
}

/* HERO */
.hero {
  max-width: 1180px;
  min-height: 720px;
  margin: auto;
  padding: 132px 24px 72px;

  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 12px;
  width: 4px;
  height: 84%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, #a855f7, #ffffff, #f0abfc, transparent);
  box-shadow:
    0 0 18px rgba(168, 85, 247, 1),
    0 0 45px rgba(168, 85, 247, 0.7);
}

.hero-content::after {
  content: "";
  position: absolute;
  right: 8%;
  top: -45px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(233, 213, 255, 0.12);
  border-radius: 34px;
  background: rgba(168, 85, 247, 0.05);
  transform: rotate(18deg);
  filter: blur(0.2px);
  box-shadow:
    0 0 35px rgba(168, 85, 247, 0.12),
    inset 0 0 35px rgba(168, 85, 247, 0.08);
  z-index: -1;
  animation: spinBox 9s infinite alternate ease-in-out;
}

@keyframes spinBox {
  from {
    transform: rotate(12deg) translateY(0);
  }

  to {
    transform: rotate(28deg) translateY(-16px);
  }
}

.tag {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 17px;
  padding: 8px 15px;
  background:
    linear-gradient(135deg, rgba(168, 85, 247, 0.22), rgba(255, 255, 255, 0.055));
  color: #fff;
  border: 1px solid rgba(233, 213, 255, 0.38);
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 800;

  box-shadow:
    0 0 20px rgba(168, 85, 247, 0.42),
    inset 0 0 14px rgba(255, 255, 255, 0.08);
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e9d5ff;
  box-shadow:
    0 0 10px #a855f7,
    0 0 22px #a855f7;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(45px, 6vw, 76px);
  line-height: 0.92;
  color: #fff;
  letter-spacing: -3.3px;
  text-shadow:
    0 0 28px rgba(168, 85, 247, 0.28),
    0 8px 40px rgba(0, 0, 0, 0.65);
}

.hero h1 strong {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, #fff, #e9d5ff, #a855f7, #f0abfc);
  background-size: 250%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.72));
  animation: textGradient 4s infinite alternate ease-in-out;
}

@keyframes textGradient {
  from {
    background-position: 0% center;
  }

  to {
    background-position: 100% center;
  }
}

.hero p {
  max-width: 620px;
  margin-bottom: 29px;
  color: #dfcaff;
  font-size: 17px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 24px;
  border-radius: 15px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25px;

  border: none;
  cursor: pointer;
  transition: 0.35s ease;
}

.btn.primary {
  color: #fff;
  background:
    linear-gradient(135deg, #4c1d95, #7c3aed 35%, #a855f7 68%, #e9d5ff);
  box-shadow:
    0 0 22px rgba(168, 85, 247, 0.65),
    0 0 55px rgba(168, 85, 247, 0.26),
    inset 0 0 16px rgba(255, 255, 255, 0.18);
}

.btn.primary:hover {
  transform: translateY(-4px) scale(1.045);
  box-shadow:
    0 0 22px rgba(168, 85, 247, 1),
    0 0 65px rgba(168, 85, 247, 0.7),
    0 0 120px rgba(168, 85, 247, 0.35);
}

.btn.secondary {
  color: #f3e8ff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(88, 28, 135, 0.18));
  border: 1px solid rgba(233, 213, 255, 0.34);
  box-shadow:
    inset 0 0 18px rgba(168, 85, 247, 0.10),
    0 0 18px rgba(168, 85, 247, 0.10);
}

.btn.secondary:hover {
  transform: translateY(-4px) scale(1.045);
  color: #fff;
  border-color: #fff;
  box-shadow:
    0 0 18px rgba(168, 85, 247, 0.85),
    0 0 45px rgba(168, 85, 247, 0.45);
}

/* HERO IMAGE */
.hero-image {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.profile-card {
  position: relative;
  width: min(360px, 82vw);
  height: min(360px, 82vw);
  padding: 6px;
  border-radius: 38px;

  background:
    linear-gradient(135deg, #ffffff, #e9d5ff 18%, #a855f7 46%, #581c87 78%, #ffffff);
  box-shadow:
    0 0 35px rgba(168, 85, 247, 0.65),
    0 0 95px rgba(88, 28, 135, 0.55),
    0 35px 80px rgba(0, 0, 0, 0.45);

  animation: floatCard 4s infinite ease-in-out;
  transform-style: preserve-3d;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 48px;
  background:
    conic-gradient(from 180deg, transparent, rgba(168, 85, 247, 0.95), rgba(255,255,255,0.7), transparent, rgba(240, 171, 252, 0.8), transparent);
  z-index: -2;
  filter: blur(18px);
  opacity: 0.85;
  animation: auraSpin 7s linear infinite;
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 0 35px rgba(255,255,255,0.08);
  pointer-events: none;
}

@keyframes auraSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: translateY(-14px) rotateX(3deg) rotateY(-4deg);
  }
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background:
    radial-gradient(circle at top, rgba(168, 85, 247, 0.22), #12001d);
  border-radius: 32px;
}

/* SECTIONS */
.section {
  max-width: 1180px;
  margin: auto;
  padding: 64px 24px;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,213,255,0.22), transparent);
}

.section h2 {
  position: relative;
  display: inline-block;

  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: #fff;
  letter-spacing: -1.8px;

  text-shadow:
    0 0 18px rgba(168, 85, 247, 0.75),
    0 0 48px rgba(168, 85, 247, 0.28);
}

.section h2::before {
  content: "";
  position: absolute;
  right: -34px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e9d5ff;
  box-shadow:
    0 0 14px #a855f7,
    0 0 35px #a855f7;
}

.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 72%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, #a855f7, transparent);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.9);
}

.section p {
  color: #dfcaff;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.75;
}

/* CARDS */
.skills-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.skill-card,
.project-card {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(168, 85, 247, 0.10) 42%, rgba(18, 0, 29, 0.82));
  border: 1px solid rgba(233, 213, 255, 0.17);
  border-radius: 22px;
  padding: 23px;

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.34),
    inset 0 0 28px rgba(168, 85, 247, 0.055);

  transition: 0.38s ease;
}

.skill-card::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(233, 213, 255, 0.26), transparent 34%),
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.065) 45%, transparent 60%);
  opacity: 0;
  transition: 0.38s ease;
}

.skill-card::after,
.project-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,213,255,0.6), transparent);
  opacity: 0.45;
}

.skill-card:hover,
.project-card:hover {
  transform: translateY(-9px) scale(1.018);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 22px rgba(168, 85, 247, 0.85),
    0 0 60px rgba(126, 34, 206, 0.45),
    0 30px 80px rgba(0, 0, 0, 0.45);
}

.skill-card:hover::before,
.project-card:hover::before {
  opacity: 1;
}

.skill-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  text-shadow:
    0 0 12px rgba(168, 85, 247, 0.85),
    0 0 35px rgba(168, 85, 247, 0.28);
}

.project-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.5px;
}

.project-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: 14px;
  color: #dcc7ff;
}

.project-card a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 15px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(255,255,255,0.05));
  border: 1px solid rgba(233, 213, 255, 0.3);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 13px;
  transition: 0.3s;
}

.project-card a:hover {
  border-color: #fff;
  box-shadow:
    0 0 15px rgba(168, 85, 247, 0.95),
    0 0 35px rgba(168, 85, 247, 0.5);
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  border-radius: 24px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(18, 0, 29, 0.86));
  border: 1px solid rgba(233, 213, 255, 0.18);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    inset 0 0 25px rgba(168, 85, 247, 0.07);
  transition: 0.4s ease;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 3;
  border-radius: 23px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.video-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 0 24px rgba(168, 85, 247, 0.9),
    0 0 70px rgba(126, 34, 206, 0.55),
    0 35px 80px rgba(0, 0, 0, 0.45);
}

.video-card video {
  width: 100%;
  height: 100%;
  min-height: 245px;
  display: block;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.18) contrast(1.06);
  transition: 0.45s ease;
}

.video-card:hover video {
  opacity: 1;
  transform: scale(1.08);
  filter: saturate(1.35) contrast(1.12);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(2, 0, 4, 0.96), rgba(2,0,4,0.35) 50%, transparent 72%),
    radial-gradient(circle at top left, rgba(216, 180, 254, 0.26), transparent 35%),
    linear-gradient(115deg, transparent, rgba(255,255,255,0.055), transparent);
}

.video-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.video-info h3 {
  margin-bottom: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.5px;
  text-shadow:
    0 0 14px rgba(168, 85, 247, 0.95),
    0 0 35px rgba(168, 85, 247, 0.45);
}

.video-info span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: #f3e8ff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(233, 213, 255, 0.24);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.18);
}

/* MORE BUTTON */
.videos-more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.more-btn {
  position: relative;
  overflow: hidden;

  padding: 15px 34px;
  border-radius: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;

  color: #fff;
  background:
    linear-gradient(135deg, #4c1d95, #7c3aed, #a855f7, #e9d5ff);
  border: 1px solid rgba(255, 255, 255, 0.22);

  box-shadow:
    0 0 22px rgba(168, 85, 247, 0.72),
    0 0 60px rgba(168, 85, 247, 0.34),
    inset 0 0 15px rgba(255, 255, 255, 0.18);

  transition: 0.35s ease;
}

.more-btn:hover {
  transform: scale(1.075) translateY(-3px);
  box-shadow:
    0 0 30px rgba(168, 85, 247, 1),
    0 0 85px rgba(168, 85, 247, 0.78),
    0 0 140px rgba(168, 85, 247, 0.42);
}

/* CONTACT */
.contact-section {
  padding-bottom: 76px;
}

.contact-form {
  max-width: 570px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(18, 0, 29, 0.88));
  color: #f7edff;
  border: 1px solid rgba(233, 213, 255, 0.21);
  border-radius: 16px;
  outline: none;

  font-size: 14px;
  font-family: "Inter", sans-serif;

  box-shadow:
    inset 0 0 18px rgba(168, 85, 247, 0.07),
    0 0 18px rgba(168, 85, 247, 0.06);

  transition: 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(233, 213, 255, 0.62);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fff;
  background:
    linear-gradient(180deg, rgba(168, 85, 247, 0.13), rgba(18, 0, 29, 0.92));
  box-shadow:
    0 0 16px rgba(168, 85, 247, 0.85),
    0 0 38px rgba(168, 85, 247, 0.36),
    inset 0 0 18px rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

/* FOOTER */
.footer {
  position: relative;
  padding: 25px 22px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8,0,15,0.75), rgba(2,0,4,0.96));
  color: #c4b5fd;
  font-size: 14px;
  border-top: 1px solid rgba(233, 213, 255, 0.15);
  box-shadow: 0 -14px 40px rgba(168, 85, 247, 0.08);
}

.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(680px, 75%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #a855f7, #fff, transparent);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.85);
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .navbar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .logo {
    margin: auto;
    text-align: center;
  }

  .nav-links {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 142px;
    gap: 42px;
  }

  .hero-content::before,
  .hero-content::after {
    display: none;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .skills-grid,
  .projects-grid,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .header {
    position: sticky;
  }

  .navbar {
    padding: 14px 18px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 62px 20px 42px;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 15px;
  }

  .section {
    padding: 48px 20px;
  }

  .section h2 {
    font-size: 32px;
  }

  .skills-grid,
  .projects-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    width: 240px;
    height: 240px;
    border-radius: 30px;
  }

  .profile-card img {
    border-radius: 25px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn,
  .more-btn {
    width: 100%;
  }

  .video-card,
  .video-card video {
    min-height: 210px;
  }
}

/* wrapper centraliza */
.contact-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* caixa */
.contact-actions {
  max-width: 600px;
  width: 100%;
  padding: 28px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  border-radius: 24px;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(18,0,29,0.85));
  border: 1px solid rgba(216,180,254,0.22);

  box-shadow:
    0 0 30px rgba(168,85,247,0.28),
    inset 0 0 22px rgba(255,255,255,0.04);

  text-align: center;
}

/* título */
.contact-actions h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  color: #fff;

  text-shadow: 0 0 15px rgba(168,85,247,0.6);
}

/* texto */
.contact-actions p {
  color: #d8b4fe;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* botões */
.contact-actions .btn {
  width: 100%;
  height: 54px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
}

/* responsivo */
@media (max-width: 650px) {
  .contact-actions {
    padding: 22px;
  }
}