/*
Theme Name: Meu Site WP
Description: Meu site convertido de HTML para WordPress
Author: Seu Nome
Version: 1.0
*/
/* ===================== RESET & BASE ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-base: #060810;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(250, 204, 21, 0.3);
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --accent-yellow: #FACC15;
  --accent-cyan: #22D3EE;
  --accent-purple: #A78BFA;
  --accent-green: #34D399;
  --accent-orange: #F97316;
  --gradient-brand: linear-gradient(135deg, #FACC15 0%, #F97316 100%);
  --gradient-cool: linear-gradient(135deg, #22D3EE 0%, #A78BFA 100%);
  --font-main: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --section-pad: clamp(40px, 6vw, 70px);
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}


/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
  background: rgba(250, 204, 21, 0.3);
  border-radius: 2px;
}

/* ===================== UTILITIES ===================== */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(250, 204, 21, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(250, 204, 21, 0.05);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.55s;
}

.delay-6 {
  transition-delay: 0.7s;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 8, 16, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-primary);
}

/* UNUSED - ORPHAN CSS (commented out)

.logo-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

*/

/* Physis Juris logo in navbar */
.nav-physis-logo-container {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(200, 168, 75, 0.4);
  background: rgba(200, 168, 75, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(200, 168, 75, 0.15);
  flex-shrink: 0;
}

.nav-physis-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  /* Zoom reduzido para a nova imagem centralizada */
  transition: transform 0.3s var(--transition);
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-accent {
  color: var(--accent-yellow);
}

.nav-logo:hover .nav-physis-logo {
  transform: scale(1.1);
}

.nav-logo:hover .logo-text {
  color: var(--accent-yellow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gradient-brand);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: all 0.3s var(--transition);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.25);
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
}

.cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.nav-cta:hover .cta-arrow {
  transform: translateX(4px);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-radial-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--accent-yellow);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-50px) scale(1);
    opacity: 0;
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-yellow);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-yellow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(250, 204, 21, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
  padding: 0.1em 0;
  margin: -0.1em 0;
}

.highlight-word {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* JS selector hook for hero title word animation */
.word {
    /* No visual styling - used as JS target for data-word scramble animation */
}

.title-sub {
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s var(--transition);
  z-index: 1;
}

.btn-primary .btn-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  z-index: -1;
  transition: all 0.4s ease;
}

.btn-primary .btn-text {
  position: relative;
  z-index: 2;
}

.btn-primary .btn-shine {
  position: absolute;
  top: -50%;
  left: -100%;
  width: 70%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  z-index: 3;
}

.btn-primary:hover .btn-shine {
  left: 150%;
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}

.btn-xl {
  padding: 20px 40px;
  font-size: 1.1rem;
  width: 100%;
  border-radius: var(--radius-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s var(--transition);
}

.btn-secondary:hover {
  border-color: rgba(250, 204, 21, 0.4);
  color: var(--accent-yellow);
  background: rgba(250, 204, 21, 0.05);
}

.btn-secondary svg {
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

/* ===================== HERO STATS ===================== */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* ===================== HERO VISUAL ===================== */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.book-wrapper {
  position: relative;
  width: 300px;
  height: 400px;
  perspective: 1200px;
}

.book-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(250, 204, 21, 0.3) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.book-3d {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.6s var(--transition);
  position: relative;
}

.book-3d:hover {
  transform: rotateY(-5deg) rotateX(3deg) scale(1.03);
}

.book-front {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    -12px 12px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 60px rgba(250, 204, 21, 0.1);
}

.book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-spine {
  position: absolute;
  top: 2%;
  right: -18px;
  width: 18px;
  height: 96%;
  background: linear-gradient(180deg, #1a1500, #0a0800);
  transform: rotateY(90deg) translateZ(9px);
  border-radius: 0 2px 2px 0;
}

.book-shadow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 80%;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(15px);
  border-radius: 50%;
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite;
}

.fi-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.badge-1 {
  top: -20px;
  left: -60px;
  animation-delay: 0s;
}

.badge-2 {
  top: 20%;
  right: -80px;
  animation-delay: 1s;
}

.badge-3 {
  bottom: 20%;
  left: -70px;
  animation-delay: 2s;
}

.badge-4 {
  bottom: -10px;
  right: -50px;
  animation-delay: 0.5s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===================== SCROLL INDICATOR ===================== */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent-yellow), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ===================== PROBLEM SECTION ===================== */
.problem-section {
  padding: var(--section-pad) 0;
}

.problem-content {
  text-align: center;
}

.problem-content .section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 32px;
}

.problem-content .section-desc {
  margin-bottom: 50px;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.problem-card {
  padding: 28px 24px;
  text-align: left;
}

.problem-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================== MODULES / BENTO GRID ===================== */
.modules-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(to bottom, transparent, rgba(250, 204, 21, 0.02), transparent);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
}

.bento-large {
  grid-column: span 2;
}

.bento-glow {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: var(--glow-color);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  transition: all 0.4s ease;
}

.bento-card:hover .bento-glow {
  transform: scale(1.5);
}

.bento-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.bento-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.bento-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: auto;
  align-self: flex-start;
}

/* ===================== 3D TILT EFFECT ===================== */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* ===================== MARQUEE ===================== */
.marquee-section {
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
}

.marquee-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 28px;
}

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.3s ease;
}

.marquee-item:hover {
  color: var(--text-primary);
}

.mq-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ===================== FOR WHOM ===================== */
.for-whom-section {
  padding: var(--section-pad) 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  padding: 40px 30px;
  text-align: center;
  position: relative;
}

.featured-card {
  border-color: rgba(250, 204, 21, 0.3);
  background: rgba(250, 204, 21, 0.04);
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.07);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gradient-brand);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.aud-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.12);
  border-radius: 50%;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.audience-card ul {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audience-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===================== AUTHOR ===================== */
.author-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(to bottom, transparent, rgba(34, 211, 238, 0.02), transparent);
}

/* UNUSED - ORPHAN CSS (commented out)

.author-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.author-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.author-avatar-ring {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient-brand);
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.author-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-base);
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.author-initials {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.author-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.08), transparent 65%);
  pointer-events: none;
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.author-bio {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.author-bio strong {
  color: var(--text-primary);
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.author-credentials {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.cred-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

*/

/* ===================== AUTHORS GRID (new) ===================== */
.authors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.author-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: all 0.4s var(--transition);
}

.author-card:hover {
  border-color: rgba(250, 204, 21, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(250, 204, 21, 0.06);
}

.author-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-photo-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient-brand);
  flex-shrink: 0;
}

.author-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--bg-base);
}

.author-photo-glow {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow, rgba(250, 204, 21, 0.12)), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.author-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.author-role {
  font-size: 0.85rem;
  color: var(--accent-yellow);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.author-bio-text,
.author-bio-text p {
  text-align: center !important;
  line-height: 1.7 !important;
  margin: 15px auto 25px auto !important;
  padding: 0 20px !important;
  max-width: 100% !important;
}

.author-tags {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  justify-content: center;
  /* Esta linha garante a centralização perfeita das tags */
}

.author-tag {
  background: rgba(52, 211, 153, 0.07);
  color: #34D399;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.cta-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(250, 204, 21, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.2);
  }

  50% {
    box-shadow: 0 0 20px 4px rgba(250, 204, 21, 0.1);
  }
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 52px;
}

.price-block {
  max-width: 480px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  border-color: rgba(250, 204, 21, 0.2);
}

.price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.price-display {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 8px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-cents {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* UNUSED - ORPHAN CSS (commented out)

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

*/

/* Discount / Offer styles */
.price-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gradient-brand);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: glow-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 24px rgba(250, 204, 21, 0.35);
}

.price-original-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.price-original-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-original {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.7);
  text-decoration-thickness: 2px;
}

.price-by-row {
  margin-bottom: 4px;
}

.price-by-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-economy {
  font-size: 0.9rem;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 12px;
  padding: 8px 18px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 100px;
  display: inline-block;
}

.guarantee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* UNUSED - ORPHAN CSS (commented out)

.guar-icon {
  display: flex;
  align-items: center;
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.cta-includes {
  margin-top: 52px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

*/

/* Guarantee Seal — Iconic Medal */
.guarantee-seal {
  max-width: 520px;
  margin: 36px auto 0;
}

.guarantee-seal-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.07) 0%, rgba(52, 211, 153, 0.03) 100%);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius-lg);
  text-align: left;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(52, 211, 153, 0.08), inset 0 1px 0 rgba(52, 211, 153, 0.1);
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.guarantee-seal-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.guarantee-seal-inner:hover {
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 0 60px rgba(52, 211, 153, 0.15), inset 0 1px 0 rgba(52, 211, 153, 0.15);
  transform: translateY(-2px);
}

/* Circular badge / medal */
.gseal-badge {
  position: relative;
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gseal-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: sealSpin 20s linear infinite;
}

@keyframes sealSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.gseal-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 0;
}

.gseal-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: #34D399;
  line-height: 1;
  text-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
  margin-bottom: 2px;
}

.gseal-unit {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  color: #34D399;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 1px;
}

.gseal-sub {
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(52, 211, 153, 0.6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Text side */
.guarantee-seal-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #34D399;
  letter-spacing: 0.01em;
}

.guarantee-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.guarantee-desc strong {
  color: var(--text-primary);
}

.guarantee-badge-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}


/* ===================== OFFICE KPI SECTION ===================== */
.office-kpi-section {
  max-width: 680px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.05) 0%, rgba(250, 204, 21, 0.02) 100%);
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 60px rgba(250, 204, 21, 0.06), inset 0 1px 0 rgba(250, 204, 21, 0.08);
  transition: all 0.4s var(--transition);
}

.office-kpi-section:hover {
  border-color: rgba(250, 204, 21, 0.3);
  box-shadow: 0 0 80px rgba(250, 204, 21, 0.1), inset 0 1px 0 rgba(250, 204, 21, 0.12);
}

.office-kpi-header {
  padding: 22px 28px 16px;
  border-bottom: 1px solid rgba(250, 204, 21, 0.1);
}

.office-kpi-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-yellow);
  letter-spacing: 0.01em;
}

.office-kpi-grid {
  padding: 8px 0 8px;
  display: flex;
  flex-direction: column;
}

.kpi-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 28px;
  transition: background 0.25s ease;
  position: relative;
}

.kpi-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.kpi-item:last-child::after {
  display: none;
}

.kpi-item:hover {
  background: rgba(250, 204, 21, 0.04);
}

.kpi-check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 8px;
  margin-top: 1px;
  transition: all 0.25s ease;
}

.kpi-item:hover .kpi-check {
  background: rgba(250, 204, 21, 0.18);
  border-color: rgba(250, 204, 21, 0.45);
  box-shadow: 0 0 12px rgba(250, 204, 21, 0.2);
}

.kpi-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  text-align: left;
}

.kpi-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* --- HAMBURGER: Hidden by default on desktop --- */
.hamburger-btn {
  display: none;
}

.mobile-menu {
  display: none;
}


@media (max-width: 768px) {
  .office-kpi-section {
    margin: 36px auto 0;
  }

  .office-kpi-header {
    padding: 18px 20px 14px;
  }

  .kpi-item {
    padding: 14px 20px;
    gap: 14px;
  }

  .kpi-item::after {
    left: 20px;
    right: 20px;
  }

  .office-kpi-label {
    font-size: 0.88rem;
  }

  .kpi-text {
    font-size: 0.88rem;
  }
}

/* UNUSED - ORPHAN CSS (commented out)

.includes-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: center;
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

*/

/* ===================== FOOTER ===================== */
.footer {
  background: #0d1526;
  padding: 64px clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(200, 168, 75, 0.12);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.footer-copy {
  font-size: 1.15rem;
  color: #8fa3c4;
  font-weight: 500;
  line-height: 1.5;
}

.footer-legal {
  font-size: 1rem;
  color: #6b84a6;
  line-height: 1.75;
}

/* Physis Juris logo block */
.footer-right {
  flex-shrink: 0;
}

.physis-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.physis-tree {
  width: 240px;
  height: 240px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
  border: 1px solid rgba(200, 168, 75, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.physis-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

/* UNUSED - ORPHAN CSS (commented out)

.physis-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #d4b97a;
  letter-spacing: 0.2em;
}

*/

.physis-group-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* UNUSED - ORPHAN CSS (commented out)

.physis-line {
  flex: 1;
  height: 1px;
  background: #C8A84B;
  opacity: 0.5;
}

*/

/* UNUSED - ORPHAN CSS (commented out)

.physis-group-word {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  color: #C8A84B;
  letter-spacing: 0.3em;
}

*/

.physis-authors {
  font-size: 0.8rem;
  color: #8fa3c4;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.physis-email {
  font-size: 0.85rem;
  color: var(--accent-yellow);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  margin-top: 4px;
}

.physis-email:hover {
  opacity: 1;
}

/* ===================== BONUS SECTION ===================== */
.bonus-box {
  margin-top: 40px;
  padding: 30px;
  border: 1px solid rgba(250, 204, 21, 0.3);
  background: linear-gradient(135deg, rgba(20, 25, 45, 0.7) 0%, rgba(10, 15, 30, 0.8) 100%);
  position: relative;
  overflow: hidden;
}

.bonus-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent-yellow);
  color: #000;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom-left-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
}

.bonus-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}

.bonus-image-side {
  flex: 0 0 140px;
  position: relative;
}

.bonus-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.bonus-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.bonus-info-side {
  flex: 1;
  text-align: left;
}

.bonus-title {
  font-family: 'Inter', sans-serif !important;
  /* Aplica a fonte da sua nova imagem */
  font-size: 28px !important;
  color: var(--accent-green) !important;
  /* Aplica o verde #34D399 */
  font-weight: 700 !important;
  /* Deixa a fonte em negrito/bold */
  letter-spacing: -0.02em !important;
  /* Dá o mesmo espaçamento elegante da imagem */
}

.bonus-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 16px;
}

.bonus-value-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 8px 0 14px !important;
}

.bonus-value-label {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.bonus-value-crossed {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--text-muted) !important;
  text-decoration: line-through !important;
  text-decoration-color: rgba(239, 68, 68, 0.85) !important;
  text-decoration-thickness: 2px !important;
}

.bonus-value-free {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  color: var(--accent-green) !important;
  background: rgba(52, 211, 153, 0.1) !important;
  border: 1px solid rgba(52, 211, 153, 0.3) !important;
  padding: 3px 12px !important;
  border-radius: 100px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.bonus-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .bonus-inner {
    flex-direction: column;
    text-align: center;
  }

  .bonus-info-side {
    text-align: center;
  }

  .bonus-image-side {
    flex: 0 0 180px;
    width: 180px;
    margin: 0 auto;
  }

  .bonus-badge {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.5));
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  background: transparent;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 20px;
}

.faq-icon-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.faq-item.active .faq-icon-box {
  transform: rotate(45deg);
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 30px 30px 30px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: justify;
}

.faq-answer-inner p {
  margin: 0;
}


/* ===================== MAGNETIC BUTTON ===================== */
.magnetic-btn {
  display: inline-flex;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-column: span 2;
  }

/* UNUSED - ORPHAN CSS (commented out)

  .author-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

*/

/* UNUSED - ORPHAN CSS (commented out)

  .author-credentials {
    align-items: center;
  }

*/
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-secondary {
    justify-content: center;
  }

  .book-wrapper {
    width: 220px;
    height: 300px;
  }
}

/* ===================== RESPONSIVE — DESKTOP ===================== */
@media (min-width: 992px) {

  html,
  body,
  .navbar,
  .hero,
  .problem-section,
  .modules-section,
  .marquee-section,
  .for-whom-section,
  .author-section,
  .final-cta,
  .faq-section,
  .footer {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }

  .nav-container,
  .hero-container,
  .section-container,
  .faq-container,
  .footer-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 6% !important;
    padding-right: 6% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 4% !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .hero-content {
    flex: 0 0 54% !important;
    max-width: 54% !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .hero-visual {
    flex: 0 0 40% !important;
    max-width: 40% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .hero-title {
    font-size: 4.2rem !important;
    line-height: 1.15 !important;
    margin-bottom: 24px !important;
    text-align: left !important;
  }

  .title-line {
    display: block !important;
    text-align: left !important;
  }

  .hero-subtitle {
    font-size: 1.35rem !important;
    line-height: 1.6 !important;
    margin-bottom: 40px !important;
    max-width: 100% !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 20px !important;
    width: auto !important;
  }

  .book-wrapper {
    transform: scale(1.15) !important;
    margin: 0 auto !important;
  }

  .hero-stats {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 60px !important;
    margin-top: 60px !important;
    width: 100% !important;
  }

  .stat-item {
    text-align: left !important;
    display: block !important;
  }

  .stat-divider {
    display: block !important;
    width: 1px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    align-self: center !important;
  }
}

/* ===================== RESPONSIVE — MOBILE ===================== */
@media (max-width: 768px) {

  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    font-size: 14px !important;
  }

  section,
  .problem-section,
  .modules-section,
  .for-whom-section,
  .author-section,
  .final-cta,
  .faq-section {
    padding: 50px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .section-title,
  #hero .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
    letter-spacing: 0px !important;
  }

  .section-desc,
  .section-subtitle {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    padding: 0 15px !important;
  }

  #navbar {
    padding: 10px 0 !important;
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    background: #0a0a0c !important;
    z-index: 9999 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  #navbar .nav-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  #navbar .nav-logo {
    gap: 6px !important;
  }

  #navbar .nav-physis-logo-container {
    width: 28px !important;
    height: 28px !important;
  }

  #navbar .logo-text {
    font-size: 0.8rem !important;
  }

  #navbar .nav-links {
    display: none !important;
  }

  #navbar .nav-cta {
    padding: 8px 12px !important;
    font-size: 0.75rem !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  #hero {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
    height: auto !important;
    min-height: auto !important;
  }

  #hero .hero-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 15px !important;
    gap: 30px !important;
    width: 100% !important;
  }

  #hero .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  #hero .hero-badge {
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
    margin-bottom: 15px !important;
  }

  #hero .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 25px !important;
    padding: 0 !important;
  }

  #hero .hero-subtitle br {
    display: none !important;
  }

  #hero .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 290px !important;
    gap: 12px !important;
    margin: 0 auto !important;
  }

  #hero .hero-actions a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 14px 15px !important;
    font-size: 0.95rem !important;
    box-sizing: border-box !important;
  }

  #hero .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 20px 0 0 0 !important;
    order: 3 !important;
  }

  #hero .book-wrapper {
    transform: scale(0.7) !important;
    margin: 0 auto !important;
    width: 220px !important;
    height: 300px !important;
  }

  #hero .book-glow {
    width: 160px !important;
    height: 220px !important;
  }

  #hero .float-badge,
  #hero .scroll-indicator {
    display: none !important;
  }

  #hero .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    margin-top: 30px !important;
    padding: 15px !important;
  }

  #hero .stat-divider {
    display: none !important;
  }

  #hero .stat-item {
    text-align: center !important;
  }

  .problem-cards,
  .bento-grid,
  .audience-grid,
  .authors-grid,
  .office-kpi-grid,
  /* UNUSED - ORPHAN CSS (commented out)
.faq-grid,
  .includes-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  */

  .bento-card {
    grid-column: span 1 !important;
    padding: 20px !important;
  }

  .featured-card {
    transform: none !important;
  }

  .author-card {
    flex-direction: column !important;
    text-align: center !important;
    padding: 25px 15px !important;
  }

  .author-photo-wrap {
    margin: 0 auto 15px auto !important;
  }

  .author-tags {
    justify-content: center !important;
  }

  #cta .cta-title {
    font-size: 1.7rem !important;
  }

  .price-block {
    padding: 25px 15px !important;
    margin: 0 10px !important;
  }

  .price-display {
    font-size: 3.2rem !important;
  }

  .price-block .btn-xl {
    width: 100% !important;
    font-size: 0.95rem !important;
    padding: 15px 10px !important;
  }

  .guarantee-seal-inner,
  .bonus-inner {
    flex-direction: column !important;
    text-align: center !important;
    padding: 20px 15px !important;
  }

  .bonus-image-side {
    width: 100% !important;
    max-width: 200px;
    margin: 0 auto !important;
  }

  .bonus-info-side,
  .guarantee-seal-text {
    align-items: center !important;
  }

  .bonus-features {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .faq-container {
    padding: 0 !important;
  }

  .faq-question {
    padding: 16px 12px !important;
    font-size: 0.9rem !important;
  }

  .footer {
    padding: 30px 0 !important;
  }

  .footer-inner {
    flex-direction: column-reverse !important;
    gap: 30px !important;
    text-align: center !important;
  }

  .footer-left {
    align-items: center !important;
  }

  .footer-right {
    justify-content: center !important;
  }

  .physis-logo-wrap {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .physis-text {
    align-items: center !important;
  }

  /* --- SECTION CONTAINERS: fluid width on mobile --- */
  .section-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }

  /* --- HAMBURGER MENU --- */
  .hamburger-btn {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 36px !important;
    height: 36px !important;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    gap: 5px !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
  }

  .hamburger-btn .bar {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
  }

  .hamburger-btn.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .hamburger-btn.active .bar:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }

  .hamburger-btn.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  /* Mobile dropdown menu */
  .mobile-menu {
    display: none !important;
    position: fixed !important;
    top: 56px !important;
    left: 0 !important;
    right: 0 !important;
    background: #0a0a0c !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 16px 20px !important;
    z-index: 9998 !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .mobile-menu.open {
    display: flex !important;
  }

  .mobile-menu a {
    display: block !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    transition: color 0.2s ease !important;
  }

  .mobile-menu a:last-child {
    border-bottom: none !important;
  }

  .mobile-menu a:hover {
    color: #F5A623 !important;
  }

  /* --- ADDITIONAL GRID FIXES --- */
  .office-kpi-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Pricing block full width */
  .price-block,
  .pricing-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  /* Authors grid single column */
  .authors-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

}


/* ============================================
   CONTADOR DE ESCASSEZ — design integrado
   ============================================ */
.countdown-block {
  margin: 28px auto 24px;
  padding: 22px 20px 20px;
  background: linear-gradient(135deg,
    rgba(250, 204, 21, 0.06) 0%,
    rgba(249, 115, 22, 0.04) 100%);
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* glow sutil no fundo */
.countdown-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at center,
    rgba(250, 204, 21, 0.12) 0%,
    transparent 60%);
  pointer-events: none;
  opacity: 0.6;
}

.countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #FACC15;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 62px;
  padding: 10px 6px;
  background: rgba(6, 8, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.countdown-number {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: linear-gradient(180deg, #FACC15 0%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s ease;
}

.countdown-number.tick {
  animation: countdown-tick 0.4s ease-out;
}

@keyframes countdown-tick {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.countdown-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.countdown-sep {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(250, 204, 21, 0.4);
  line-height: 1;
  margin-bottom: 18px;
  align-self: center;
}

/* Estado de URGÊNCIA (< 24h restantes) */
.countdown-block.urgent {
  border-color: rgba(239, 68, 68, 0.5);
  background: linear-gradient(135deg,
    rgba(239, 68, 68, 0.10) 0%,
    rgba(249, 115, 22, 0.06) 100%);
  animation: countdown-pulse-urgent 2.5s ease-in-out infinite;
}

.countdown-block.urgent .countdown-label {
  color: #EF4444;
}

.countdown-block.urgent .countdown-unit {
  border-color: rgba(239, 68, 68, 0.25);
}

.countdown-block.urgent .countdown-number {
  background: linear-gradient(180deg, #FCA5A5 0%, #EF4444 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.countdown-block.urgent .countdown-sep {
  color: rgba(239, 68, 68, 0.5);
}

@keyframes countdown-pulse-urgent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
  50%      { box-shadow: 0 0 32px -4px rgba(239, 68, 68, 0.4); }
}

.countdown-urgent-msg {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #FCA5A5;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.countdown-ended-msg {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  padding: 14px;
}
.countdown-ended-msg a {
  color: #FACC15;
  text-decoration: underline;
}

/* Quando oferta encerra, esconde display e label */
.countdown-block.ended .countdown-label,
.countdown-block.ended .countdown-display,
.countdown-block.ended .countdown-urgent-msg {
  display: none !important;
}

/* RESPONSIVO MOBILE */
@media (max-width: 480px) {
  .countdown-block {
    padding: 18px 12px 16px;
  }
  .countdown-display {
    gap: 4px;
  }
  .countdown-unit {
    min-width: 52px;
    padding: 8px 4px;
  }
  .countdown-number {
    font-size: 1.45rem;
  }
  .countdown-text {
    font-size: 0.6rem;
  }
  .countdown-sep {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  .countdown-label {
    font-size: 0.72rem;
  }
}