@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Paleta Oficial — Deep Teal & Golden Taoist Luxury */
  --primary-dark: #092022;
  --secondary-dark: #0F3336;
  --accent-teal: #1E5A5C;
  --bright-teal: #2D8A8D;
  --glow-teal: rgba(45, 138, 141, 0.35);
  
  --gold-accent: #C8A86B;
  --gold-bright: #E5C687;
  --gold-glow: rgba(200, 168, 107, 0.3);
  
  --ivory-bg: #F9F8F4;
  --ivory-card: #FFFFFF;
  --ivory-subtle: #F0EFE9;
  
  --text-dark: #12282A;
  --text-light: #F4F7F7;
  --text-muted: #8EAAAC;
  --text-dark-muted: #566D6F;

  /* Efeitos e Vidros (Glassmorphism) */
  --glass-dark-bg: rgba(15, 51, 54, 0.75);
  --glass-dark-border: rgba(200, 168, 107, 0.25);
  --glass-light-bg: rgba(255, 255, 255, 0.85);
  --glass-light-border: rgba(30, 90, 92, 0.12);

  /* Sombras de Alta Precisão */
  --shadow-sm: 0 4px 12px rgba(9, 32, 34, 0.08);
  --shadow-md: 0 10px 30px rgba(9, 32, 34, 0.15);
  --shadow-lg: 0 20px 50px rgba(9, 32, 34, 0.25);
  --shadow-gold: 0 8px 25px rgba(200, 168, 107, 0.2);
  --shadow-teal: 0 12px 35px rgba(30, 90, 92, 0.3);

  /* Transições e Curvas Suaves */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-teal);
  border-radius: 5px;
  border: 2px solid var(--primary-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-accent);
}

/* Typography Base */
h1, h2, h3, h4, .serif-font {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.italic-serif {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
}

.text-gold {
  color: var(--gold-bright);
  background: linear-gradient(135deg, #E5C687 0%, #C8A86B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-teal {
  color: var(--bright-teal);
}

/* Background Gradients & Mesh */
.bg-mesh-dark {
  background: radial-gradient(circle at 15% 20%, rgba(30, 90, 92, 0.4) 0%, transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(200, 168, 107, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, #0F3336 0%, #092022 100%);
}

.bg-ivory-section {
  background-color: var(--ivory-bg);
  color: var(--text-dark);
  position: relative;
}

.bg-ivory-section h2, 
.bg-ivory-section h3 {
  color: var(--secondary-dark);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.2rem 0;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(9, 32, 34, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-dark-border);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px !important;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo img {
  height: 44px;
  width: auto;
  transition: var(--transition-bounce);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.brand-logo:hover img {
  transform: rotate(10deg) scale(1.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  font-weight: 500;
}

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

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: var(--transition-smooth);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background: linear-gradient(135deg, #E5C687 0%, #C8A86B 100%);
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(200, 168, 107, 0.45);
  background: linear-gradient(135deg, #F5DC9C 0%, #D4AF37 100%);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-bright);
  border: 1.5px solid var(--gold-accent);
}

.btn-outline-gold:hover {
  background: rgba(200, 168, 107, 0.15);
  border-color: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-teal {
  background: var(--accent-teal);
  color: var(--text-light);
  box-shadow: var(--shadow-teal);
}

.btn-teal:hover {
  background: var(--bright-teal);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(45, 138, 141, 0.45);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold-bright);
  font-size: 1.8rem;
  cursor: pointer;
}

/* =========================================
   TOP FLYER BAR (DESTAQUE OFICIAL GIGANTE)
   ========================================= */
.top-flyer-bar {
  padding-top: 6.8rem;
  padding-bottom: 2.5rem;
  background: radial-gradient(circle at 50% 20%, rgba(30, 90, 92, 0.4) 0%, rgba(9, 32, 34, 0.95) 80%);
  border-bottom: 1px solid var(--glass-dark-border);
  text-align: center;
  position: relative;
  z-index: 10;
}

.top-flyer-container {
  max-width: 1060px;
}

.top-flyer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.4rem;
  background: rgba(200, 168, 107, 0.15);
  border: 1px solid rgba(200, 168, 107, 0.45);
  border-radius: 50px;
  color: var(--gold-bright);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.top-flyer-img {
  width: 100%;
  max-width: 980px;
  height: auto;
  border-radius: 20px;
  border: 2px solid var(--gold-accent);
  box-shadow: 0 25px 65px rgba(0,0,0,0.8);
  display: block;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.top-flyer-img:hover {
  transform: scale(1.008);
  box-shadow: 0 30px 75px rgba(200, 168, 107, 0.25);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: auto;
  padding-top: 4rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: rgba(200, 168, 107, 0.12);
  border: 1px solid rgba(200, 168, 107, 0.35);
  border-radius: 50px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-bright);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.18;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  color: var(--gold-bright);
  margin-bottom: 1.8rem;
  line-height: 1.45;
  border-left: 3px solid var(--gold-accent);
  padding-left: 1.2rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.tag-pill {
  padding: 0.35rem 0.9rem;
  background: rgba(30, 90, 92, 0.25);
  border: 1px solid rgba(45, 138, 141, 0.4);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

/* =========================================
   HERO SOCIAL CONNECT & QR CODE
   ========================================= */
.hero-social-connect {
  margin-top: 3rem;
  padding: 1.8rem;
  background: rgba(15, 51, 54, 0.75);
  border: 1px solid var(--gold-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.qrcode-box {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: #ffffff;
  padding: 8px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(200, 168, 107, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qrcode-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.social-connect-info {
  flex-grow: 1;
}

.connect-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.social-connect-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.social-connect-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.social-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  background: rgba(200, 168, 107, 0.12);
  border: 1px solid rgba(200, 168, 107, 0.3);
  border-radius: 50px;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-chip:hover {
  background: var(--gold-bright);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(200, 168, 107, 0.4);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-emblem-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-emblem-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(200, 168, 107, 0.4);
  border-radius: 50%;
  animation: rotate-slow 60s linear infinite;
}

.hero-emblem-ring-2 {
  position: absolute;
  width: 82%;
  height: 82%;
  border: 1px solid rgba(45, 138, 141, 0.5);
  border-radius: 50%;
  animation: rotate-slow 40s linear infinite reverse;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-emblem-img {
  width: 68%;
  height: 68%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(45, 138, 141, 0.4), 0 0 30px rgba(200, 168, 107, 0.3);
  z-index: 2;
  transition: var(--transition-bounce);
  animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.floating-badge {
  position: absolute;
  background: var(--glass-dark-bg);
  border: 1px solid var(--glass-dark-border);
  backdrop-filter: blur(12px);
  padding: 0.9rem 1.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  animation: float-badge 5s ease-in-out infinite;
}

.badge-top-left {
  top: 8%;
  left: -5%;
  animation-delay: 0s;
}

.badge-bottom-right {
  bottom: 10%;
  right: -5%;
  animation-delay: 2.5s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(200, 168, 107, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.2rem;
}

.badge-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.badge-text p {
  font-size: 0.75rem;
  color: var(--gold-bright);
  margin-top: 0.2rem;
}

/* =========================================
   SEÇÃO BANNER & IDENTIDADE (DESTAQUE VISUAL)
   ========================================= */
.banner-showcase {
  padding: 3rem 0 5rem;
  position: relative;
  z-index: 10;
}

.banner-card {
  background: linear-gradient(135deg, rgba(15, 51, 54, 0.85) 0%, rgba(9, 32, 34, 0.95) 100%);
  border: 1px solid var(--glass-dark-border);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  overflow: hidden;
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(200, 168, 107, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
}

.banner-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.banner-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.highlights-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.highlight-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(45, 138, 141, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bright-teal);
  font-size: 0.85rem;
}

.banner-image-container {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  border: 2px solid var(--gold-accent);
  transition: var(--transition-smooth);
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}

.banner-image-container:hover {
  transform: scale(1.01);
  border-color: var(--gold-bright);
  box-shadow: 0 25px 60px rgba(200, 168, 107, 0.25);
}

.banner-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   OS 5 PILARES DA TRANSFORMAÇÃO (FLYER)
   ========================================= */
.pillars-section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4.5rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: rgba(15, 51, 54, 0.6);
  border: 1px solid rgba(30, 90, 92, 0.35);
  border-radius: 22px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-accent), var(--bright-teal));
  opacity: 0;
  transition: var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-8px);
  background: rgba(15, 51, 54, 0.85);
  border-color: var(--gold-accent);
  box-shadow: 0 16px 35px rgba(9, 32, 34, 0.4), 0 0 20px rgba(200, 168, 107, 0.15);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-num {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(200, 168, 107, 0.2);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: var(--transition-fast);
}

.pillar-card:hover .pillar-num {
  color: var(--gold-bright);
  transform: scale(1.05) translateX(5px);
}

.pillar-card h3 {
  font-size: 1.45rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================================
   PROTOCOL SOVEREIGN / PSICANÁLISE & SOMÁTICA
   ========================================= */
.protocol-section {
  padding: 7rem 0;
  background: var(--secondary-dark);
  border-top: 1px solid rgba(200, 168, 107, 0.2);
  border-bottom: 1px solid rgba(200, 168, 107, 0.2);
  position: relative;
}

.protocol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.protocol-info h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

.protocol-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
}

.protocol-steps {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(200, 168, 107, 0.15);
  border: 1.5px solid var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(200, 168, 107, 0.2);
}

.step-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.step-text p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0;
}

.somatic-diagram-box {
  background: var(--primary-dark);
  border: 1px solid var(--glass-dark-border);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.diagram-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.diagram-header h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold-bright);
}

.diagram-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.meridian-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.meridian-point {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: rgba(30, 90, 92, 0.2);
  border: 1px solid rgba(45, 138, 141, 0.3);
  border-radius: 12px;
  transition: var(--transition-fast);
}

.meridian-point:hover {
  background: rgba(45, 138, 141, 0.35);
  border-color: var(--gold-accent);
  transform: translateX(6px);
}

.point-name {
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.point-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bright-teal);
  box-shadow: 0 0 10px var(--bright-teal);
}

.point-desc {
  font-size: 0.85rem;
  color: var(--gold-bright);
  font-weight: 500;
}

/* =========================================
   ESCADA DE SOLUÇÕES CLÍNICAS & CORPORATIVAS (PROGRAMAS)
   ========================================= */
.solutions-section {
  padding: 7rem 0;
  position: relative;
  background: var(--primary-dark);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.solution-card {
  background: rgba(15, 51, 54, 0.65);
  border: 1px solid var(--glass-dark-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.solution-card.featured {
  background: rgba(20, 65, 68, 0.88);
  border: 2px solid var(--gold-accent);
  box-shadow: 0 0 40px rgba(200, 168, 107, 0.22);
  transform: scale(1.03);
  z-index: 2;
}

.solution-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 25px 50px rgba(200, 168, 107, 0.35);
}

.solution-badge {
  display: inline-block;
  background: rgba(30, 90, 92, 0.6);
  color: var(--bright-teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.3rem;
  align-self: flex-start;
  border: 1px solid rgba(45, 138, 141, 0.4);
}

.featured-badge {
  background: var(--gold-accent);
  color: var(--primary-dark);
  font-weight: 800;
  border: none;
  box-shadow: 0 0 15px rgba(200, 168, 107, 0.5);
}

.solution-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.38rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.solution-price {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: baseline;
}

.price-val {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-bright);
  font-family: 'Cinzel', serif;
}

.price-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 0.4rem;
}

.price-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.2rem;
}

.solution-body {
  flex-grow: 1;
  margin-bottom: 2.2rem;
}

.solution-pain {
  font-size: 0.92rem;
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.28);
  padding: 1.1rem;
  border-radius: 12px;
  border-left: 3px solid var(--gold-accent);
  margin-bottom: 1.6rem;
  line-height: 1.55;
}

.solution-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.solution-list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.55;
}

.solution-list li i {
  margin-top: 0.22rem;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.solution-footer {
  margin-top: auto;
}

/* BANNER B2B CORPORATIVO */
.b2b-banner {
  margin-top: 4.5rem;
  background: linear-gradient(135deg, rgba(13, 59, 62, 0.92) 0%, rgba(18, 38, 41, 0.96) 100%);
  border: 1.5px solid var(--gold-accent);
  border-radius: 26px;
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}

.b2b-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 168, 107, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.b2b-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.b2b-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.b2b-post-img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  border: 1px solid rgba(200, 168, 107, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: var(--transition-medium);
}

.b2b-post-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(200, 168, 107, 0.3);
}

.b2b-content {
  position: relative;
  z-index: 1;
}

.b2b-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.b2b-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.b2b-content p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.b2b-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.b2b-highlights span {
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(200, 168, 107, 0.12);
  border: 1px solid rgba(200, 168, 107, 0.25);
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  font-weight: 500;
}

.b2b-action {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* =========================================
   REPOSITÓRIO DE ARTIGOS & INSIGHTS CLÍNICOS (BLOG / LINKEDIN HUB)
   ========================================= */
.insights-blog-section {
  padding: 7rem 0;
  position: relative;
}

/* Widget Oficial do LinkedIn Ao Vivo */
.linkedin-official-widget-container {
  background: rgba(10, 36, 38, 0.75);
  border: 1px solid rgba(200, 168, 107, 0.4);
  border-radius: 24px;
  padding: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  position: relative;
}

.widget-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.2rem;
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-family: var(--font-heading);
  margin-bottom: 0.4rem;
  color: var(--text-light);
}

.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 12px #22c55e;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 18px #22c55e; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.widget-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.widget-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}

.linkedin-badge-box {
  background: rgba(15, 51, 54, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.linkedin-embed-box {
  background: rgba(15, 51, 54, 0.85);
  border: 1px solid var(--glass-dark-border);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-medium);
}

.linkedin-embed-box:hover {
  border-color: rgba(200, 168, 107, 0.5);
  box-shadow: 0 15px 35px rgba(200, 168, 107, 0.15);
}

.embed-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  gap: 1rem;
}

.embed-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.embed-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold-accent);
  object-fit: contain;
  background: #0a2426;
  padding: 4px;
}

.embed-author h5 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-light);
  font-family: var(--font-heading);
}

.embed-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.btn-tiny-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #0a66c2;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-tiny-linkedin:hover {
  background: #004182;
  color: #fff;
}

.embed-body-content p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.embed-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.embed-post-tags span {
  background: rgba(200, 168, 107, 0.15);
  color: var(--gold-accent);
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}

.embed-footer-actions {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.embed-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.embed-action-btn:hover {
  color: var(--gold-accent);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2.2rem;
  margin-top: 3.5rem;
  margin-bottom: 4rem;
}

.insight-card {
  background: rgba(15, 51, 54, 0.65);
  border: 1px solid var(--glass-dark-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-medium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.insight-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold-accent);
  box-shadow: 0 20px 45px rgba(200, 168, 107, 0.2);
}

.insight-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.insight-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.insight-card:hover .insight-img-wrapper img {
  transform: scale(1.06);
}

.insight-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(13, 59, 62, 0.9);
  border: 1px solid var(--gold-accent);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  border-radius: 30px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.insight-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insight-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gold-bright);
  margin-bottom: 0.8rem;
}

.insight-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.insight-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.insight-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-decoration: none;
  transition: var(--transition-fast);
  margin-top: auto;
}

.insight-link:hover {
  color: #ffffff;
  gap: 0.7rem;
}

.blog-sync-banner {
  background: linear-gradient(135deg, rgba(200, 168, 107, 0.12) 0%, rgba(15, 51, 54, 0.85) 100%);
  border: 1px solid var(--gold-accent);
  border-radius: 20px;
  padding: 2.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sync-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 680px;
}

.sync-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--gold-bright);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(200, 168, 107, 0.3);
}

.sync-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.sync-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.sync-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================
   SOBRE ARTHUR CAMARGO & CREDENCIAIS
   ========================================= */
.about-section {
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-card-profile {
  background: rgba(15, 51, 54, 0.7);
  border: 1px solid var(--glass-dark-border);
  border-radius: 26px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.profile-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 1.8rem;
  border: 3px solid var(--gold-accent);
  box-shadow: 0 0 30px rgba(200, 168, 107, 0.3);
  background: #092022;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.about-card-profile h3 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.about-card-profile .role {
  color: var(--gold-bright);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  display: block;
}

.cred-badges {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.cred-badge {
  background: rgba(9, 32, 34, 0.8);
  border: 1px solid rgba(45, 138, 141, 0.4);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.cred-badge strong {
  color: var(--gold-bright);
}

.about-text h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-box {
  background: rgba(30, 90, 92, 0.2);
  border: 1px solid rgba(45, 138, 141, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.stat-box h4 {
  font-size: 2.4rem;
  color: var(--gold-bright);
  margin-bottom: 0.3rem;
  font-family: 'Cinzel', serif;
}

.stat-box p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================================
   LIVROS AUTORAIS & PUBLICações
   ========================================= */
.books-section {
  padding: 6rem 0;
  background: rgba(15, 51, 54, 0.4);
  border-top: 1px solid rgba(45, 138, 141, 0.2);
}

.books-grid {
  display: grid;
  grid-template-columns: minmax(420px, 900px);
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.book-card {
  background: rgba(15, 51, 54, 0.7);
  border: 1px solid var(--glass-dark-border);
  border-radius: 26px;
  padding: 3rem;
  display: flex;
  gap: 2.8rem;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.book-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-bright);
  box-shadow: var(--shadow-gold);
}

.book-card.available-now {
  border-left: 5px solid var(--bright-teal);
}

.book-card.presale-card {
  border-left: 5px solid var(--gold-accent);
  background: rgba(20, 65, 68, 0.85);
}

.book-cover {
  width: 240px;
  aspect-ratio: 2 / 3;
  border: 2px solid var(--gold-accent);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-shadow: 12px 16px 32px rgba(0,0,0,0.7);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.book-cover:hover {
  transform: translateY(-5px) scale(1.02);
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-highlight {
  background: linear-gradient(145deg, #1E5A5C 0%, #0D3B3E 60%, #061A1C 100%);
}

.cover-reset {
  background: linear-gradient(145deg, #2A1810 0%, #1A2E32 50%, #081C1E 100%);
  border-color: #E68A00;
}

.book-tag-top {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.book-cover-title {
  font-family: 'Cinzel', serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.book-details {
  flex-grow: 1;
}

.book-status-row {
  margin-bottom: 0.8rem;
}

.badge-available {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  background: rgba(45, 138, 141, 0.25);
  border: 1px solid var(--bright-teal);
  color: #72F2F6;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-presale {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  background: rgba(200, 168, 107, 0.22);
  border: 1px solid var(--gold-accent);
  color: var(--gold-bright);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.book-details h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.65rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.book-subtitle {
  color: var(--gold-bright) !important;
  font-size: 0.98rem !important;
  font-weight: 600;
  margin-bottom: 1.2rem !important;
  font-style: italic;
}

.book-details p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.book-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.book-highlights li {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.book-highlights li i {
  margin-top: 0.22rem;
  flex-shrink: 0;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

/* =========================================
   FAQ / DÚVIDAS FREQUENTES
   ========================================= */
.faq-section {
  padding: 6rem 0;
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: rgba(15, 51, 54, 0.5);
  border: 1px solid rgba(30, 90, 92, 0.35);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-accent);
  background: rgba(15, 51, 54, 0.85);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
}

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

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 168, 107, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--gold-accent);
  color: var(--primary-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.8rem;
  transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* =========================================
   CTA FINAL & FOOTER
   ========================================= */
.cta-final-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--primary-dark) 0%, #051314 100%);
  position: relative;
  text-align: center;
  border-top: 1px solid var(--glass-dark-border);
}

.cta-final-box {
  max-width: 880px;
  margin: 0 auto;
  background: radial-gradient(circle at center, rgba(30, 90, 92, 0.35) 0%, rgba(15, 51, 54, 0.8) 100%);
  border: 1px solid var(--gold-accent);
  border-radius: 32px;
  padding: 5rem 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(200, 168, 107, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-final-box h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.cta-slogan-official {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--gold-bright);
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.cta-final-box p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.footer {
  padding: 4rem 0 2.5rem;
  background: #040E0F;
  border-top: 1px solid rgba(45, 138, 141, 0.2);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-left h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.footer-left p {
  color: var(--gold-bright);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-item:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: #566D6F;
}

/* =========================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================= */
@media (max-width: 992px) {
  .hero-grid,
  .banner-card,
  .protocol-grid,
  .solutions-grid,
  .b2b-banner,
  .b2b-grid,
  .widget-content-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero {
    padding-top: 7rem;
    text-align: center;
  }

  .hero-quote {
    text-align: left;
  }

  .hero-tags,
  .hero-actions {
    justify-content: center;
  }

  .banner-card {
    padding: 2.5rem;
  }

  .floating-badge {
    position: static;
    margin: 1rem auto;
    max-width: 320px;
    animation: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .pillars-grid,
  .solutions-grid,
  .books-grid {
    grid-template-columns: 1fr;
  }

  .book-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.8rem;
    padding: 2.2rem 1.5rem;
  }

  .book-cover {
    width: 200px;
    margin: 0 auto;
  }

  .book-actions {
    justify-content: center;
  }

  .book-highlights li {
    text-align: left;
  }

  .b2b-banner {
    padding: 2.2rem 1.5rem;
  }

  .hero-social-connect {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .social-links-row {
    justify-content: center;
  }

  .blog-sync-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .sync-info {
    flex-direction: column;
    text-align: center;
  }

  .sync-actions {
    justify-content: center;
    width: 100%;
  }

  .sync-actions .btn {
    width: 100%;
  }

  .experience-stats {
    grid-template-columns: 1fr;
  }

  .cta-final-box {
    padding: 3.5rem 1.8rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}
