/* ==========================================================================
   DÉBORA ALVES — SUPERVISÃO CLÍNICA ABA & QASP-S
   Design System & Styling
   Paleta: Terracota, Creme, Carvão, Sage, Lavanda, Off-White
   ========================================================================== */

:root {
  /* Cores Principais */
  --terracota: #C97B5E;
  --terracota-dark: #A95D42;
  --terracota-light: #E8A68E;
  --terracota-soft: #F9EFEA;
  
  --sage: #739070;
  --sage-dark: #587355;
  --sage-light: #A3BDA0;
  --sage-soft: #EEF4ED;
  
  --lavanda: #9784B0;
  --lavanda-soft: #F3EFF8;
  
  --carvao: #232220;
  --carvao-medium: #3E3B37;
  --carvao-light: #635F59;
  --grafite-suave: #858079;
  
  --creme: #F5EDE0;
  --creme-dark: #EADBC8;
  --offwhite: #FAF7F2;
  --white: #FFFFFF;
  
  /* Gradientes & Sombras */
  --bg-gradient-warm: linear-gradient(180deg, #FAF7F2 0%, #F5EDE0 100%);
  --bg-gradient-hero: linear-gradient(135deg, #FAF7F2 0%, #F6EFE5 50%, #EFE5D7 100%);
  --bg-gradient-dark: linear-gradient(145deg, #242220 0%, #1A1918 100%);
  --shadow-sm: 0 2px 8px rgba(35, 34, 32, 0.04);
  --shadow-md: 0 8px 24px rgba(35, 34, 32, 0.08);
  --shadow-lg: 0 16px 40px rgba(35, 34, 32, 0.12);
  --shadow-xl: 0 24px 60px rgba(201, 123, 94, 0.15);
  
  /* Tipografia */
  --font-title: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  
  /* Espaçamentos & Raios */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--offwhite);
  color: var(--carvao);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP BAR & BANNER
   ========================================================================== */
.topbar {
  background-color: var(--carvao);
  color: var(--creme);
  font-size: 0.85rem;
  padding: 8px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-badge {
  background: rgba(201, 123, 94, 0.25);
  color: var(--terracota-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.topbar-link {
  color: var(--terracota-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.topbar-link:hover {
  color: var(--white);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 123, 94, 0.12);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.brand-name {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--carvao);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-name span {
  color: var(--terracota);
}

.brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grafite-suave);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--carvao-medium);
  position: relative;
  padding: 4px 0;
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 24px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--carvao);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  letter-spacing: -0.2px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--terracota);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(201, 123, 94, 0.3);
}

.btn-primary:hover {
  background: var(--terracota-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(201, 123, 94, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: var(--creme);
  color: var(--carvao);
  border: 1px solid var(--creme-dark);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--terracota);
  color: var(--terracota);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--carvao);
  border: 2px solid var(--carvao);
}

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45);
  color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 60px 0 90px;
  background: var(--bg-gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 123, 94, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(201, 123, 94, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.infinity-symbol {
  font-size: 1.2rem;
  color: var(--terracota);
  font-weight: 900;
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--carvao-medium);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.18;
  color: var(--carvao);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--terracota);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--carvao-light);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--carvao-medium);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-pill svg {
  color: var(--sage);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 123, 94, 0.2);
}

.proof-item {
  display: flex;
  flex-direction: column;
}

.proof-number {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--terracota);
  line-height: 1;
}

.proof-label {
  font-size: 0.78rem;
  color: var(--carvao-light);
  font-weight: 600;
}

/* Imagem Hero */
.hero-visual {
  position: relative;
}

.hero-card-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--white);
}

.hero-card-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  transition: var(--transition-slow);
}

.hero-card-img:hover img {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(201, 123, 94, 0.15);
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.floating-badge.badge-top {
  top: 24px;
  left: -20px;
}

.floating-badge.badge-bottom {
  bottom: 24px;
  right: -20px;
  animation-delay: 2s;
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--terracota-soft);
  color: var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.badge-icon.sage-bg {
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.badge-text-title {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--carvao);
  line-height: 1.2;
}

.badge-text-sub {
  font-size: 0.75rem;
  color: var(--carvao-light);
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* ==========================================================================
   SECTIONS SHARED STYLES
   ========================================================================== */
section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracota);
  background: var(--terracota-soft);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-tag.sage-tag {
  color: var(--sage-dark);
  background: var(--sage-soft);
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--carvao);
  line-height: 1.22;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--carvao-light);
  line-height: 1.6;
}

/* ==========================================================================
   PARA QUEM É (TARGET AUDIENCE)
   ========================================================================== */
.audience-section {
  background: var(--white);
}

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

.audience-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border-color: rgba(201, 123, 94, 0.2);
}

.audience-card:hover::before {
  background: var(--terracota);
}

.audience-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--creme);
  color: var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.audience-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--carvao);
  margin-bottom: 12px;
  line-height: 1.3;
}

.audience-text {
  font-size: 0.92rem;
  color: var(--carvao-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.audience-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--carvao-medium);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.audience-list li svg {
  color: var(--terracota);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   DORES E DESAFIOS (PROBLEMA & TRANSFORMAÇÃO)
   ========================================================================== */
.pains-section {
  background: var(--creme);
  position: relative;
}

.pains-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pains-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--terracota);
}

.pains-box-title {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--carvao);
  margin-bottom: 24px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pain-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.pain-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FDF2F0;
  color: #D9534F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pain-text strong {
  display: block;
  font-size: 0.98rem;
  color: var(--carvao);
  margin-bottom: 2px;
}

.pain-text p {
  font-size: 0.88rem;
  color: var(--carvao-light);
  line-height: 1.45;
}

.solution-box {
  background: var(--bg-gradient-dark);
  color: var(--creme);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.solution-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 123, 94, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.solution-box-title {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.solution-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(115, 144, 112, 0.25);
  color: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.solution-text strong {
  display: block;
  font-size: 0.98rem;
  color: var(--white);
  margin-bottom: 2px;
}

.solution-text p {
  font-size: 0.88rem;
  color: var(--creme-dark);
  line-height: 1.45;
}

/* ==========================================================================
   PILARES & PROTOCOLOS
   ========================================================================== */
.pillars-section {
  background: var(--offwhite);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 123, 94, 0.25);
}

.pillar-number {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(201, 123, 94, 0.25);
  margin-bottom: 12px;
  line-height: 1;
}

.pillar-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--carvao);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--carvao-light);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pillar-tag {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--creme);
  color: var(--carvao-medium);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   FORMATOS DE SUPERVISÃO (PLANS / PACKAGES)
   ========================================================================== */
.formats-section {
  background: var(--white);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.format-card {
  background: var(--offwhite);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.format-card.featured {
  background: var(--white);
  border: 2px solid var(--terracota);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.format-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.format-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracota);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.format-header {
  margin-bottom: 24px;
  text-align: center;
}

.format-title {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--carvao);
  margin-bottom: 8px;
}

.format-desc {
  font-size: 0.9rem;
  color: var(--carvao-light);
}

.format-meta {
  background: var(--creme);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  text-align: center;
}

.format-meta-item {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--carvao-medium);
}

.format-meta-item span {
  color: var(--terracota);
}

.format-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.format-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--carvao-medium);
}

.format-features li svg {
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   SOBRE A SUPERVISORA (DÉBORA ALVES)
   ========================================================================== */
.about-section {
  background: var(--bg-gradient-warm);
  position: relative;
  overflow: hidden;
}

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

.about-img-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--white);
}

.about-card-stat {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: space-around;
  text-align: center;
  border: 1px solid rgba(201, 123, 94, 0.15);
}

.stat-item-num {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--terracota);
  line-height: 1;
}

.stat-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--carvao-light);
  margin-top: 4px;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-title {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--carvao);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--carvao-medium);
  border-left: 3px solid var(--terracota);
  padding-left: 18px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.about-text {
  font-size: 0.98rem;
  color: var(--carvao-light);
  line-height: 1.68;
  margin-bottom: 28px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.cred-badge {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cred-badge svg {
  color: var(--terracota);
  flex-shrink: 0;
}

.cred-badge-text strong {
  display: block;
  font-size: 0.86rem;
  color: var(--carvao);
  line-height: 1.2;
}

.cred-badge-text span {
  font-size: 0.75rem;
  color: var(--grafite-suave);
}

/* ==========================================================================
   SIMULADOR / QUIZ INTERATIVO
   ========================================================================== */
.quiz-section {
  background: var(--white);
}

.quiz-box {
  background: var(--bg-gradient-warm);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 123, 94, 0.2);
  max-width: 900px;
  margin: 0 auto;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.quiz-step-header {
  margin-bottom: 28px;
  text-align: center;
}

.quiz-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--terracota);
  width: 33.33%;
  transition: width 0.4s ease;
}

.quiz-step-title {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--carvao);
  margin-bottom: 8px;
}

.quiz-step-sub {
  font-size: 0.9rem;
  color: var(--carvao-light);
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.quiz-option {
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.06);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.quiz-option:hover {
  border-color: var(--terracota-light);
  transform: translateY(-2px);
}

.quiz-option.selected {
  border-color: var(--terracota);
  background: var(--terracota-soft);
}

.quiz-option-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--grafite-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quiz-option.selected .quiz-option-radio {
  border-color: var(--terracota);
}

.quiz-option.selected .quiz-option-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracota);
}

.quiz-option-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--carvao);
  margin-bottom: 2px;
}

.quiz-option-content span {
  font-size: 0.8rem;
  color: var(--carvao-light);
}

.quiz-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Quiz Resultado */
.quiz-result {
  text-align: center;
  padding: 20px 0;
}

.quiz-result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.quiz-result-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--carvao);
  margin-bottom: 12px;
}

.quiz-result-box {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 28px;
  text-align: left;
  border-left: 4px solid var(--terracota);
}

.quiz-result-name {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--terracota);
  margin-bottom: 8px;
}

.quiz-result-desc {
  font-size: 0.95rem;
  color: var(--carvao-medium);
  line-height: 1.6;
  margin-bottom: 16px;
}

.quiz-result-perks {
  list-style: none;
  font-size: 0.88rem;
  color: var(--carvao-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz-result-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quiz-result-perks li svg {
  color: var(--sage);
}

/* ==========================================================================
   FORMULÁRIO DE CANDIDATURA & CONTATO
   ========================================================================== */
.contact-section {
  background: var(--creme);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--carvao);
  margin-bottom: 16px;
  line-height: 1.25;
}

.contact-info-desc {
  font-size: 1rem;
  color: var(--carvao-light);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-card-direct {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--terracota-soft);
  color: var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--carvao);
}

.contact-card-text span {
  font-size: 0.85rem;
  color: var(--carvao-light);
}

.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--carvao);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--carvao);
  background: var(--offwhite);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--terracota);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 123, 94, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-legal-note {
  font-size: 0.76rem;
  color: var(--grafite-suave);
  margin-top: 14px;
  text-align: center;
  line-height: 1.4;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background: var(--white);
}

.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--carvao);
  cursor: pointer;
}

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

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--carvao);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--terracota);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: var(--carvao-light);
  line-height: 1.65;
}

.faq-answer-inner p {
  margin-bottom: 10px;
}
.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--carvao);
  color: var(--creme);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-sub {
  color: var(--creme-dark);
}

.footer-text {
  font-size: 0.88rem;
  color: #B8B3AC;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--terracota);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-links a {
  color: #B8B3AC;
}

.footer-links a:hover {
  color: var(--terracota-light);
  padding-left: 4px;
}

.footer-ethics-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: #B8B3AC;
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: #8C8780;
}

.footer-legal-tag {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-tooltip {
  background: var(--white);
  color: var(--carvao);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.08);
  animation: pulseTooltip 3s infinite;
  display: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  display: block;
}

.whatsapp-btn-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-size: 1.8rem;
  transition: var(--transition);
}

.whatsapp-btn-circle:hover {
  transform: scale(1.08);
  background: #20BD5A;
}

@keyframes pulseTooltip {
  0%, 100% { opacity: 1; transform: translateX(0); }
  50% { opacity: 0.85; transform: translateX(-4px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-card-img img {
    height: 420px;
  }
  
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .format-card.featured {
    transform: none;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-photo {
    height: 440px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  /* Mobile Menu Open */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  
  .hero-title {
    font-size: 2.1rem;
  }
  
  .section-title {
    font-size: 1.85rem;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
  }
  
  .pains-grid {
    grid-template-columns: 1fr;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .credentials-grid {
    grid-template-columns: 1fr;
  }
  
  .quiz-box {
    padding: 28px 20px;
  }
  
  .quiz-options {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-card {
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-badge {
    position: static;
    margin-top: 14px;
  }
}
