/*
Theme Name: Accioli Inglês Jurídico
Theme URI: https://accioliinglesjuridico.com.br
Author: Accioli
Description: Tema premium para serviço de Inglês Jurídico de alto padrão. Estética luxury professional com paleta navy, gold e off-white.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: accioli
*/

/* ========================================
   CSS Variables / Design Tokens
   (Matched from React index.css)
   ======================================== */
:root {
  /* Core semantic tokens (HSL values from React) */
  --background: hsl(40, 33%, 97%);
  --foreground: hsl(220, 40%, 13%);
  --card: hsl(40, 20%, 98%);
  --card-foreground: hsl(220, 40%, 13%);
  --primary: hsl(220, 50%, 15%);
  --primary-foreground: hsl(40, 33%, 97%);
  --secondary: hsl(40, 20%, 93%);
  --secondary-foreground: hsl(220, 40%, 13%);
  --muted: hsl(220, 15%, 92%);
  --muted-foreground: hsl(220, 10%, 45%);
  --accent: hsl(30, 45%, 55%);
  --accent-foreground: hsl(40, 33%, 97%);
  --border: hsl(220, 15%, 88%);

  /* Custom brand tokens */
  --navy: hsl(220, 50%, 15%);
  --navy-light: hsl(220, 40%, 22%);
  --gold: hsl(30, 45%, 55%);
  --gold-light: hsl(35, 50%, 70%);
  --gold-dark: hsl(28, 40%, 42%);
  --cream: hsl(40, 33%, 97%);
  --cream-dark: hsl(40, 20%, 93%);

  --radius: 0.5rem;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-luxury: 0 4px 30px hsla(220, 50%, 15%, 0.08), 0 1px 3px hsla(220, 50%, 15%, 0.05);
  --shadow-gold: 0 4px 20px hsla(30, 45%, 55%, 0.2);
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

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

.container--narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--xs {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   Buttons (matching React)
   ======================================== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--accent-foreground);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--primary-foreground);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 1rem;
  border-radius: var(--radius);
  border: 1px solid hsla(30, 45%, 55%, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: hsla(30, 45%, 55%, 0.1);
}

/* ========================================
   Navbar (matching React Navbar.tsx)
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all 0.5s;
}

.site-header.scrolled {
  background: hsla(220, 50%, 15%, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-luxury);
  padding: 0.75rem 0;
}

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

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  letter-spacing: 0.05em;
}

@media (min-width: 769px) {
  .site-logo {
    font-size: 1.5rem;
  }
}

.site-logo span {
  color: var(--gold);
}

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

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  color: hsla(40, 33%, 97%, 0.8);
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: var(--accent-foreground) !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--accent-foreground) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-foreground);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: hsla(220, 50%, 15%, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-top: 1px solid var(--navy-light);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    font-size: 1rem;
  }

  .nav-cta {
    padding: 0.625rem 1.5rem;
  }

  .menu-toggle {
    display: block;
  }
}

/* ========================================
   Hero Section (matching React HeroSection.tsx)
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsla(220, 50%, 15%, 0.85) 0%,
    hsla(220, 50%, 15%, 0.7) 50%,
    hsla(220, 50%, 15%, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-tag {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: hsla(40, 33%, 97%, 0.8);
  font-family: var(--font-sans);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

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

/* Scroll indicator (matching React) */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid hsla(40, 33%, 97%, 0.3);
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: var(--gold);
}

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

/* ========================================
   Social Proof (matching React SocialProof.tsx)
   ======================================== */
.social-proof {
  padding: 4rem 0;
  background: var(--secondary);
}

.social-proof > .container > p {
  text-align: center;
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 769px) {
  .logos-grid {
    gap: 4rem;
  }
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item .logo-icon {
  color: var(--navy);
  font-size: 2rem;
}

.logo-item .logo-label {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: var(--muted-foreground);
}

/* ========================================
   Section Headers (shared pattern from React)
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--foreground);
}

/* ========================================
   Features / Diferenciais (matching React FeaturesGrid.tsx)
   ======================================== */
.features {
  padding: 6rem 0;
  background: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-luxury);
  transition: all 0.5s;
}

.feature-card:hover {
  border-color: hsla(30, 45%, 55%, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: hsla(220, 50%, 15%, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--gold);
  transition: background 0.3s;
}

.feature-card:hover .feature-icon {
  background: hsla(30, 45%, 55%, 0.1);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ========================================
   About / Sobre (matching React AboutSection.tsx)
   ======================================== */
.about {
  padding: 6rem 0;
  background: var(--secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .about-grid {
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-luxury);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  border: 2px solid hsla(30, 45%, 55%, 0.3);
  border-radius: var(--radius);
  z-index: -1;
}

.about-text .section-tag {
  text-align: left;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat .number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

@media (min-width: 769px) {
  .stat .number {
    font-size: 1.875rem;
  }
}

.stat .label {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* ========================================
   Pricing / Cursos (matching React PricingSection.tsx)
   ======================================== */
.pricing {
  padding: 6rem 0;
  background: var(--background);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-luxury);
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
}

.pricing-card.featured {
  background: var(--navy);
  color: var(--primary-foreground);
  border: 2px solid hsla(30, 45%, 55%, 0.3);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}

.pricing-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card .description {
  font-size: 0.875rem;
  font-family: var(--font-sans);
  margin-bottom: 1.5rem;
}

.pricing-card .description {
  color: var(--muted-foreground);
}

.pricing-card.featured .description {
  color: hsla(40, 33%, 97%, 0.7);
}

.pricing-card .price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.pricing-card .price span {
  font-size: 0.875rem;
  font-weight: 400;
}

.pricing-card .price span {
  color: var(--muted-foreground);
}

.pricing-card.featured .price span {
  color: hsla(40, 33%, 97%, 0.6);
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  margin-bottom: 0.75rem;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-card ul li {
  color: var(--muted-foreground);
}

.pricing-card.featured ul li {
  color: hsla(40, 33%, 97%, 0.85);
}

.btn-plan {
  width: 100%;
  padding: 0.875rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--navy);
  color: var(--primary-foreground);
}

.btn-plan:hover {
  background: var(--navy-light);
}

.pricing-card.featured .btn-plan {
  background: var(--gold);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured .btn-plan:hover {
  background: var(--gold-dark);
}

/* ========================================
   FAQ (matching React FAQSection.tsx)
   ======================================== */
.faq {
  padding: 6rem 0;
  background: var(--secondary);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-luxury);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  line-height: 1.7;
  font-size: 0.875rem;
}

/* ========================================
   Contact Section (matching React FooterSection.tsx)
   2-column: form + info sidebar
   ======================================== */
.contact {
  padding: 6rem 0;
  background: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  background: var(--card);
  color: var(--foreground);
  transition: all 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted-foreground);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsla(30, 45%, 55%, 0.3);
  border-color: hsla(30, 45%, 55%, 0.5);
}

.contact-form textarea {
  min-height: 140px;
  resize: none;
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: hsla(220, 50%, 15%, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.125rem;
}

.contact-info-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  font-family: var(--font-sans);
}

.contact-info-item span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: var(--font-sans);
}

/* ========================================
   Footer (matching React FooterSection.tsx)
   3-column: brand, links, newsletter
   ======================================== */
.site-footer {
  background: var(--navy);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.footer-col--brand h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.footer-col--brand h3 span {
  color: var(--gold);
}

.footer-col p {
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: hsla(40, 33%, 97%, 0.6);
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul a {
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: hsla(40, 33%, 97%, 0.5);
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

/* Newsletter in footer */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--navy-light);
  background: var(--navy-light);
  color: var(--primary-foreground);
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: hsla(40, 33%, 97%, 0.3);
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 1px hsla(30, 45%, 55%, 0.4);
}

.newsletter-form button {
  padding: 0.625rem 1rem;
  background: var(--gold);
  color: var(--accent-foreground);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button:hover {
  background: var(--gold-dark);
}

/* Footer bottom */
.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--navy-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 769px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  color: hsla(40, 33%, 97%, 0.4);
  font-family: var(--font-sans);
  font-size: 0.75rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  color: hsla(40, 33%, 97%, 0.4);
  transition: color 0.3s;
  font-size: 1.125rem;
}

.footer-social a:hover {
  color: var(--gold);
}

/* ========================================
   Animations (matching React)
   ======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}
