/* ============================================================
   RespondeHub — landing page (HTML/CSS/JS puro, sem build)
   ============================================================ */

:root {
  --brand: #10b981;      /* emerald-500 */
  --brand-600: #059669;
  --brand-400: #34d399;
  --brand-50: #ecfdf5;
  --ink: #111827;        /* gray-900 */
  --text: #374151;       /* gray-700 */
  --muted: #6b7280;      /* gray-500 */
  --line: #f3f4f6;       /* gray-100 */
  --line-200: #e5e7eb;
  --bg: #fafafa;
  --white: #fff;
  --radius: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-lg: 0 20px 40px -12px rgba(16, 24, 40, 0.12);
  --shadow-xl: 0 30px 60px -15px rgba(16, 24, 40, 0.2);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --maxw: 80rem;         /* max-w-7xl */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: #d1fae5; color: #065f46; }

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1rem;
}
.container-narrow { max-width: 56rem; }

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

.text-brand { color: var(--brand); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 1rem;
  padding: 1rem 1.75rem;
  font-size: 1.0625rem;
}
.btn:active { transform: scale(0.96); }
.btn i, .btn svg { width: 1.25rem; height: 1.25rem; }

.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 600; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-pill { border-radius: 999px; }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 24px -6px rgba(16, 185, 129, 0.35);
}
.btn-primary:hover { background: var(--brand-600); }

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-200);
}
.btn-outline:hover { background: #f9fafb; }

.btn-white { background: #fff; color: var(--brand-600); box-shadow: var(--shadow-xl); }
.btn-white:hover { background: var(--brand-50); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}
.navbar[data-scrolled="true"] {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { height: 2.25rem; width: auto; }
.navbar-links { display: none; align-items: center; gap: 2rem; }
.navbar-links > a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.navbar-links > a:not(.btn):hover { color: var(--brand); }

.navbar-toggle {
  display: inline-flex;
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  padding: 0.25rem;
}
.navbar-toggle i, .navbar-toggle svg { width: 1.5rem; height: 1.5rem; }

.navbar-mobile[hidden] { display: none; }
.navbar-mobile {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideDown 0.25s ease;
}
.navbar-mobile a:not(.btn) {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}
.navbar-mobile a:not(.btn):hover { color: var(--brand); }
.navbar-mobile-cta { width: 100%; border-radius: 0.75rem; padding: 0.75rem 1.25rem; }

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

@media (min-width: 768px) {
  .navbar-links { display: flex; }
  .navbar-toggle, .navbar-mobile { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: 12rem 0 8rem; } }

.hero-bg { position: absolute; inset: 0; z-index: -1; }
.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
}
.blob-1 {
  top: -10%; left: -10%;
  width: 40%; height: 40%;
  background: rgba(209, 250, 229, 0.3);
  animation: float1 8s ease-in-out infinite;
}
.blob-2 {
  bottom: 10%; right: -10%;
  width: 30%; height: 30%;
  background: rgba(209, 250, 229, 0.2);
  animation: float2 9s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(18px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.hero-content { text-align: center; max-width: 56rem; margin: 0 auto; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--brand-50);
  border: 1px solid #d1fae5;
  color: var(--brand-600);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.pulse { position: relative; display: inline-flex; width: 0.5rem; height: 0.5rem; }
.pulse-ping {
  position: absolute; inset: 0;
  border-radius: 999px;
  background: var(--brand-400);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.pulse-dot { position: relative; width: 0.5rem; height: 0.5rem; border-radius: 999px; background: var(--brand); }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 2rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-actions .btn { width: 100%; }

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

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
}
.chip {
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line-200);
  font-size: 0.875rem;
  color: var(--text);
}

.hero-shot { position: relative; max-width: 64rem; margin: 0 auto; }
.hero-shot-glow {
  position: absolute;
  inset: -0.25rem;
  border-radius: 2.5rem;
  background: linear-gradient(to right, var(--brand), #14b8a6);
  filter: blur(16px);
  opacity: 0.2;
}
.hero-shot-frame {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-shot-frame img { width: 100%; height: auto; object-fit: cover; }

/* ---------- Ícones de canais flutuantes ---------- */
.channel-float {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.channel-float img { width: 1.875rem; height: 1.875rem; display: block; }
@media (min-width: 768px) {
  .channel-float { display: flex; }
}
.channel-float--whatsapp { top: -1.5rem; left: -1.25rem; animation: channelFloat1 6s ease-in-out infinite; }
.channel-float--instagram { top: 30%; right: -1.75rem; animation: channelFloat2 7s ease-in-out infinite; }
.channel-float--facebook { bottom: -1.5rem; left: 12%; animation: channelFloat1 8s ease-in-out infinite 0.5s; }

@keyframes channelFloat1 { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(-4deg); } }
@keyframes channelFloat2 { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(14px) rotate(4deg); } }

.channel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.channel-row .channel-float { position: static; display: flex; animation: none; width: 3rem; height: 3rem; border-radius: 1rem; }
.channel-row .channel-float img { width: 1.5rem; height: 1.5rem; }

/* ---------- Seções ---------- */
.section { padding: 6rem 0; }
.section-white { background: var(--white); }
.section-mint { background: rgba(236, 253, 245, 0.5); }
.section-mint-soft { background: rgba(236, 253, 245, 0.3); }

.section-head { text-align: center; max-width: 48rem; margin: 0 auto 5rem; }
.container-narrow .section-head { margin-bottom: 4rem; }

.eyebrow {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.25rem);
  color: var(--ink);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.section-lead { font-size: 1.125rem; color: var(--text); margin: 0; }

/* ---------- Cards de recursos ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -16px rgba(16, 185, 129, 0.12);
}
.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--brand-50);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-icon i, .feature-icon svg { width: 1.5rem; height: 1.5rem; color: var(--brand); }
.feature-card h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: 0.75rem; }
.feature-card p { color: var(--text); line-height: 1.65; margin: 0; }

/* ---------- Passos ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.steps-line { display: none; }
@media (min-width: 1024px) {
  .steps-line {
    display: block;
    position: absolute;
    top: 2rem;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #d1fae5;
    z-index: -1;
  }
}

.step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-num {
  width: 4rem;
  height: 4rem;
  background: var(--white);
  border: 2px solid #d1fae5;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand);
  transition: border-color 0.3s ease;
}
.step:hover .step-num { border-color: var(--brand); }
.step h3 { font-size: 1.125rem; color: var(--ink); margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; color: var(--text); max-width: 220px; margin: 0; }

/* ---------- Depoimentos ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial {
  padding: 2rem;
  background: #f9fafb;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.testimonial-stars i, .testimonial-stars svg { width: 1.25rem; height: 1.25rem; color: var(--brand); fill: var(--brand); }
.testimonial-text { font-size: 1.125rem; color: var(--text); font-style: italic; margin: 0 0 2rem; line-height: 1.65; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background: #d1fae5;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-600);
  font-weight: 700;
}
.testimonial-author h4 { color: var(--ink); font-size: 1rem; }
.testimonial-author p { font-size: 0.875rem; color: var(--muted); margin: 0; }

/* ---------- Planos ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: center; } }

.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) {
  .pricing-card.popular { transform: scale(1.05); z-index: 10; }
}
.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-head { margin-bottom: 2rem; }
.pricing-name { font-size: 1.25rem; margin-bottom: 0.5rem; }
.pricing-card.popular .pricing-name { color: #fff; }
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; }
.pricing-price strong { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; }
.pricing-price span { font-size: 0.875rem; color: var(--muted); }
.pricing-card.popular .pricing-price span { color: #9ca3af; }

.pricing-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; flex-grow: 1; }
.pricing-list .row { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; }
.pricing-list .row.strong { font-weight: 500; }
.pricing-list i, .pricing-list svg { width: 1.25rem; height: 1.25rem; color: var(--brand); flex-shrink: 0; }
.pricing-card.popular .pricing-list i, .pricing-card.popular .pricing-list svg { color: var(--brand-400); }
.pricing-divider { height: 1px; width: 100%; background: var(--line); }
.pricing-card.popular .pricing-divider { background: #1f2937; }

.pricing-card .btn {
  width: 100%;
  padding: 1rem;
  border-radius: 1rem;
}
.pricing-card:not(.popular) .btn { background: var(--line); color: var(--ink); box-shadow: none; }
.pricing-card:not(.popular) .btn:hover { background: var(--line-200); }

/* ---------- FAQ ---------- */
.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 2rem;
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--brand); }
.faq-q i, .faq-q svg { width: 1.25rem; height: 1.25rem; color: var(--muted); flex-shrink: 0; transition: transform 0.3s ease, color 0.2s ease; }
.faq-item.open .faq-q i, .faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--brand); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-a p { padding: 0 0 1.5rem; color: var(--text); line-height: 1.65; margin: 0; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: var(--brand-600);
  border-radius: 3rem;
  overflow: hidden;
  padding: 3rem 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) { .cta { padding: 5rem; } }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg::before, .cta-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
}
.cta-bg::before { top: -20%; left: -10%; width: 50%; height: 50%; background: rgba(255, 255, 255, 0.1); }
.cta-bg::after { bottom: -20%; right: -10%; width: 50%; height: 50%; background: rgba(52, 211, 153, 0.2); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(2rem, 5vw, 3rem); color: #fff; margin-bottom: 2rem; }
.cta p { font-size: 1.25rem; color: #d1fae5; max-width: 42rem; margin: 0 auto 3rem; }
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }
.cta-guarantee { display: inline-flex; align-items: center; gap: 0.5rem; color: #d1fae5; font-size: 0.875rem; font-weight: 500; }
.cta-guarantee i, .cta-guarantee svg { width: 1.25rem; height: 1.25rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #9ca3af; padding: 5rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-logo { height: 3rem; width: auto; margin-bottom: 1.5rem; }
.footer-about p { max-width: 28rem; margin: 0 0 2rem; line-height: 1.65; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: #1f2937;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { background: var(--brand); color: #fff; }
.footer-social i, .footer-social svg { width: 1.25rem; height: 1.25rem; }

.footer h4 { color: #fff; margin-bottom: 1.5rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; }
.footer ul li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer ul li i, .footer ul li svg { width: 1rem; height: 1rem; color: var(--brand); flex-shrink: 0; margin-top: 0.15rem; }
.footer ul a { text-decoration: none; transition: color 0.2s ease; }
.footer ul a:hover { color: #fff; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { text-decoration: none; transition: color 0.2s ease; }
.footer-legal a:hover { color: #fff; }

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 18px 30px -8px rgba(6, 78, 59, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.05); }
.wa-float svg { width: 2rem; height: 2rem; fill: #fff; }

/* ---------- Banner de Cookies ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--line-200);
  box-shadow: 0 -12px 30px -12px rgba(16, 24, 40, 0.15);
  padding: 1.25rem 1rem;
  animation: cookieSlideUp 0.4s ease;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.cookie-banner-inner p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 52rem;
}
.cookie-banner-inner a { color: var(--brand-600); font-weight: 600; text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .cookie-banner-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@keyframes cookieSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* ---------- Animações de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.05s; }
.reveal[data-delay="2"] { transition-delay: 0.1s; }
.reveal[data-delay="3"] { transition-delay: 0.15s; }
.reveal[data-delay="4"] { transition-delay: 0.2s; }
.reveal[data-delay="5"] { transition-delay: 0.25s; }
.reveal[data-delay="6"] { transition-delay: 0.3s; }
.reveal[data-delay="7"] { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
