:root {
  /* Tokens alinhados ao Tailwind / shadcn */
  --background: 30 33% 98%;
  --foreground: 0 0% 10%;
  --card: 30 25% 96%;
  --card-foreground: 0 0% 10%;
  --popover: 30 33% 98%;
  --popover-foreground: 0 0% 10%;
  --primary: 40 45% 55%;
  --primary-foreground: 30 33% 98%;
  --secondary: 30 20% 93%;
  --secondary-foreground: 25 15% 33%;
  --muted: 30 15% 93%;
  --muted-foreground: 25 10% 40%;
  --accent: 40 45% 55%;
  --accent-foreground: 30 33% 98%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 30 15% 88%;
  --input: 30 15% 88%;
  --ring: 40 45% 55%;
  --radius: 0.5rem;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Alias semânticos usados no layout */
  --gold: hsl(var(--primary));
  --alabaster: hsl(var(--background));
  --linen: hsl(30 25% 94%);
  --obsidian: hsl(var(--foreground));
  --taupe: hsl(var(--secondary-foreground));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.font-display {
  font-family: var(--font-display);
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

/* Scroll progress bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  z-index: 100;
}

.progress-bar-inner {
  height: 100%;
  width: 0%;
  background: hsl(var(--primary));
  transition: width 0.15s ease-out;
}

/* Header / Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: hsl(var(--background) / 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px hsl(var(--foreground) / 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 4rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand em {
  font-style: italic;
  font-weight: 400;
}

.nav-desktop {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: hsl(var(--foreground));
}

.btn-agendar {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-agendar:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--background));
}

/* Mobile menu */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  color: hsl(var(--foreground));
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu ul {
  list-style: none;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu li {
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: hsl(var(--foreground));
}

.mobile-menu .btn-mobile {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: 1px solid hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu .btn-mobile:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--background));
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .nav {
    height: 5rem;
  }

  .brand {
    font-size: 1.75rem;
  }

  .nav-desktop {
    display: block;
  }

  .btn-agendar {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.875rem 2rem;
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--alabaster);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--alabaster);
  padding: 0.875rem 2rem;
}

.btn-gold:hover {
  background-color: hsl(var(--foreground));
}

.btn-dark {
  position: relative;
  overflow: hidden;
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
  border: 1px solid hsl(var(--primary) / 0.3);
  padding: 0.875rem 2rem;
}

.btn-dark:hover {
  transform: scale(1.05);
}

.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  padding: 1rem 2rem;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.5s ease, background-color 0.5s ease;
  isolation: isolate;
}

.btn-hero > * {
  position: relative;
  z-index: 1;
}

.btn-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  z-index: 0;
}

.btn-hero:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--background));
}

.btn-hero:hover::after {
  transform: translateX(100%);
}

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

.btn--shimmer {
  position: relative;
}

.btn--shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 30%,
    hsl(var(--primary) / 0.35) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  pointer-events: none;
}

/* Eyebrow + headings */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .eyebrow {
    font-size: 1rem;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.25;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
}

.section-desc {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.7;
}

.section-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: hsl(var(--foreground));
  margin-top: 1.25rem;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
  .section-desc {
    font-size: 1.125rem;
  }
}

.divider-gold {
  width: 3rem;
  height: 1px;
  background: hsl(var(--primary));
  margin-bottom: 2rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, hsl(var(--background) / 0.95) 0%, hsl(var(--background) / 0.8) 50%, hsl(var(--background) / 0.3) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-content {
  max-width: 42rem;
}

.hero-vertical {
  display: none;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--primary) / 0.6);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.1;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero p {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.625;
  max-width: 32rem;
  margin-bottom: 1rem;
}

.hero-quote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: hsl(var(--primary) / 0.8);
  margin-bottom: 2.5rem;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.3), transparent);
  z-index: 10;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-overlay {
    background: linear-gradient(90deg, hsl(var(--background) / 0.9) 0%, hsl(var(--background) / 0.7) 50%, transparent 100%);
  }

  .hero-inner {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .hero p {
    font-size: 1.125rem;
  }

  .hero-quote {
    font-size: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-vertical {
    display: block;
  }
}

/* Sections */
.section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 9rem 0;
  }
}

.bg-alabaster {
  background-color: hsl(var(--background));
}

.bg-linen {
  background-color: var(--linen);
}

.bg-obsidian {
  background-color: hsl(var(--foreground));
}

.bg-obsidian .section-title {
  color: hsl(var(--background));
}

.bg-obsidian .section-desc {
  color: hsl(var(--background) / 0.7);
}

.grid-2 {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.figure-frame {
  position: relative;
}

.figure-frame > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.accent-br {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  border: 1px solid hsl(var(--primary) / 0.3);
}

.accent-tr {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid hsl(var(--primary) / 0.2);
}

.figure-sobre img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  padding-right: 1.25rem;
  padding-left: 4rem;
}

/* Services */
.services-section {
  text-align: center;
}

.services-section .section-title {
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  display: block;
  background: hsl(var(--background));
  border: 1px solid transparent;
  padding: 2rem;
  transition: border-color 0.5s ease;
}

.service-card:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.service-card .icon-circle {
  width: 3rem;
  height: 3rem;
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  margin-bottom: 1.5rem;
  transition: background-color 0.5s ease;
}

.service-card:hover .icon-circle {
  background-color: hsl(var(--primary) / 0.1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.saiba-mais {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  transition: letter-spacing 0.3s ease;
}

.service-card:hover .saiba-mais {
  letter-spacing: 0.2em;
}

/* Benefits */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
}

.check {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: hsl(var(--primary));
  color: hsl(var(--background));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.check-outline {
  background: transparent;
  border: 1px solid hsl(var(--primary) / 0.4);
  color: hsl(var(--primary));
}

.figure-round img {
  width: 100%;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.2);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Results */
.results-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.result-img {
  overflow: hidden;
  border-radius: var(--radius);
}

.result-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

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

.results-section .section-desc {
  max-width: 32rem;
  margin: 0 auto;
}

/* Testimonials */
.testimonials-section {
  text-align: center;
}

.testimonials-section .section-title {
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

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

.testimonial {
  position: relative;
  background: var(--linen);
  padding: 2rem;
}

.quote-icon {
  color: hsl(var(--primary) / 0.3);
  margin-bottom: 1.25rem;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.quote-dash {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: hsl(var(--primary) / 0.5);
}

/* CTA transformation */
.cta-final {
  position: relative;
  overflow: hidden;
}

.cta-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.4), transparent);
}

.cta-line-top {
  top: 0;
}

.cta-line-bottom {
  bottom: 0;
}

.cta-center {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-center .eyebrow {
  color: hsl(var(--primary));
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}

.cta-center .section-title {
  font-size: 2.25rem;
  color: hsl(var(--background));
  margin-bottom: 2rem;
}

.cta-center .section-title em {
  display: block;
  margin-top: 0.5rem;
}

.cta-center .section-desc {
  color: hsl(var(--background) / 0.6);
  max-width: 32rem;
  margin: 0 auto 1rem;
}

.cta-notice {
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.btn-final-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  overflow: hidden;
  padding: 1.25rem 2.5rem;
  border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.5s ease, background-color 0.5s ease;
  isolation: isolate;
}

.btn-final-cta > * {
  position: relative;
  z-index: 1;
}

.btn-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, hsl(var(--primary) / 0.1) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  z-index: 0;
}

.btn-final-cta:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--foreground));
}

@media (min-width: 1024px) {
  .cta-center .section-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1280px) {
  .cta-center .section-title {
    font-size: 4.5rem;
  }
}

/* Contact */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  transition: background-color 0.3s ease;
}

.contact-link:hover {
  background: hsl(var(--primary) / 0.08);
}

.contact-link:hover .contact-value {
  color: hsl(var(--primary));
}

.contact-link .icon-circle {
  margin-bottom: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-color: hsl(var(--primary) / 0.3);
}

.contact-link:hover .icon-circle {
  background-color: hsl(var(--primary) / 0.1);
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.contact-label {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

.contact-value {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  transition: color 0.3s ease;
}

.hours-card {
  background: hsl(var(--background));
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  max-width: 24rem;
  width: 100%;
  margin: 0 auto;
}

.hours-card .eyebrow {
  margin-bottom: 1.5rem;
}

.hours-block {
  margin-bottom: 1rem;
}

.hours-day {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

.hours-time {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: hsl(var(--foreground));
  margin-top: 0.25rem;
}

.hours-divider {
  display: block;
  width: 2rem;
  height: 1px;
  background: hsl(var(--primary) / 0.3);
  margin: 1rem auto 0;
}

.hours-card .btn {
  margin-top: 2rem;
  width: 100%;
}

/* Footer */
.footer {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  color: hsl(var(--background) / 0.8);
  font-size: 1.25rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: hsl(var(--primary) / 0.5);
}

.footer-copy {
  font-size: 0.75rem;
  color: hsl(var(--background) / 0.4);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    text-align: left;
  }
}

/* Floating WhatsApp */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  border: 1px solid hsl(var(--primary) / 0.35);
  border-radius: 9999px;
  box-shadow: 0 10px 30px hsl(var(--foreground) / 0.2);
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.wa-fab:hover {
  transform: scale(1.05);
  border-color: hsl(var(--primary) / 0.6);
  box-shadow: 0 14px 40px hsl(var(--foreground) / 0.25);
}

.wa-fab svg {
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.wa-fab-text {
  display: none;
}

@media (min-width: 640px) {
  .wa-fab {
    padding: 0.875rem 1.5rem;
  }
  .wa-fab-text {
    display: inline;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* Entrance animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.8s ease-out forwards;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

.animate-delay-600 {
  animation-delay: 0.6s;
}

.animate-delay-800 {
  animation-delay: 0.8s;
}

.animate-delay-1000 {
  animation-delay: 1s;
}