@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@200;300;400;500;600&display=swap');

/* ==========================================================================
   DESIGN TOKENS & CSS VARIABLES — DUALMA
   ========================================================================== */
:root {
  /* Logo e Tipografia Oficial */
  --sand-light: #e0d4bd;
  --brown-deep: #5a3d23;

  /* Fundos & Acentos Oficiais */
  --olive-deep: #5e521a;
  --linen-warm: #e9d7be;
  --terracotta: #ad5e3b;

  /* Cores de Apoio & Contraste */
  --bg-cream: #faf7f2;
  --bg-dark-card: #4a321c;
  --text-dark: #2c1e14;
  --text-muted: #6a5749;
  --text-light: #f5efe6;
  --text-light-muted: #d4c4b2;
  --border-light: rgba(224, 212, 189, 0.25);
  --border-dark: rgba(90, 61, 35, 0.14);

  /* Tipografia */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Efeitos e Transições */
  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 10px 30px -10px rgba(44, 30, 20, 0.08);
  --shadow-elevated: 0 20px 40px -15px rgba(44, 30, 20, 0.18);
  --shadow-glow: 0 0 45px rgba(224, 212, 189, 0.18);
}

/* ==========================================================================
   RESET & CONFIGURAÇÕES GERAIS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   TIPOGRAFIA EDITORIAL
   ========================================================================== */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.text-italic {
  font-style: italic;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

/* ==========================================================================
   CONTAINERS & ESTRUTURA
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  max-width: 860px;
}

section {
  position: relative;
  padding: 100px 0;
}

@media (min-width: 768px) {
  section {
    padding: 140px 0;
  }
}

/* ==========================================================================
   HEADER & NAVEGAÇÃO
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  padding: 22px 0;
}

.header.scrolled {
  background: rgba(44, 30, 20, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(224, 212, 189, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sand-light);
}

.logo-symbol-nav {
  width: 38px;
  height: auto;
  color: var(--sand-light);
}

.logo-tipo-nav {
  width: 115px;
  height: auto;
  color: var(--sand-light);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--sand-light);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.85;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--sand-light);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--sand-light);
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: currentColor;
  transition: var(--transition-smooth);
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background-color: #382415;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  color: var(--sand-light);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   BOTÕES E CTAs LUXURY
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background-color: var(--sand-light);
  color: var(--brown-deep);
  border-color: var(--sand-light);
}

.btn-primary:hover {
  background-color: #eee4d1;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(224, 212, 189, 0.25);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--sand-light);
  border-color: var(--sand-light);
}

.btn-outline-light:hover {
  background-color: var(--sand-light);
  color: var(--brown-deep);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--brown-deep);
  color: var(--sand-light);
  border-color: var(--brown-deep);
}

.btn-dark:hover {
  background-color: #452d18;
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.btn-terracotta {
  background-color: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

.btn-terracotta:hover {
  background-color: #964e2f;
  transform: translateY(-2px);
}

/* ==========================================================================
   SEÇÃO HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #6b4a2c 0%, #442a15 65%, #2c1a0c 100%);
  color: var(--text-light);
  padding-top: 130px;
  padding-bottom: 90px;
  text-align: center;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(rgba(224, 212, 189, 0.4) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-symbol {
  width: 110px;
  height: auto;
  margin: 0 auto 28px;
  color: var(--sand-light);
  opacity: 0.95;
  animation: floatSubtle 6s ease-in-out infinite;
}

.hero-logo-tipo {
  width: 240px;
  max-width: 70vw;
  height: auto;
  margin: 0 auto 24px;
  color: var(--sand-light);
}

@media (min-width: 768px) {
  .hero-symbol {
    width: 140px;
    margin-bottom: 34px;
  }
  .hero-logo-tipo {
    width: 320px;
    margin-bottom: 30px;
  }
}

.hero-tagline {
  font-size: 1.9rem;
  color: var(--sand-light);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 2.75rem;
  }
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  max-width: 680px;
  margin: 0 auto 42px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--sand-light);
  opacity: 0.6;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-indicator svg {
  animation: bounceSlow 2s infinite;
}

/* ==========================================================================
   SEÇÃO MANIFESTO / O ESPAÇO PARA RESPIRAR
   ========================================================================== */
.section-manifesto {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.manifesto-question {
  font-size: 2.2rem;
  color: var(--brown-deep);
  margin-bottom: 32px;
  line-height: 1.25;
  font-style: italic;
  text-align: center;
}

@media (min-width: 768px) {
  .manifesto-question {
    font-size: 3.2rem;
  }
}

.manifesto-lead {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 50px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.pillar-item {
  background-color: #fff;
  padding: 42px 32px;
  border-radius: 4px;
  border: 1px solid var(--border-dark);
  text-align: center;
  transition: var(--transition-smooth);
}

.pillar-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-subtle);
  border-color: var(--linen-warm);
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: block;
}

.pillar-title {
  font-size: 1.6rem;
  color: var(--brown-deep);
  margin-bottom: 12px;
}

.pillar-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   SEÇÃO AS EXPERIÊNCIAS DUALMA
   ========================================================================== */
.section-experiences {
  background-color: var(--olive-deep);
  color: var(--sand-light);
}

.section-header-light {
  text-align: center;
  margin-bottom: 70px;
}

.section-header-light .eyebrow {
  color: var(--sand-light);
  opacity: 0.8;
}

.section-header-light h2 {
  color: var(--sand-light);
  font-size: 2.6rem;
}

@media (min-width: 768px) {
  .section-header-light h2 {
    font-size: 3.4rem;
  }
}

.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .experiences-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.experience-card {
  background: rgba(44, 38, 12, 0.45);
  border: 1px solid rgba(224, 212, 189, 0.2);
  border-radius: 4px;
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.experience-card:hover {
  transform: translateY(-8px);
  border-color: var(--sand-light);
  background: rgba(44, 38, 12, 0.7);
  box-shadow: var(--shadow-glow);
}

.experience-card-top {
  margin-bottom: 30px;
}

.experience-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-light);
  opacity: 0.75;
  margin-bottom: 18px;
}

.experience-title {
  font-size: 1.85rem;
  color: var(--sand-light);
  margin-bottom: 16px;
  line-height: 1.2;
}

.experience-desc {
  font-size: 0.96rem;
  color: #d6ccba;
  line-height: 1.8;
}

.experience-detail-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--sand-light);
  opacity: 0.8;
  padding-top: 20px;
  border-top: 1px solid rgba(224, 212, 189, 0.15);
}

/* Custom Station Banner */
.custom-station-box {
  margin-top: 50px;
  background: rgba(224, 212, 189, 0.09);
  border: 1px solid rgba(224, 212, 189, 0.25);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .custom-station-box {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 50px 60px;
  }
}

.custom-station-title {
  font-size: 1.9rem;
  color: var(--sand-light);
  margin-bottom: 8px;
}

.custom-station-text {
  color: #dbd0be;
  font-size: 0.98rem;
  max-width: 620px;
}

/* ==========================================================================
   SEÇÃO OCASIÕES (MOMENTOS)
   ========================================================================== */
.section-occasions {
  background-color: var(--linen-warm);
  color: var(--brown-deep);
}

.occasions-quote {
  font-size: 2.1rem;
  font-style: italic;
  text-align: center;
  color: var(--brown-deep);
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .occasions-quote {
    font-size: 2.8rem;
  }
}

.occasions-pill-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.occasion-pill {
  padding: 14px 28px;
  border: 1px solid rgba(90, 61, 35, 0.25);
  background: rgba(255, 255, 255, 0.65);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--brown-deep);
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.occasion-pill:hover {
  background: var(--brown-deep);
  color: var(--sand-light);
  border-color: var(--brown-deep);
  transform: translateY(-2px);
}

.occasions-message {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.quote-highlight {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--terracotta);
  display: block;
  margin-top: 18px;
}

/* ==========================================================================
   SEÇÃO NOSSA HISTÓRIA (AS FUNDADORAS)
   ========================================================================== */
.section-story {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .story-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
  }
}

.story-content h2 {
  font-size: 2.8rem;
  color: var(--brown-deep);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .story-content h2 {
    font-size: 3.5rem;
  }
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.founders-names {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.founders-label {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.founders-signature {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--brown-deep);
  font-style: italic;
}

.story-visual-card {
  position: relative;
  background: #f4ecdf;
  border-radius: 8px;
  padding: 14px;
  border: 1px solid rgba(90, 61, 35, 0.16);
  box-shadow: var(--shadow-elevated);
  transition: var(--transition-smooth);
}

.story-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(44, 30, 20, 0.22);
}

.story-photo-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  background: #e8dccb;
}

.story-photo {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-visual-card:hover .story-photo {
  transform: scale(1.02);
}

.story-photo-caption {
  padding: 16px 8px 8px;
  text-align: center;
}

.story-photo-names {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--brown-deep);
  font-style: italic;
  margin-bottom: 2px;
}

.story-photo-role {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  display: block;
}

/* ==========================================================================
   SEÇÃO CONVITE AO CONTATO (SEM BARREIRAS)
   ========================================================================== */
.section-contact {
  background-color: var(--brown-deep);
  color: var(--sand-light);
  position: relative;
  overflow: hidden;
}

.contact-card-wrapper {
  background: rgba(224, 212, 189, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 48px 24px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .contact-card-wrapper {
    padding: 70px 60px;
  }
}

.contact-title {
  font-size: 2.6rem;
  color: var(--sand-light);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 3.4rem;
  }
}

.contact-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #dfd3bf;
  max-width: 640px;
  margin: 0 auto 40px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.contact-form-minimal {
  width: 100%;
  max-width: 580px;
  margin: 30px auto 0;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-bottom: 8px;
  opacity: 0.9;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(224, 212, 189, 0.25);
  border-radius: 2px;
  color: #fff;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--sand-light);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 15px rgba(224, 212, 189, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.footer {
  background-color: #23160c;
  color: var(--sand-light);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(224, 212, 189, 0.1);
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.footer-symbol {
  width: 50px;
  height: auto;
  color: var(--sand-light);
  opacity: 0.9;
}

.footer-tipo {
  width: 160px;
  height: auto;
  color: var(--sand-light);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: #d1c1aa;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bfaea0;
}

.footer-link:hover {
  color: var(--sand-light);
}

.footer-copy {
  font-size: 0.82rem;
  color: #7b695c;
  border-top: 1px solid rgba(224, 212, 189, 0.08);
  padding-top: 30px;
}

/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP (VIP & DISCRETO)
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--sand-light);
  color: var(--brown-deep);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  background-color: #f7eedf;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 576px) {
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }
}

/* ==========================================================================
   ANIMAÇÕES & REVEAL
   ========================================================================== */
@keyframes floatSubtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes bounceSlow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(6px);
  }
  60% {
    transform: translateY(3px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

