/* ==========================================================================
   PANORAMA BÍBLICO - PROFESSOR EDUARDO FARIA
   Design System Oficial: De Volta à Catequese (Paleta Azul Teológico Catedral)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS RESET & VARIÁVEIS DO SISTEMA (DESIGN TOKENS)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta Nobre Sacra: Pergaminho Nobre & Azul Catedral Profundo */
  --color-brand-bg: #f5eedf;
  --color-brand-bg-warm: #fbf7ef;
  --color-brand-primary: #0b172a;
  --color-brand-deep-blue: #050b14;
  --color-brand-surface: #10213b;
  --color-brand-accent: #c9a859;
  --color-brand-accent-glow: rgba(201, 168, 89, 0.3);
  --color-brand-dark: #0a0f18;
  --color-brand-card: rgba(11, 23, 42, 0.95);
  
  /* Tipografia */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Espaçamentos & Raios */
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2.5rem;
  --radius-4xl: 3.5rem;
}

html {
  scroll-behavior: smooth;
  font-size: 17.5px;
  background-color: var(--color-brand-bg);
  color: var(--color-brand-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--color-brand-bg);
  background-image: 
    radial-gradient(ellipse at 50% 0%, rgba(255, 253, 247, 0.8) 0%, rgba(240, 230, 213, 0.5) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  color: var(--color-brand-dark);
  overflow-x: hidden;
}

p {
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION (DOBRA 1 - 100% 100% SEM ZOOM & ALINHADO À ESQUERDA)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: url('../assets/bg-hero-panorama-biblico2.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding: 60px 0;
  overflow: hidden;
  text-align: left;
}

.hero-section__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
  z-index: 2;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.hero-content {
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}

.hero-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.hero-logo-img {
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  text-align: left;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.22rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250, 247, 240, 0.92);
  text-align: left;
  max-width: 580px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-cta-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding-top: 8px;
}

.hero-cta-btn,
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  background-color: var(--color-brand-accent);
  color: var(--color-brand-primary);
  padding: 16px 32px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 28px rgba(201, 168, 89, 0.25);
  text-align: center;
  max-width: 100%;
}

.hero-cta-btn:hover,
.cta-btn-primary:hover {
  background-color: var(--color-brand-bg);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(201, 168, 89, 0.35);
}

.hero-cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.15rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-image: url('../assets/bg-hero-panorama-biblico2-mobile.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100dvh;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    text-align: center;
  }

  .hero-section__container {
    height: 100%;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50dvh;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .hero-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    gap: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

  .hero-logo-wrapper {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-logo-img {
    max-width: 110px;
    max-height: 38px;
  }

  .hero-text-block {
    gap: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-title {
    font-size: 1.42rem;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  }

  .hero-subtitle {
    font-size: 0.82rem;
    line-height: 1.35;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  }

  .hero-cta-wrapper {
    padding-top: 4px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-cta-btn,
  .cta-btn-primary {
    width: 100%;
    padding: 13px 18px;
    font-size: 0.88rem;
    line-height: 1.3;
    justify-content: center;
    text-align: center;
    gap: 8px;
    letter-spacing: 0.02em;
  }

  .hero-cta-icon {
    width: 16px;
    height: 16px;
  }
}

/* --------------------------------------------------------------------------
   3. CLASSES UTILITÁRIAS ESSENCIAIS (TAILWIND COMPILADO / COMPONENTES)
   -------------------------------------------------------------------------- */
.card-pergaminho {
  background-color: rgba(253, 250, 243, 0.85);
  border: 1px solid rgba(201, 168, 89, 0.35);
  box-shadow: 0 4px 15px rgba(11, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-pergaminho:hover {
  background-color: #ffffff;
  border-color: rgba(201, 168, 89, 0.65);
  box-shadow: 0 10px 25px rgba(201, 168, 89, 0.15);
  transform: translateY(-2px);
}
.bg-brand-bg { 
  background-color: var(--color-brand-bg);
  background-image: 
    radial-gradient(ellipse at 50% 15%, rgba(255, 253, 247, 0.85) 0%, rgba(240, 230, 213, 0.6) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}
.bg-brand-primary { background-color: var(--color-brand-primary); }
.bg-brand-deep-blue { 
  background-color: var(--color-brand-deep-blue);
  background-image: 
    radial-gradient(ellipse at 50% 0%, rgba(16, 33, 59, 0.75) 0%, rgba(5, 11, 20, 0.98) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.025'/%3E%3C/svg%3E");
}
.bg-brand-surface { background-color: var(--color-brand-surface); }
.bg-brand-accent { background-color: var(--color-brand-accent); }
.bg-brand-dark { background-color: var(--color-brand-dark); }

.bg-brand-primary\/5 { background-color: rgba(11, 23, 42, 0.05); }
.bg-brand-primary\/10 { background-color: rgba(11, 23, 42, 0.1); }
.bg-brand-primary\/40 { background-color: rgba(11, 23, 42, 0.4); }
.bg-brand-primary\/50 { background-color: rgba(11, 23, 42, 0.5); }
.bg-brand-primary\/\[0\.01\] { background-color: rgba(11, 23, 42, 0.01); }
.bg-brand-primary\/\[0\.02\] { background-color: rgba(11, 23, 42, 0.02); }

.bg-brand-accent\/5 { background-color: rgba(201, 168, 89, 0.05); }
.bg-brand-accent\/10 { background-color: rgba(201, 168, 89, 0.1); }
.bg-brand-accent\/15 { background-color: rgba(201, 168, 89, 0.15); }
.bg-brand-accent\/20 { background-color: rgba(201, 168, 89, 0.2); }
.bg-brand-accent\/30 { background-color: rgba(201, 168, 89, 0.3); }

.from-brand-deep-blue\/60 { --tw-gradient-from: rgba(5, 11, 20, 0.6); }

/* Text Colors */
.text-brand-bg { color: #fbf7ef; }
.text-brand-bg\/40 { color: rgba(251, 247, 239, 0.4); }
.text-brand-bg\/50 { color: rgba(251, 247, 239, 0.5); }
.text-brand-bg\/60 { color: rgba(251, 247, 239, 0.6); }
.text-brand-bg\/75 { color: rgba(251, 247, 239, 0.75); }
.text-brand-bg\/80 { color: rgba(251, 247, 239, 0.8); }
.text-brand-bg\/85 { color: rgba(251, 247, 239, 0.85); }
.text-brand-bg\/90 { color: rgba(251, 247, 239, 0.9); }
.text-brand-bg\/95 { color: rgba(251, 247, 239, 0.95); }

.text-brand-primary { color: var(--color-brand-primary); }
.text-brand-accent { color: var(--color-brand-accent); }
.text-brand-dark { color: var(--color-brand-dark); }
.text-brand-dark\/50 { color: rgba(10, 15, 24, 0.5); }
.text-brand-dark\/70 { color: rgba(10, 15, 24, 0.7); }
.text-brand-dark\/80 { color: rgba(10, 15, 24, 0.8); }
.text-brand-dark\/85 { color: rgba(10, 15, 24, 0.85); }
.text-brand-dark\/95 { color: rgba(10, 15, 24, 0.95); }

/* Borders */
.border-brand-accent { border-color: var(--color-brand-accent); }
.border-brand-accent\/10 { border-color: rgba(201, 168, 89, 0.1); }
.border-brand-accent\/15 { border-color: rgba(201, 168, 89, 0.15); }
.border-brand-accent\/20 { border-color: rgba(201, 168, 89, 0.2); }
.border-brand-accent\/25 { border-color: rgba(201, 168, 89, 0.25); }
.border-brand-accent\/30 { border-color: rgba(201, 168, 89, 0.3); }
.border-brand-accent\/40 { border-color: rgba(201, 168, 89, 0.4); }

.border-brand-primary { border-color: var(--color-brand-primary); }
.border-brand-primary\/5 { border-color: rgba(15, 29, 51, 0.05); }
.border-brand-primary\/10 { border-color: rgba(15, 29, 51, 0.1); }
.border-brand-primary\/15 { border-color: rgba(15, 29, 51, 0.15); }
.border-brand-primary\/20 { border-color: rgba(15, 29, 51, 0.2); }

/* Tipografia Helpers */
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.font-mono { font-family: var(--font-mono); }

/* Layout & Containers */
.container, .max-w-6xl, .max-w-5xl, .max-w-4xl, .max-w-3xl, .max-w-2xl, .max-w-xl, .max-w-md, .max-w-sm {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }

/* Display & Flex/Grid */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }

/* Gaps */
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Padding & Margin */
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-\[10px\] { padding-top: 10px; padding-bottom: 10px; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-12 { padding-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-auto { margin-top: auto; }

/* Bordas & Arredondamentos */
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1.25rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-\[3rem\] { border-radius: 3rem; }
.rounded-\[4rem\] { border-radius: 4rem; }
.rounded-full { border-radius: 9999px; }
.rounded-t-\[3rem\] { border-top-left-radius: 3rem; border-top-right-radius: 3rem; }
.rounded-t-\[4rem\] { border-top-left-radius: 4rem; border-top-right-radius: 4rem; }

.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; }
.border-dashed { border-style: dashed; }

/* Sombras & Efeitos */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }
.shadow-brand-accent\/15 { box-shadow: 0 14px 30px rgba(201, 168, 89, 0.2); }

.blur-\[30px\] { filter: blur(30px); }
.blur-\[40px\] { filter: blur(40px); }
.blur-\[50px\] { filter: blur(50px); }
.blur-\[80px\] { filter: blur(80px); }
.blur-\[100px\] { filter: blur(100px); }
.blur-\[120px\] { filter: blur(120px); }

/* Aspect Ratio */
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }

/* Imagens & Objetos */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-top { object-position: top; }
.drop-shadow-md { filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)); }

/* Dimensões */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-\[200px\] { width: 200px; }
.w-\[250px\] { width: 250px; }
.w-\[300px\] { width: 300px; }
.w-\[320px\] { width: 320px; }
.w-\[350px\] { width: 350px; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-\[1px\] { height: 1px; }
.h-\[200px\] { height: 200px; }
.h-\[250px\] { height: 250px; }
.h-\[300px\] { height: 300px; }
.h-\[350px\] { height: 350px; }

/* Tipografia - Font Sizes & Weights Aumentados para Máxima Legibilidade */
.text-xs { font-size: 0.875rem; line-height: 1.35rem; }
.text-sm { font-size: 1.025rem; line-height: 1.65rem; }
.text-base { font-size: 1.15rem; line-height: 1.8rem; }
.text-lg { font-size: 1.28rem; line-height: 1.85rem; }
.text-xl { font-size: 1.4rem; line-height: 2rem; }
.text-2xl { font-size: 1.65rem; line-height: 2.25rem; }
.text-3xl { font-size: 2.05rem; line-height: 2.5rem; }
.text-4xl { font-size: 2.45rem; line-height: 2.75rem; }
.text-5xl { font-size: 3.25rem; line-height: 1.1; }
.text-6xl { font-size: 4rem; line-height: 1.1; }
.text-\[9px\] { font-size: 11px; }
.text-\[10px\] { font-size: 12px; }
.text-\[11px\] { font-size: 13px; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }

/* Posicionamento & Z-index */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-1\/2 { top: 50%; }
.top-1\/4 { top: 25%; }
.top-\[100px\] { top: 100px; }
.top-\[120px\] { top: 120px; }
.top-\[140px\] { top: 140px; }
.bottom-10 { bottom: 2.5rem; }
.bottom-1\/4 { bottom: 25%; }
.left-10 { left: 2.5rem; }
.left-1\/2 { left: 50%; }
.left-1\/4 { left: 25%; }
.right-10 { right: 2.5rem; }
.right-0 { right: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.select-none { user-select: none; }
.cursor-pointer { cursor: pointer; }
.whitespace-nowrap { white-space: nowrap; }

/* Animações e Transições */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.scale-\[0\.98\] { transform: scale(0.98); }
.scale-\[0\.99\] { transform: scale(0.99); }
.scale-\[1\.00\] { transform: scale(1); }
.scale-110 { transform: scale(1.1); }

/* Accordion Group Open */
.group-open\:rotate-180:is(:where(.group):is([open], :open) *) {
  transform: rotate(180deg);
}
.group-open\:bg-brand-primary:is(:where(.group):is([open], :open) *) {
  background-color: var(--color-brand-primary);
}
.group-open\:text-brand-accent:is(:where(.group):is([open], :open) *) {
  color: var(--color-brand-accent);
}
.group-open\:border-brand-primary:is(:where(.group):is([open], :open) *) {
  border-color: var(--color-brand-primary);
}

/* Hover States */
.hover\:bg-brand-primary:hover { background-color: var(--color-brand-primary); }
.hover\:bg-brand-bg:hover { background-color: var(--color-brand-bg); }
.hover\:bg-brand-primary\/10:hover { background-color: rgba(15, 29, 51, 0.1); }
.hover\:bg-brand-primary\/\[0\.01\]:hover { background-color: rgba(15, 29, 51, 0.01); }
.hover\:text-brand-bg:hover { color: var(--color-brand-bg); }
.hover\:text-brand-accent:hover { color: var(--color-brand-accent); }
.hover\:border-brand-accent\/30:hover { border-color: rgba(201, 168, 89, 0.3); }
.hover\:border-brand-accent\/40:hover { border-color: rgba(201, 168, 89, 0.4); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }

/* Media Queries Responsivas (Desktop / Tablet / Mobile) */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:w-auto { width: auto; }
  .sm\:inline-block { display: inline-block; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
}

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:w-\[320px\] { width: 320px; }
  .md\:w-auto { width: auto; }
  .md\:p-6 { padding: 1.5rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:gap-2 { gap: 0.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:text-left { text-align: left; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:h-14 { height: 3.5rem; }
  .md\:rounded-\[4rem\] { border-radius: 4rem; }
  .md\:rounded-t-\[4rem\] { border-top-left-radius: 4rem; border-top-right-radius: 4rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}