﻿/* ============================================================
   BOZZ ACADEMY — FORMAÇÃO DE CORTE
   Design System & Styles — Refined Proportions
   ============================================================ */

/* ========================
   DESIGN TOKENS
   ======================== */
:root {
  --black: #0A0A0A;
  --off-black: #141414;
  --off-black-2: #1A1A1A;
  --white: #F5F5F0;
  --gray: #8A8A8A;
  --gray-light: #B8B8B8;
  --gray-dark: #3A3A3A;
  --gold: #C9A96E;
  --gold-light: #DBBF8A;
  --gold-dark: #A88B52;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background-color: var(--gold);
  color: var(--black);
}

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

/* ========================
   CONTAINER
   ======================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding-left: clamp(20px, 4vw, 60px);
  padding-right: clamp(20px, 4vw, 60px);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-left: clamp(20px, 4vw, 60px);
  padding-right: clamp(20px, 4vw, 60px);
}

/* ========================
   SECTION SPACING
   ======================== */
.section-space {
  padding-top: clamp(56px, 8vw, 112px);
  padding-bottom: clamp(56px, 8vw, 112px);
}

.section-space-sm {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

/* ========================
   TYPOGRAPHY
   ======================== */
.headline-xl {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.headline-lg {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.headline-md {
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.headline-sm {
  font-size: clamp(0.75rem, 0.95vw, 0.875rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.label-gold {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-text {
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  line-height: 1.7;
  color: var(--gray-light);
  font-weight: 300;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.85;
  color: var(--white);
}

/* ========================
   GOLD ACCENT
   ======================== */
.text-gold {
  color: var(--gold);
}

.gold-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* ========================
   DIVIDERS
   ======================== */
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--border);
}

.divider-gold {
  width: 32px;
  height: 1px;
  background-color: var(--gold);
}

.divider-v {
  width: 1px;
  height: 100%;
  background-color: var(--border);
}

/* ========================
   HEADER
   ======================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.4s ease;
}

.site-header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  height: 20px;
  width: auto;
}

.header-logo span {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 1px solid var(--border-strong);
  padding-left: 10px;
}

.header-info {
  display: none;
  align-items: center;
  gap: 16px;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (min-width: 768px) {
  .header-info {
    display: flex;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 56px;
  }
}

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 110, 0.15),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background-color: rgba(201, 169, 110, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.1);
}

.btn-solid {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: var(--gold);
  color: var(--black);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-solid::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-solid:hover::before {
  left: 100%;
}

.btn-solid:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.25);
}

.btn-magnetic {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-solid {
    width: 100%;
    justify-content: center;
  }

  .btn-magnetic {
    display: block;
    width: 100%;
  }
}

/* ========================
   REVEAL ANIMATIONS
   ======================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.40s; }
.stagger-7 { transition-delay: 0.47s; }

/* ========================
   IMAGE PLACEHOLDERS
   ======================== */
.img-placeholder {
  position: relative;
  background-color: var(--off-black);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.img-placeholder::after {
  content: attr(data-placeholder);
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dark);
  text-align: center;
  padding: 20px;
  line-height: 1.8;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    transparent 35%,
    rgba(201, 169, 110, 0.02) 50%,
    transparent 65%
  );
  pointer-events: none;
}

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

/* Aspect ratios for placeholders */
.aspect-hero { aspect-ratio: 3 / 4; }
.aspect-landscape { aspect-ratio: 16 / 10; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-portrait { aspect-ratio: 2 / 3; }
.aspect-wide { aspect-ratio: 21 / 9; }
.aspect-photo { aspect-ratio: 4 / 5; }

/* ========================
   HERO VIDEO COMPONENT
   ======================== */
.hero-video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: var(--off-black);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
}

.hero-video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-video-wrapper.has-video video {
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.35) 100%
  );
  transition: opacity 0.5s ease;
}

.hero-play-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  padding-left: 3px;
}

.hero-play-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  transform: scale(1.06);
}

.hero-video-wrapper.playing .hero-video-overlay {
  opacity: 0;
  pointer-events: none;
}

/* ========================
   EDITORIAL GRID CELLS
   ======================== */
.grid-cell {
  border: 1px solid var(--border);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid-cell-dark {
  background-color: var(--off-black);
  border: 1px solid var(--border);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ========================
   FAQ ACCORDION
   ======================== */
.faq-item {
  position: relative;
  background-color: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 12px;
  transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
  overflow: hidden;
}

/* Light reflection line effect (Closed state) */
.faq-item::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -100%;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

@media (hover: hover) {
  .faq-item:not(.active):hover {
    background-color: rgba(201, 169, 110, 0.04);
    border-color: rgba(201, 169, 110, 0.4);
    transform: translateY(-2px);
  }
  
  .faq-item:not(.active):hover::before {
    opacity: 1;
    animation: faq-scan 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
  
  .faq-item:not(.active):hover .faq-icon {
    transform: rotate(90deg);
  }
}

@keyframes faq-scan {
  0% { left: -100%; }
  100% { left: 200%; }
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 20px;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: left;
  cursor: pointer;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
}

.faq-item.active {
  background-color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.faq-item.active .faq-trigger {
  color: var(--off-black);
  font-weight: 500;
}

/* Flash reflection on open */
.faq-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
}

.faq-item.active::after {
  animation: faq-flash 0.7s ease-out forwards;
}

@keyframes faq-flash {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Icon */
.faq-icon {
  width: 12px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--gold);
  transition: background-color 0.4s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}

/* Transform to X and black when active */
.faq-item.active .faq-icon {
  transform: rotate(135deg);
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background-color: var(--off-black);
}

/* Content */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.faq-content-inner {
  padding: 0 20px 32px 20px;
  color: var(--gray-light);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  line-height: 1.7;
  font-weight: 300;
  transition: color 0.4s ease;
}

.faq-item.active .faq-content-inner {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
}

/* ========================
   FORM
   ======================== */
.form-input {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input::placeholder {
  color: var(--gray);
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.form-input:focus {
  border-bottom-color: var(--gold);
}

.form-label {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}

.form-radio-group,
.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-radio,
.form-checkbox {
  display: none;
}

.form-radio-label,
.form-checkbox-label {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--border-strong);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.form-radio:checked + .form-radio-label,
.form-checkbox:checked + .form-checkbox-label {
  border-color: var(--gold);
  color: var(--gold);
  background-color: rgba(201, 169, 110, 0.08);
}

.form-radio-label:hover,
.form-checkbox-label:hover {
  border-color: var(--gray);
  color: var(--white);
}

@media (max-width: 640px) {
  .form-radio-group,
  .form-checkbox-group {
    flex-direction: column;
  }

  .form-radio-label,
  .form-checkbox-label {
    text-align: center;
  }
}

/* ========================
   CUSTOM SCROLLBAR
   ======================== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
  padding: 32px clamp(20px, 4vw, 60px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer .footer-brand img {
  height: 14px;
  width: auto;
}

.site-footer .footer-text {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

/* ========================
   INVESTMENT HIGHLIGHT
   ======================== */
.price-display {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
}

.price-display .currency {
  font-size: 0.4em;
  font-weight: 500;
  vertical-align: super;
  letter-spacing: 0;
  color: var(--gold);
  margin-right: 4px;
}

/* ========================
   LOGISTICS MODULE
   ======================== */
.logistics-card {
  padding: clamp(22px, 2.5vw, 36px);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s ease;
}

.logistics-card:hover {
  border-color: var(--border-strong);
}

/* ========================
   FORM SUCCESS
   ======================== */
#form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}

#form-success .success-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}

/* ========================
   MICRO-INTERACTIONS
   ======================== */

.module-card {
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.08), transparent);
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}

@media (hover: hover) {
  .module-card:hover {
    background-color: rgba(201, 169, 110, 0.03);
    border-color: rgba(201, 169, 110, 0.4) !important;
    transform: translateY(-2px);
  }
  
  .module-card:hover::before {
    left: 200%;
    transition: left 0.8s ease;
  }
}

.grow-line {
  width: 0;
}

.grow-line-anim {
  animation: growLine 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes growLine {
  from { width: 0; }
  to { width: 32px; }
}

.text-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 40%, #FFF 50%, var(--gold) 60%, var(--gold) 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: text-shine 8s infinite linear;
}

@keyframes text-shine {
  0%, 80% { background-position: -100% center; }
  100% { background-position: 200% center; }
}

.stagger-8 { transition-delay: 0.54s; }
.stagger-9 { transition-delay: 0.61s; }
.stagger-10 { transition-delay: 0.68s; }

/* ========================
   ACCESSIBILITY
   ======================== */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale, .reveal-left {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .module-card {
    transition: none;
  }
  
  @media (hover: hover) {
    .module-card:hover {
      transform: none;
    }
  }

  .text-shimmer {
    animation: none;
    background: none;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
  }

  .grow-line {
    width: 32px !important;
  }

  .grow-line-anim {
    animation: none !important;
  }
}

/* ========================
   EDITORIAL DEV SECTION
   ======================== */

.dev-item {
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  --parallax-y: 0px;
  transform: translateY(var(--parallax-y));
}

.reveal.revealed .dev-line {
  width: 100%;
  max-width: 48px;
}

@media (hover: hover) {
  /* Group hover: dim only if an item is actively hovered */
  .dev-group:has(.dev-item:hover) .dev-item:not(:hover) {
    opacity: 0.3;
  }
  
  /* Active item */
  .dev-group .dev-item:hover {
    opacity: 1 !important;
    transform: translateY(calc(var(--parallax-y) - 6px)) !important;
  }

  /* Active line expand */
  .dev-group .dev-item:hover .dev-line {
    max-width: 120px;
    background-color: #FFF;
  }
  
  /* Active text contrast */
  .dev-group .dev-item:hover .dev-title {
    color: #FFF;
  }
  .dev-group .dev-item:hover .dev-text {
    color: var(--gray-light);
  }
}

/* ========================
   GLOBAL THEME TOGGLES
   ======================== */
:root {
  --light-bg: #EAEAE8; /* Off-white premium / architectural gray */
  --light-bg-alt: #F2F2F0; /* Slightly lighter for cards in light theme */
  --text-dark: #121212;
  --text-dark-muted: #555555;
  --border-light-theme: rgba(0, 0, 0, 0.12);
}

.theme-light {
  background-color: var(--light-bg) !important;
  color: var(--text-dark) !important;
  border-color: var(--border-light-theme) !important;
}

/* Text overrides in light theme */
.theme-light .headline-lg,
.theme-light .headline-md,
.theme-light .headline-sm,
.theme-light .headline-xs {
  color: var(--text-dark);
}

.theme-light .body-text {
  color: var(--text-dark-muted) !important;
}

.theme-light .label:not(.text-gold) {
  color: var(--text-dark-muted);
}

.theme-light .dev-item .dev-text {
  color: var(--text-dark-muted) !important;
}

.theme-light .dev-title {
  color: var(--gold) !important;
}

.theme-light .text-gold {
  color: var(--gold) !important;
}

/* Border overrides in light theme */
.theme-light .grid-cell,
.theme-light .grid-cell-dark,
.theme-light .reveal-scale,
.theme-light .dev-line,
.theme-light .module-card {
  border-color: var(--border-light-theme) !important;
}

/* Feedback Carousel */
.theme-light .feedback-card {
  background-color: var(--light-bg-alt) !important;
  border-color: var(--border-light-theme) !important;
}
.theme-light .feedback-card div {
  border-color: var(--border-light-theme);
}


/* Fix dev-item hover for light theme */
.theme-light .dev-group .dev-item:hover .dev-title {
  color: var(--text-dark) !important;
}
.theme-light .dev-group .dev-item:hover .dev-text {
  color: var(--text-dark) !important;
}
.theme-light .dev-group .dev-item:hover .dev-line {
  background-color: var(--text-dark) !important;
}

/* ========================
   FUNDAMENTOS (DOMINE O CORTE)
   ======================== */
.fundamento-card {
  position: relative;
  background: transparent;
  transition: background-color 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  cursor: default;
  border: 1px solid var(--border-light-theme);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Light reflection scanline */
.fundamento-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.fundamento-card::after {
  content: '';
  position: absolute;
  bottom: -1px; left: -100%;
  width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

@media (hover: hover) {
  .fundamento-card:hover {
    background-color: rgba(201, 169, 110, 0.03);
    transform: translateY(-3px);
    border-color: rgba(201, 169, 110, 0.4) !important;
  }
  
  .fundamento-card:hover::before,
  .fundamento-card:hover::after {
    opacity: 1;
  }
  
  .fundamento-card:hover::before {
    animation: funda-sweep 1.2s ease-out forwards;
  }
  
  .fundamento-card:hover::after {
    animation: faq-scan 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
  
  /* Highlight number */
  .fundamento-card:hover .number-glow {
    text-shadow: 0 0 8px rgba(201, 169, 110, 0.5);
  }
}

@keyframes funda-sweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Line Reveal Animation Hook for Domine section */
.reveal.revealed .line-reveal {
  width: 40px !important;
}


/* ========================
   INCLUSO CARDS (BENTO)
   ======================== */
.incluso-card {
  background-color: transparent;
  border: 1px solid var(--border-light-theme);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.incluso-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #FFFFFF;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.incluso-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

@media (hover: hover) {
  .incluso-card:hover {
    border-color: rgba(201, 169, 110, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.04);
  }

  .incluso-card:hover::before {
    transform: translateY(0);
  }
  
  .incluso-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.incluso-card > * {
  position: relative;
  z-index: 1;
}

.incluso-card .headline-sm {
  color: var(--text-dark) !important;
  transition: transform 0.4s ease, color 0.4s ease;
}

.incluso-card .label {
  color: var(--text-dark-muted) !important;
  transition: transform 0.4s ease, color 0.4s ease;
}

.incluso-card:hover .headline-sm {
  transform: translateY(-2px);
  color: var(--gold) !important;
}

.incluso-card:hover .label {
  transform: translateY(2px);
  color: var(--text-dark) !important;
}

/* Image Card Hover */
.incluso-img-card {
  border: 1px solid var(--border-light-theme);
  position: relative;
  overflow: hidden;
}
.incluso-img-card img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.incluso-img-card:hover img {
  transform: scale(1.05);
}


/* Apply Card Style to dev-item */
.theme-light .dev-item {
  background-color: var(--light-bg-alt); /* slightly different from background */
  border: 1px solid var(--border-light-theme);
  padding: 32px;
  border-radius: 4px;
}

/* On hover, let's elevate it and change colors for premium feel */
.theme-light .dev-group .dev-item:hover {
  background-color: #FFFFFF;
  box-shadow: 0 16px 32px rgba(0,0,0,0.04);
  border-color: rgba(201, 169, 110, 0.3) !important;
}


/* ========================
   LOGISTICS BENTO CARDS
   ======================== */
.logistics-bento {
  background-color: var(--light-bg-alt);
  border: 1px solid var(--border-light-theme);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px;
  cursor: default;
}

.logistics-bento::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.05), transparent);
  transition: transform 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.logistics-bento > * {
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .logistics-bento:hover {
    background-color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.04);
    border-color: rgba(201, 169, 110, 0.3) !important;
  }

  .logistics-bento:hover::before {
    transform: translateX(200%);
  }

  .logistics-bento:hover .logistics-title {
    transform: translateY(-2px);
  }
}

.logistics-title {
  color: var(--gold);
  transition: transform 0.4s ease;
}


/* ========================
   PRICING CARD (GOLD)
   ======================== */
.pricing-card {
  background-color: var(--gold);
  border-radius: 8px;
  padding: clamp(24px, 6vw, 48px);
  color: var(--off-black);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(201, 169, 110, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-card .label-gold {
  color: var(--off-black) !important;
  border-color: rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.2);
}

.pricing-card .price-display {
  color: var(--off-black);
}

.pricing-card .price-display .currency {
  color: var(--off-black);
  opacity: 0.8;
}

.pricing-original {
  text-decoration: line-through;
  color: rgba(0,0,0,0.5);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.pricing-discount-badge {
  background-color: var(--off-black);
  color: var(--gold);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card .divider-dark {
  width: 100%;
  height: 1px;
  background-color: rgba(0,0,0,0.1);
  margin: 32px 0;
}

.pricing-card .label {
  color: rgba(0,0,0,0.7);
}

.pricing-card .btn-solid {
  background-color: var(--off-black);
  color: var(--gold);
  width: 100%;
  justify-content: center;
}

.pricing-card .btn-solid:hover {
  background-color: #000;
  color: #FFF;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  text-align: left;
}

.pricing-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--off-black);
}

.pricing-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.05);
  color: var(--off-black);
  flex-shrink: 0;
}




/* ========================
   PRICING CARD (DARK)
   ======================== */
.pricing-card-dark {
  background-color: var(--off-black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(24px, 6vw, 48px);
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card-dark .label-gold {
  color: var(--gold) !important;
  border-color: rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.05);
}

.pricing-card-dark .price-display {
  color: var(--white);
}

.pricing-card-dark .price-display .currency {
  color: var(--gold);
  opacity: 1;
}

.pricing-card-dark .divider-dark {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  margin: 32px 0;
}

.pricing-card-dark .label {
  color: var(--gray-light);
}

.pricing-card-dark .btn-solid {
  background-color: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 100%;
  justify-content: center;
}

.pricing-card-dark .btn-solid:hover {
  background-color: var(--gold);
  color: var(--off-black);
}

.pricing-card-dark .pricing-list-item {
  color: var(--white);
}

.pricing-card-dark .pricing-list-icon {
  background-color: rgba(201, 169, 110, 0.1);
  color: var(--gold);
}



/* ========================
   FORM CARD BOX
   ======================== */
.form-card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: clamp(32px, 5vw, 48px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* ========================
   HERO PLAY BUTTON PULSE
   ======================== */
.pulse-anim::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse-ring 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-anim::after { animation: none; opacity: 0; }
}
