/* ===== Variables ===== */
:root {
  --color-bg: #000000;
  --color-bg-alt: #0a0a12;
  --color-bg-card: #111118;
  --color-surface: #1a1a24;
  --color-neon-pink: #ff1493;
  --color-neon-pink-light: #ff69b4;
  --color-neon-purple: #9400d3;
  --color-neon-purple-light: #bf5fff;
  --color-accent: #ff1493;
  --color-accent-light: #ff69b4;
  --color-accent-dark: #c71585;
  --color-gold: #ff1493;
  --color-gold-light: #ff69b4;
  --color-gold-dark: #c71585;
  --color-text: #ffffff;
  --color-text-muted: #a0a0b0;
  --color-white: #ffffff;
  --color-whatsapp: #25d366;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-script: 'Pacifico', cursive;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  --shadow-neon: 0 0 20px rgba(255, 20, 147, 0.3), 0 0 40px rgba(148, 0, 211, 0.15);
  --shadow-gold: var(--shadow-neon);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: 1.35rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  color: var(--color-text-muted);
  margin-top: 16px;
  font-size: 1.05rem;
}

.highlight {
  color: var(--color-neon-pink-light);
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.6), 0 0 40px rgba(148, 0, 211, 0.3);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-neon-pink), var(--color-neon-purple));
  color: var(--color-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 20, 147, 0.5), 0 0 50px rgba(148, 0, 211, 0.3);
}

.btn-outline {
  border-color: var(--color-neon-pink);
  color: var(--color-neon-pink-light);
  background: transparent;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--color-neon-pink), var(--color-neon-purple));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-neon);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: white;
  padding: 10px;
}

.btn-icon {
  background: var(--color-surface);
  color: var(--color-text);
  padding: 10px;
}

.btn-icon:hover,
.btn-whatsapp:hover {
  transform: scale(1.05);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 20, 147, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: none;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-list a:hover {
  color: var(--color-gold);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 20, 147, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(148, 0, 211, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff1493' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 30%, var(--color-bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255, 20, 147, 0.5);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-neon-pink-light);
  margin-bottom: 24px;
  background: rgba(255, 20, 147, 0.1);
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.2);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 20, 147, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%, 100% { opacity: 1; top: 8px; }
  50% { opacity: 0.3; top: 20px; }
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section:nth-child(even) {
  background: var(--color-bg-alt);
}

/* ===== Produto ===== */
.produto-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.produto-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 20, 147, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.produto-card:hover {
  border-color: rgba(255, 20, 147, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.produto-card.featured {
  background: linear-gradient(145deg, var(--color-bg-card), rgba(255, 20, 147, 0.08));
  border-color: rgba(255, 20, 147, 0.25);
}

.produto-icon {
  width: 64px;
  height: 64px;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.produto-icon svg {
  width: 100%;
  height: 100%;
}

.produto-card h3 {
  margin-bottom: 12px;
  color: var(--color-gold-light);
}

.produto-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.produto-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.produto-features li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
}

.produto-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

/* ===== Destaque ===== */
.destaque {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.12), rgba(148, 0, 211, 0.08));
  border-top: 1px solid rgba(255, 20, 147, 0.25);
  border-bottom: 1px solid rgba(148, 0, 211, 0.25);
}

.destaque-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.destaque-text {
  flex: 1;
  min-width: 280px;
}

.destaque-text h2 {
  margin-bottom: 16px;
}

.destaque-text p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.destaque-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ===== Serviços ===== */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.servico-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.servico-card:nth-child(1) .servico-img { background: linear-gradient(135deg, rgba(255,20,147,0.3), rgba(148,0,211,0.2)); }
.servico-card:nth-child(2) .servico-img { background: linear-gradient(135deg, rgba(255,105,180,0.25), rgba(191,95,255,0.2)); }
.servico-card:nth-child(3) .servico-img { background: linear-gradient(135deg, rgba(199,21,133,0.25), rgba(148,0,211,0.25)); }
.servico-card:nth-child(4) .servico-img { background: linear-gradient(135deg, rgba(255,20,147,0.2), rgba(100,0,180,0.2)); }

.servico-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servico-emoji {
  font-size: 3rem;
}

.servico-body {
  padding: 24px;
}

.servico-body h3 {
  margin-bottom: 10px;
  color: var(--color-gold-light);
}

.servico-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 20, 147, 0.08);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(255, 20, 147, 0.25);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ===== Galeria ===== */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.galeria-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 20, 147, 0.15);
  transition: var(--transition);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria-item:hover {
  border-color: rgba(255, 20, 147, 0.5);
  box-shadow: 0 0 25px rgba(255, 20, 147, 0.25);
}

.galeria-item:hover img {
  transform: scale(1.08);
}

.galeria-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

/* ===== Sobre ===== */
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.sobre-logo-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
              linear-gradient(135deg, var(--color-neon-pink), var(--color-neon-purple)) border-box;
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.25), 0 0 60px rgba(148, 0, 211, 0.15);
}

.sobre-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

.sobre-content h2 {
  margin-bottom: 24px;
}

.sobre-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.sobre-content strong {
  color: var(--color-gold);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 20, 147, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: rgba(255, 20, 147, 0.3);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Depoimentos ===== */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 20, 147, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.depoimento-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
}

.depoimento-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.depoimento-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.depoimento-card strong {
  color: var(--color-gold-light);
}

.depoimento-card span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ===== Contato ===== */
.contato {
  background: var(--color-bg-alt);
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contato-info h2 {
  margin-bottom: 16px;
}

.contato-info > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.contato-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  transition: color var(--transition);
}

.contato-link:hover {
  color: var(--color-gold);
}

.contato-link svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.contato-regiao {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contato-form {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 20, 147, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154, 149, 144, 0.6);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Footer ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 20, 147, 0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--color-neon-pink-light);
  font-size: 1.1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .produto-grid {
    grid-template-columns: 1fr;
  }

  .servicos-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .sobre-inner,
  .contato-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-alt);
    padding: calc(var(--header-height) + 24px) 32px 32px;
    transition: right var(--transition);
    border-left: 1px solid rgba(255, 20, 147, 0.1);
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 24px;
  }

  .nav-list a {
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .servicos-grid,
  .features-grid,
  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .destaque-stats {
    width: 100%;
    justify-content: space-around;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contato-form {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
