.whatsapp-float {
  position: fixed;
  right: 80px;
  bottom: 80px;
  width: 90px;
  height: 90px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}
/* -------- CORES/VARIÁVEIS ATUALIZADAS -------- */
:root {
  --dark: #091d1e;
  --accent: #fddc39;
  --accent-light: #fff3bf;
  --accent-gradient: linear-gradient(135deg, #fddc39, #ffb347);
  --light: #f9f7f7;
  --green: #0d3d3f;
  --green-light: #1a5f63;
  --green-gradient: linear-gradient(135deg, #0d3d3f, #1a5f63);
  --purple: #6a4c93;
  --purple-light: #8b6cb4;
  --teal: #2a9d8f;
  --teal-light: #44c2b3;
  --coral: #e76f51;
  --coral-light: #ff8c69;
  --muted: rgba(9, 29, 30, 0.75);
  --glass: rgba(255, 255, 255, 0.92);
  --maxw: 1200px;
  --radius: 16px;
  --ff: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  --shadow-sm: 0 4px 15px rgba(9, 29, 30, 0.1);
  --shadow-md: 0 10px 30px rgba(9, 29, 30, 0.15);
  --shadow-lg: 0 18px 50px rgba(9, 29, 30, 0.12);
  --shadow-accent: 0 8px 25px rgba(253, 220, 57, 0.3);
}

#home {
  padding: 0;
}

/* -------- ANIMAÇÕES GLOBAIS -------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 220, 57, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(253, 220, 57, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 220, 57, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes cardHover {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}

/* -------- RESET BÁSICO -------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff);
  color: var(--dark);
  background: linear-gradient(135deg, #f9f7f7 0%, #f0f8ff 50%, #f5f5f5 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.color-white {
  color: #ffffff;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* -------- LAYOUT -------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* -------- HEADER & NAVEGAÇÃO ATUALIZADA -------- */
header {
  position: sticky;
  top: 0;
  background: var(--glass);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 1000;
  padding: 0;
  box-shadow: 0 5px 20px rgba(13, 61, 63, 0.08);
  animation: slideDown 0.5s ease-out;
  border-bottom: 2px solid var(--accent);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px;
  position: relative;
}
.brand {
  display: flex;
  gap: 15px;
  align-items: center;
  z-index: 1001;
}
.logo {
  width: 55px;
  height: 55px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: white;
  background: var(--accent-gradient);
  box-shadow: var(--shadow-md);
  font-size: 18px;
  flex-shrink: 0;
  animation: pulse 2s infinite;
  transition: all 0.4s ease;
}

.logo:hover {
  transform: rotate(10deg) scale(1.1);
  box-shadow: var(--shadow-accent);
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--accent-gradient);
  color: white;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-accent);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  position: relative;
  transition: all 0.3s ease;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: white;
  left: 0;
  transition: all 0.3s ease;
}
.menu-toggle span::before {
  top: -8px;
}
.menu-toggle span::after {
  bottom: -8px;
}
.menu-toggle.active span {
  background-color: transparent;
}
.menu-toggle.active span::before {
  transform: rotate(45deg) translate(5px, 8px);
}
.menu-toggle.active span::after {
  transform: rotate(-45deg) translate(5px, -8px);
}

.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-links a {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--green);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s;
}

.nav-links a:hover::before {
  left: 100%;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--accent-gradient);
  color: var(--dark);
  box-shadow: var(--shadow-accent);
  transform: translateY(-3px);
}
.nav-links a:active {
  transform: translateY(0);
}

/* -------- HERO COM ANIMAÇÕES -------- */
.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  padding: 40px 0 70px;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Na mobile: imagem em cima, conteúdo embaixo */
.hero-image {
  order: 1;
  max-width: 300px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin: 0 auto 40px;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-image:hover::after {
  opacity: 1;
}

.hero-content {
  order: 2;
  max-width: 700px;
  width: 100%;
}

.hero .kicker {
  display: inline-block;
  background: var(--accent-gradient);
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  animation: pulse 2s infinite 1s;
  position: relative;
  overflow: hidden;
}

.hero .kicker::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 2s infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0 0 20px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  animation: gradientShift 8s ease infinite;
  background-size: 200% auto;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  background: var(--green-gradient);
  color: white;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1.05rem;
  min-height: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover,
.btn:focus {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(13, 61, 63, 0.25);
}

.btn.alt {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--dark);
  background-color: white;
}

.btn.alt:hover {
  background: var(--accent);
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--shadow-accent);
}

/* Hero image styling */
.hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-image:hover img {
  transform: scale(1.05) rotate(1deg);
}

/* Social Row */
.social-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}

.social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover,
.social-btn:focus {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 28px rgba(106, 76, 147, 0.3);
}

.social-btn svg {
  width: 22px;
  height: 22px;
}

/* -------- SEÇÕES ANIMADAS -------- */
section {
  padding: 80px 0;
  border-top: 1px solid rgba(242, 242, 242, 0.8);
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

section:nth-child(odd) {
  background: linear-gradient(
    to bottom,
    rgba(249, 247, 247, 0.8),
    rgba(240, 248, 255, 0.4)
  );
}

section:first-of-type {
  border-top: none;
}

h2.section-title {
  color: var(--green);
  margin: 0 0 40px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

h2.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* About Section */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: translateY(-10px) rotate(1deg);
}

.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
}

/* Cards com animações */
.card {
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  animation: cardHover 0.5s ease-out forwards;
}

/* Grid Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.grid .card h3 {
  color: var(--green);
  margin-bottom: 16px;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
}

.grid .card h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.grid .card:hover h3::after {
  width: 80px;
}

/* Tabela com estilo aprimorado */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background: white;
}

th,
td {
  padding: 18px 24px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  transition: all 0.3s ease;
}

th {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background-color: rgba(253, 220, 57, 0.1);
  transform: translateX(5px);
}

/* Formulário */
.form-group {
  margin-bottom: 25px;
  animation: fadeInUp 0.5s ease-out;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--green);
  font-size: 1.05rem;
}

input,
textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.2);
  transform: translateY(-2px);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-newsletter {
  background: linear-gradient(135deg, var(--purple), var(--teal));
  color: var(--light);
}

/* Footer */
footer {
  padding: 50px 0;
  margin-top: 60px;
  background: linear-gradient(135deg, var(--green), var(--dark));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

/* -------- MEDIA QUERIES -------- */
/* Tablets - layout muda para lado a lado */
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    text-align: left;
    gap: 70px;
    padding: 70px 0 100px;
  }

  /* Em tablets/desktop: imagem à direita, conteúdo à esquerda */
  .hero-image {
    order: 2;
    flex: 0 0 45%;
    max-width: 45%;
    margin: 0;
  }

  .hero-content {
    order: 1;
    flex: 1;
    max-width: none;
    text-align: left;
  }

  .cta {
    justify-content: flex-start;
  }

  .social-row {
    justify-content: flex-start;
  }

  .two-col {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .about-image {
    flex: 0 0 45%;
    max-width: 45%;
    margin: 0;
  }

  .form-row {
    flex-direction: row;
  }

  .footer-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* Desktops */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-image {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  .whatsapp-float {
    width: 75px;
    height: 75px;
  }
}

/* Mobile específico */
@media (max-width: 767px) {
  .hero-image {
    max-width: 260px;
    margin-bottom: 30px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

/* Pequenos dispositivos */
@media (max-width: 480px) {
  .hero {
    padding: 30px 0 60px;
    gap: 25px;
  }

  .hero-image {
    max-width: 220px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  section {
    padding: 60px 0;
  }

  .card {
    padding: 25px;
  }

  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .whatsapp-float {
    width: 70px;
    height: 70px;
    bottom: 20px;
    right: 20px;
  }
}

/* Menu Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    flex-direction: column;
    padding: 120px 30px 50px;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 18px 24px;
    border-radius: 14px;
    margin: 8px 0;
    text-align: center;
    background: rgba(253, 220, 57, 0.1);
  }

  /* Overlay quando menu está aberto */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Utilitários */
.muted {
  color: var(--muted);
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-4 {
  margin-top: 40px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-4 {
  margin-bottom: 40px;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.3s ease-out;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Elementos decorativos */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.1;
  animation: float 15s infinite ease-in-out;
}

.floating-element:nth-child(1) {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
  background: radial-gradient(circle, var(--teal-light) 0%, transparent 70%);
}

.floating-element:nth-child(3) {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 8%;
  animation-delay: 4s;
  background: radial-gradient(circle, var(--purple-light) 0%, transparent 70%);
}
