/* ==========================================================================
   LUME - Premium CSS Stylesheet
   Mobile First, Modern Wellbeing Aesthetics
   ========================================================================== */

/* ── Awesome Serif ── */
@font-face {
  font-family: "Awesome Serif";
  src: url("assets/fonts/Awesome Serif VAR-VF.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Awesome Serif";
  src: url("assets/fonts/Awesome Serif Italic VAR-VF.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
}

/* ── SF Pro Display ── */
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/SF-PRO-DISPLAY-THIN.OTF") format("opentype");
  font-weight: 100;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/SF-PRO-DISPLAY-ULTRALIGHT.OTF") format("opentype");
  font-weight: 200;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/SF-PRO-DISPLAY-LIGHT.OTF") format("opentype");
  font-weight: 300;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/SF-PRO-DISPLAY-REGULAR.OTF") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/SF-PRO-DISPLAY-MEDIUM.OTF") format("opentype");
  font-weight: 500;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/SF-PRO-DISPLAY-SEMIBOLD.OTF") format("opentype");
  font-weight: 600;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/SF-PRO-DISPLAY-BOLD.OTF") format("opentype");
  font-weight: 700;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/SF-PRO-DISPLAY-HEAVY.OTF") format("opentype");
  font-weight: 800;
}
@font-face {
  font-family: "SF Pro Display";
  src: url("assets/fonts/SF-PRO-DISPLAY-BLACK.OTF") format("opentype");
  font-weight: 900;
}

/* --- VARIÁVEIS DE DESIGN (DESIGN TOKENS) --- */
:root {
  /* Colors */
  --primary: #9955bc;
  /* Brand Purple */
  --primary-dark: #7a4496;
  /* Deep Purple for hover */
  --primary-light: #b37acc;
  --primary-soft: #e0d5e8;
  /* Very subtle purple */
  --secondary: #383838;
  /* Brand Grafite */
  --accent: #ffc557;
  /* Amarelo LUME */
  --accent-light: #ffd88a;

  /* Brand Fundos Alternados */
  --bg-gray: #eaeaea;
  /* Cinza de Descanso */
  --bg-beige-dark: #bfad95;
  /* Bege Escuro */
  --bg-beige-light: #d8cfc6;
  /* Bege Claro */

  --bg-color: var(--bg-gray);
  /* Default Background */
  --bg-light: #fbf9f6;
  --bg-dark: #383838;

  --text-main: #383838;
  /* Grafite rigoroso */
  --text-light: #70675f;
  --text-muted: #aba29a;
  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.06);

  /* Typography */
  --font-body:
    "-apple-system", "BlinkMacSystemFont", "SF Pro Display", "Helvetica Neue",
    sans-serif;
  --font-display:
    "-apple-system", "BlinkMacSystemFont", "SF Pro Display", "Helvetica Neue",
    sans-serif;
  --font-accent: "Awesome Serif", serif;

  /* Shadows & Glassmorphism - Premium Glowing Upgrade */
  --shadow-sm: 0 4px 6px rgba(48, 36, 62, 0.03), 0 1px 3px rgba(0, 0, 0, 0.05);
  /* Suavizada */
  --shadow-md: 0 10px 30px rgba(48, 36, 62, 0.06);
  --shadow-lg: 0 20px 40px rgba(48, 36, 62, 0.1);
  --shadow-floating: 0 15px 50px rgba(153, 85, 188, 0.18);
  /* Brilho suave */
  --glass-bg: rgba(255, 255, 255, 0.65);

  /* Spacing */
  --space-0: 0;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-8: 6rem;

  /* Radii - Ultra Round Elements */
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --radius-xl: 40px;
  --radius-button: 100px;

  /* Transitions - Breathing Rhythm */
  --trans-fast: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --trans-smooth: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- RESETS E ESTILOS GERAIS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
.eyebrow {
  font-family: var(--font-display);
  color: var(--secondary);
  line-height: 1.2;
}

.headline {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}

.huge-headline {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.03em;
}

.subheadline {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--space-4);
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.serif-italic {
  font-family: var(--font-accent);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--primary);
  /* highlight word in purple natively */
}

/* Beautiful rounded soft text wrapper */
.pattern-break {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--secondary);
  margin-bottom: var(--space-4);
  background: var(--bg-light);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.large-hook {
  font-size: 1.7rem;
  font-weight: 500;
}

p {
  margin-bottom: var(--space-3);
}

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

/* --- Layout & Utilities --- */
.container {
  width: 100%;
  padding: 0 var(--space-3);
  margin: 0 auto;
}

.section {
  padding: var(--space-6) 0;
  position: relative;
}

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

.bg-beige-light {
  background-color: var(--bg-beige-light);
  color: var(--secondary);
}

.bg-beige-dark {
  background-color: var(--bg-beige-dark);
  color: var(--white);
}

.bg-beige-dark h2,
.bg-beige-dark h3,
.bg-beige-dark h4 {
  color: var(--white);
}

.bg-beige-dark .subheadline {
  color: #fbf9f6;
}

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

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

.bg-dark h2,
.bg-dark h3 {
  color: var(--white);
}

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

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

.text-light {
  color: var(--white);
}

.text-sm {
  font-size: 0.875rem;
}

.text-muted {
  color: var(--text-light);
}

.mt-2 {
  margin-top: var(--space-2);
}

.mt-3 {
  margin-top: var(--space-3);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-5 {
  margin-top: var(--space-5);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.d-inline-block {
  display: inline-block;
}

.w-full {
  width: 100%;
}

.max-w-md {
  max-width: 600px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- BOTÕES PREMIUM (LIQUID GLASS EFFECT) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 100px;
  /* Perfecly round pill */
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  text-align: center;
  width: 100%;
  /* Mobile thumb-reach */
  margin-bottom: var(--space-2);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;

  /* Core Liquid Engine */
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  z-index: 1;
}

/* Liquid sweep/lighting organic effect */
.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.7) 0%,
    transparent 60%
  );
  transform: scale(0);
  opacity: 0;
  transition:
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.5s ease;
  z-index: -1;
  pointer-events: none;
}

.btn:hover::after {
  transform: scale(1);
  opacity: 0.5;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-main);
  border: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(255, 197, 87, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px);
  background: var(--accent-light);
  box-shadow: 0 15px 40px rgba(255, 197, 87, 0.3);
}

.btn-secondary {
  /* Fusão do Branco para o Roxo translúcido super leve */
  background: rgba(255, 255, 255, 0.55);
  color: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.9),
    inset 0 -2px 6px rgba(153, 85, 188, 0.1),
    0 8px 25px rgba(153, 85, 188, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 1),
    inset 0 -2px 6px rgba(153, 85, 188, 0.05),
    0 15px 35px rgba(153, 85, 188, 0.15);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary);
}

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

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* ==========================================================================
   MASTER UX TOOLKIT (Ported from Tailwind ESB/Líderes LPs)
   ========================================================================== */
.parallax-wash {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.parallax-wash::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(251, 249, 246, 0.85);
  /* bg-brand-light/85 */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 0;
}

.parallax-wash > * {
  position: relative;
  z-index: 1;
}

.organic-frame {
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  overflow: hidden;
  box-shadow: var(--shadow-floating);
  position: relative;
}

.glass-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--bg-light);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(153, 85, 188, 0.1);
  z-index: 2;
  padding: 20px;
  line-height: 1.1;
}

.climax-blend {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.climax-blend::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(56, 56, 56, 0.5);
  /* Brand Main */
  mix-blend-mode: multiply;
  z-index: 0;
}

.climax-blend::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(56, 56, 56, 0.8), transparent);
  z-index: 0;
}

.climax-blend > * {
  position: relative;
  z-index: 1;
}

.climax-blend h2,
.climax-blend p,
.climax-blend .headline {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-glass-premium {
  border-bottom: none !important;
}

/* ==========================================================================
   MASTER UX ANIMATION & RESPONSIVE FIXES
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1),
    transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .huge-headline {
    font-size: clamp(2.5rem, 8vw, 3.5rem) !important;
    letter-spacing: -0.02em;
  }

  .headline {
    font-size: clamp(2rem, 6vw, 2.5rem) !important;
  }

  .bento-grid {
    flex-direction: column;
  }

  .full-screen-flex {
    padding: 40px 15px !important;
    text-align: center;
  }
}

/* --- NAVBAR (FLOATING PILL & GLASSMORPHISM) --- */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all var(--trans-smooth);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 15px;
}

/* Mobile Dropdown Menu */
.nav-links {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: 30px 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity var(--trans-smooth),
    visibility var(--trans-smooth),
    transform var(--trans-smooth);
}

.nav-links.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links > a.text-primary {
  color: var(--primary) !important;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--secondary);
  transition: color var(--trans-smooth);
  white-space: nowrap;
  /* IMPEDE A QUEBRA DE TEXTO */
}

.nav-links a:hover {
  color: var(--primary);
  /* Hover roxinho */
}

.nav-links a.btn {
  font-size: 1rem;
  color: var(--white);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--trans-fast);
  border-radius: 2px;
}

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

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

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

/* ==========================================================================
   DESKTOP MEDIA QUERIES (Min-Width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
  .headline {
    font-size: 3rem;
  }

  .huge-headline {
    font-size: 4rem;
  }

  .subheadline {
    font-size: 1.25rem;
  }

  .container {
    max-width: 1200px;
    padding: 0 var(--space-5);
  }

  .btn {
    width: auto;
    margin-bottom: 0;
  }

  .hero-ctas {
    flex-direction: row;
    gap: var(--space-3);
  }

  /* Navigation Desktop Override (Proteção Anti-Quebra) */
  .mobile-menu-toggle {
    display: none;
  }

  .navbar {
    top: 30px;
    width: calc(100% - 40px);
    max-width: 1100px;
    /* Alargado para caber todos os links */
  }

  .navbar-inner {
    height: 70px;
    padding: 0 24px;
  }

  .nav-links {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    transform: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    gap: clamp(1rem, 2vw, 2rem);
    /* O gap encolhe se a tela apertar */
  }

  .nav-links a {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    /* A fonte encolhe se a tela apertar */
    white-space: nowrap;
    /* REGRA DE OURO: não quebra linha nunca */
  }

  .brand-statement.desktop-only {
    display: block;
    font-size: 1.25rem;
    max-width: 800px;
    margin-bottom: var(--space-4);
  }

  .brand-declaration {
    max-width: 600px;
  }

  /* Grids */
  .cards-grid,
  .pillars-grid,
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    flex-direction: row;
  }

  .dimensions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .diff-item {
    border-bottom: none;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .data-blocks {
    flex-direction: row;
  }

  .data-group {
    flex: 1;
  }

  /* Footer */
  .footer-top {
    display: flex;
    justify-content: space-between;
  }

  .footer-links {
    margin: 0;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 500px;
  }

  /* Master UX Assymetric Grid */
  .bento-span-12 {
    grid-column: span 12;
  }

  .bento-span-7 {
    grid-column: span 7;
  }

  .bento-span-5 {
    grid-column: span 5;
  }
}

@media (min-width: 1200px) {
  .navbar {
    max-width: 1200px;
  }
}

/* Extra Desktop Fixes */
@media (min-width: 1024px) {
  .hero {
    min-height: 90vh;
  }

  .b2b-moment-1,
  .b2b-moment-2 {
    display: flex;
    gap: var(--space-6);
    align-items: center;
  }

  .b2b-moment-1 > *,
  .b2b-moment-2 > * {
    flex: 1;
  }

  .b2b-moment-2 {
    flex-direction: row-reverse;
  }

  .esb-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

/* --- SEC 01 Hero --- */
.hero {
  padding-top: 120px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(153, 85, 188, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 0% 100%,
      rgba(255, 197, 87, 0.05) 0%,
      transparent 40%
    ),
    linear-gradient(180deg, var(--white) 0%, var(--primary-soft) 100%);
}

.brand-statement.desktop-only {
  display: none;
  /* hidden on mobile per brief */
}

.brand-declaration {
  background: var(--white);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-style: italic;
  font-family: var(--font-accent);
  color: var(--secondary);
  margin-top: var(--space-2);
}

.microcopy {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-top: var(--space-2);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-4);
}

/* --- SEC 02: O Que é a LUME --- */
.integrated-delivery {
  list-style: none;
  margin: var(--space-3) 0;
}

.integrated-delivery li {
  background: var(--white);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-2);
  border-left: 4px solid var(--accent);
}

.highlight-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--primary-dark);
  text-align: center;
  margin: var(--space-4) 0;
}

.cta-early {
  margin-top: var(--space-4);
}

/* --- SEC 03: Para Quem --- */
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.card {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--trans-smooth),
    box-shadow var(--trans-smooth);
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--primary);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-floating);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

.card p {
  flex-grow: 1;
}

.card-link {
  margin-top: var(--space-3);
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link span {
  transition: transform var(--trans-fast);
}

.card-link:hover span {
  transform: translateX(4px);
}

/* --- BENTO GRID SYSTEM --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
  margin-bottom: var(--space-5);
}

.bento-box {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--trans-smooth),
    box-shadow var(--trans-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  grid-column: span 12;
  /* Default mobile full width */
}

.bento-box:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-floating);
}

.bento-yellow {
  background-color: var(--accent);
  color: var(--secondary);
  border-color: rgba(0, 0, 0, 0.05);
}

.bento-yellow .bento-title {
  color: var(--secondary);
}

.bento-image-bg {
  padding: 0;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
}

.bento-image-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s ease;
}

.bento-image-bg:hover img {
  transform: scale(1.05);
}

.bento-overlay-content {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  padding: var(--space-4);
  color: var(--white);
}

.bento-glass {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .bento-box-4 {
    grid-column: span 4;
  }

  .bento-box-6 {
    grid-column: span 6;
  }

  .bento-box-8 {
    grid-column: span 8;
  }

  .bento-box-12 {
    grid-column: span 12;
  }
}

/* --- SEC 05: Como funciona --- */
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.step {
  position: relative;
  padding-left: var(--space-4);
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
}

.step::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 24px;
  bottom: -30px;
  width: 2px;
  background: var(--primary-light);
  opacity: 0.3;
}

.step:last-child::after {
  display: none;
}

.experiential-line {
  margin-top: var(--space-5);
  font-size: 1.25rem;
  font-family: var(--font-accent);
  text-align: center;
  color: var(--primary-dark);
}

/* --- SEC 06: Pilares --- */
.pillars-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pillar {
  padding: var(--space-3);
  background: var(--primary-soft);
  border-radius: var(--radius-md);
}

.pillar h3 {
  color: var(--primary);
}

/* --- SEC 07: Diferenciais --- */
.diff-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.diff-item {
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-item:last-child {
  border-bottom: none;
}

.diff-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: var(--space-1);
}

.diff-footer {
  margin-top: var(--space-4);
  font-size: 0.875rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-3);
}

/* --- SEC 08: Impacto --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.stat-card {
  background: var(--primary-soft);
  padding: var(--space-3);
  text-align: center;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  border: 1px solid var(--border);
}

.stat-card.primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.stat-card.primary .stat-number {
  color: var(--white);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: lowercase;
}

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

.data-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.data-list {
  list-style: none;
}

.data-list li {
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border);
}

.data-list strong {
  font-size: 1.5rem;
  color: var(--primary);
  display: block;
  font-family: var(--font-display);
}

.data-list small {
  display: block;
  color: var(--text-light);
  font-size: 0.75rem;
  margin-top: 4px;
}

.card-distinct {
  background: var(--white);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}

.citation {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
}

/* --- SEC 09: Brand Beat --- */
.brand-bg {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
}

.brand-beat .huge-headline {
  color: var(--white);
}

.beat-body {
  font-size: 1.125rem;
  line-height: 1.8;
}

/* --- SEC 10: Depoimentos --- */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

blockquote {
  background: var(--white);
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-style: italic;
  font-family: var(--font-accent);
  position: relative;
}

blockquote::before {
  content: '"';
  font-family: serif;
  font-size: 4rem;
  color: var(--primary-soft);
  position: absolute;
  top: -10px;
  left: 10px;
}

cite {
  display: block;
  margin-top: var(--space-2);
  font-style: normal;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: var(--font-display);
}

/* --- SEC 11 & 12: B2B / ESB --- */
.b2b-benefits ul,
.esb-specs,
.esb-benefits ul {
  list-style: none;
}

.b2b-benefits li,
.esb-specs li,
.esb-benefits li {
  margin-bottom: var(--space-2);
  padding-left: 24px;
  position: relative;
}

.b2b-benefits li::before,
.esb-specs li::before,
.esb-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.clean-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clean-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.b2b-divider {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: var(--space-5) 0;
}

/* --- SEC 13: Team --- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.team-member {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--accent);
}

.team-member h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.team-member .role {
  display: inline-block;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: var(--space-2);
}

.credentials {
  list-style: none;
  margin-top: var(--space-2);
  font-size: 0.85rem;
  color: var(--text-light);
}

.credentials li {
  margin-bottom: 4px;
}

/* --- SEC 14: Metodologia --- */
.logos-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 2;
  font-weight: 500;
}

/* --- Footer Master UX (Santuário de Acolhimento) --- */
.footer {
  background: var(--bg-beige-light);
  padding: var(--space-8) 0 var(--space-3) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}

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

.footer-brand .tagline {
  font-family: var(--font-display);
  color: var(--primary-dark);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin-bottom: var(--space-3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-weight: 500;
  color: var(--text-main);
  opacity: 0.8;
  transition:
    opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  display: inline-block;
  width: fit-content;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: var(--space-2);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  color: var(--primary-dark);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-links a:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(153, 85, 188, 0.1);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.legal-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.legal-links {
  display: flex;
  gap: var(--space-3);
}

.legal-links a {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--primary);
}

.flex-align-center {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.filter-grayscale {
  filter: brightness(0.8) contrast(1.2);
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 27, 45, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--trans-smooth);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-light);
  transition: color var(--trans-fast);
}

.modal-close:hover {
  color: var(--secondary);
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition:
    border-color var(--trans-fast),
    box-shadow var(--trans-fast);
  background: var(--bg-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.hidden {
  display: none;
}

/* --- Animations (Scroll Reveal - Premium Version) --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  /* Leve queda natural */
  filter: blur(8px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  /* Ritmo de respiração Lume */
  will-change: opacity, transform, filter;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* --- Hub Hero Modernizado --- */
.hero-hub {
  padding-top: 120px;
  min-height: 85vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: var(--bg-color);
  /* Sand background */
}

.hero-hub-text {
  flex: 1;
  padding-right: var(--space-4);
  z-index: 10;
}

.hero-hub-image-wrapper {
  flex: 1;
  position: absolute;
  right: -5%;
  bottom: 0;
  height: 90%;
  width: 55%;
  z-index: 1;
  mask-image: linear-gradient(to right, transparent, black 30%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
}

.hero-hub-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 50% 0 0 50% / 10% 0 0 10%;
  /* Soft organic shape */
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-hub {
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
  }

  .hero-hub-text {
    padding-top: 20%;
    text-align: center;
    padding-right: 0;
  }

  .hero-hub-image-wrapper {
    position: relative;
    width: 100%;
    right: 0;
    height: 50vh;
    mask-image: none;
    -webkit-mask-image: none;
    margin-top: var(--space-4);
  }

  .hero-hub-image-wrapper img {
    border-radius: 20px;
  }
}

.hero-b2c {
  background:
    linear-gradient(
      180deg,
      rgba(244, 241, 235, 0.7) 0%,
      rgba(244, 241, 235, 1) 100%
    ),
    url("assets/mulher_meditando.jpg") center/cover no-repeat;
}

.hero-b2b {
  background:
    linear-gradient(
      180deg,
      rgba(244, 241, 235, 0.6) 0%,
      rgba(244, 241, 235, 1) 100%
    ),
    url("assets/mulher_bem_estar.jpg") center 20% / cover no-repeat;
}

.hero-esb {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(153, 85, 188, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, var(--bg-color) 0%, var(--bg-light) 100%);
}

.img-fluid-rounded {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

/* --- Cinematic & Editorial Layout --- */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  margin: var(--space-6) 0;
}

@media (min-width: 1024px) {
  .editorial-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

.editorial-img-wrapper {
  position: relative;
  width: 100%;
}

.editorial-img {
  width: 100%;
  height: clamp(350px, 60vh, 650px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.editorial-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-floating);
}

.scrollytelling-center {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-5) 0;
  max-width: 900px;
  margin: 0 auto;
}

.scrollytelling-center .headline {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
}

.glass-dashboard {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.glass-dashboard::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 60%
  );
  transform: rotate(30deg);
  pointer-events: none;
}

/* ==========================================================================
   PAGE TRANSITIONS & AOS (Global Utilities)
   ========================================================================== */

/* Page Transitions */
body {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

body.loaded {
  opacity: 1;
}

body.exiting {
  opacity: 0;
}

/* Base AOS styles to decouple it from inline tags */
.aos-init {
  opacity: 0;
  will-change: opacity, transform;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-duration: 1.2s;
}

.aos-fade-up {
  transform: translateY(50px);
}

.aos-fade-left {
  transform: translateX(50px);
}

.aos-fade-right {
  transform: translateX(-50px);
}

.aos-zoom-in {
  transform: scale(0.95);
}

.aos-delay-100 {
  transition-delay: 100ms;
}

.aos-delay-200 {
  transition-delay: 200ms;
}

.aos-delay-300 {
  transition-delay: 300ms;
}

.aos-delay-400 {
  transition-delay: 400ms;
}

.aos-init.aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

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

/* ==========================================================================
   TAILWIND UTILITY EXTENSIONS
   ========================================================================== */

.glass-pill {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.btn-lume {
  padding: 18px 40px;
  border-radius: 100px;
  font-size: 1.15rem;
  font-weight: 600;
  transition: all 0.5s ease;
}

.btn-nav-light {
  background-color: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 100px;
  transition: all var(--trans-fast);
  border: 1px solid transparent;
}

.btn-nav-light:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(153, 85, 188, 0.2);
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

body.loaded {
  opacity: 1;
}

body.exiting {
  opacity: 0;
}

/* Base AOS styles to decouple it from inline tags */
.aos-init {
  opacity: 0;
  will-change: opacity, transform;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-duration: 1.2s;
}

.aos-fade-up {
  transform: translateY(50px);
}

.aos-fade-left {
  transform: translateX(50px);
}

.aos-fade-right {
  transform: translateX(-50px);
}

.aos-zoom-in {
  transform: scale(0.95);
}

.aos-delay-100 {
  transition-delay: 100ms;
}

.aos-delay-200 {
  transition-delay: 200ms;
}

.aos-delay-300 {
  transition-delay: 300ms;
}

.aos-delay-400 {
  transition-delay: 400ms;
}

.aos-init.aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

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

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}

.tags li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.tags li:not(:last-child)::after {
  content: "·";
  margin: 0 6px;
}

.team-lume-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 1100px) {
  .team-lume-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 650px) {
  .team-lume-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.editorial-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  aspect-ratio: 3/4;
  cursor: pointer;
  background: #000;
}

.editorial-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1s ease,
    filter 1s ease,
    opacity 1s ease;
  filter: grayscale(100%);
  opacity: 0.6;
}

.editorial-img.fernanda {
  object-position: top;
}

.editorial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.4),
    transparent
  );
  transition: opacity 0.5s ease;
}

.editorial-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.editorial-text-wrap {
  position: relative;
  z-index: 10;
  transform: translateY(16px);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.editorial-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 4px;
}

.editorial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.editorial-role {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 500;
  margin: 0;
}

.editorial-link {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
  display: inline-flex;
}

.editorial-link:hover {
  color: var(--accent);
}

.editorial-cv {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 300;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition:
    max-height 0.7s ease,
    opacity 0.7s ease,
    margin-top 0.7s ease;
}

/* HOVER STATES */
.editorial-card:hover .editorial-img {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}

.editorial-card:hover .editorial-img.liane {
  opacity: 0.9;
}

.editorial-card:hover .editorial-text-wrap {
  transform: translateY(0);
}

.editorial-card:hover .editorial-meta,
.editorial-modal .editorial-meta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.editorial-card:hover .editorial-cv {
  opacity: 1;
  max-height: 200px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .editorial-img {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 1;
  }

  .editorial-img.liane {
    opacity: 0.9;
  }

  .editorial-text-wrap {
    transform: translateY(0);
  }

  .editorial-meta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .editorial-cv {
    opacity: 1;
    max-height: 200px;
    margin-top: 24px;
  }
}
