/* ===================================================
   MÃES E SEUS MÚLTIPLOS PAPÉIS — Estilos Principais
=================================================== */

:root {
  --rose: #f9d4d4;
  --rose-mid: #f4b8b8;
  --rose-dark: #e88080;
  --rose-text: #b84c4c;

  --lavender: #e8dff5;
  --lavender-mid: #d0bfee;
  --lavender-dark: #9b7cc8;
  --lavender-text: #6b4fa8;

  --mint: #d4eee5;
  --mint-mid: #b3dccb;
  --mint-dark: #6ab89a;
  --mint-text: #2d7a5c;

  --peach: #fde8d8;
  --peach-mid: #f9cead;
  --peach-dark: #e8956a;
  --peach-text: #b05a28;

  --cream: #fdfaf5;
  --warm-white: #fffbf7;

  --gray-100: #f8f6f4;
  --gray-200: #ede8e3;
  --gray-400: #b8ada6;
  --gray-600: #7c6f67;
  --gray-800: #3d3530;
  --gray-900: #211d1a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.13);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--warm-white); line-height: 1.7; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; }
p { font-size: 1rem; color: var(--gray-600); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { color: var(--gray-800); }
em { font-style: italic; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,251,247,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0.75rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; position: relative; }
.nav-brand { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--rose-text); white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; flex-wrap: wrap; }
.nav-links li a { padding: 0.35rem 0.65rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700; color: var(--gray-600); transition: all var(--transition); white-space: nowrap; }
.nav-links li a:hover, .nav-links li a.active { background: var(--rose); color: var(--rose-text); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--gray-600); padding: 0.3rem; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff0f0 0%, #f5e8ff 40%, #e8f8f0 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 1.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: 0.35; }
.shape-1 { width: 500px; height: 500px; background: radial-gradient(circle, #f9d4d4, transparent 70%); top: -100px; left: -100px; }
.shape-2 { width: 400px; height: 400px; background: radial-gradient(circle, #e8dff5, transparent 70%); bottom: -50px; right: 200px; }
.shape-3 { width: 300px; height: 300px; background: radial-gradient(circle, #d4eee5, transparent 70%); top: 50%; right: -50px; transform: translateY(-50%); }
.shape-4 { width: 200px; height: 200px; background: radial-gradient(circle, #fde8d8, transparent 70%); top: 20%; left: 40%; }

.hero-content { flex: 1; max-width: 620px; position: relative; z-index: 1; text-align: left; }
.hero-badge { display: inline-block; background: var(--rose); color: var(--rose-text); border-radius: 20px; padding: 0.35rem 1rem; font-size: 0.8rem; font-weight: 700; margin-bottom: 1.2rem; }
.hero-content h1 { margin-bottom: 1.2rem; }
.hero-content h1 em { font-style: normal; background: linear-gradient(135deg, #b84c4c, #9b7cc8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 1.8rem; line-height: 1.8; }
.hero-credits { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-credits span { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--gray-400); }
.hero-credits i { color: var(--rose-dark); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.8rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: transform var(--transition), box-shadow var(--transition); }
.hero-btn-primary { background: linear-gradient(135deg, var(--rose-dark), var(--lavender-dark)); color: white; box-shadow: 0 4px 20px rgba(232,128,128,0.35); }
.hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(232,128,128,0.45); }
.hero-btn-outline { background: white; color: var(--lavender-text); border: 2px solid var(--lavender-dark); }
.hero-btn-outline:hover { background: var(--lavender); transform: translateY(-3px); }

.hero-illustration { flex: 0 0 auto; position: relative; width: 320px; height: 320px; display: flex; align-items: center; justify-content: center; z-index: 1; }
.illus-circle { width: 200px; height: 200px; background: linear-gradient(135deg, var(--rose), var(--lavender)); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); animation: floatCircle 4s ease-in-out infinite; }
@keyframes floatCircle { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.illus-emoji { font-size: 4.5rem; }
.illus-stat { position: absolute; background: white; border-radius: var(--radius-md); padding: 0.7rem 1rem; box-shadow: var(--shadow-md); display: flex; flex-direction: column; align-items: center; line-height: 1.2; animation: floatStat 5s ease-in-out infinite; }
.illus-stat-1 { top: 10px; left: 10px; animation-delay: 0s; }
.illus-stat-2 { bottom: 20px; left: 0; animation-delay: 1.5s; }
.illus-stat-3 { top: 60px; right: 0; animation-delay: 0.8s; }
@keyframes floatStat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.illus-stat strong { font-size: 1.3rem; color: var(--rose-text); font-family: var(--font-display); }
.illus-stat span { font-size: 0.68rem; color: var(--gray-400); font-weight: 700; text-align: center; }

/* ===== SEÇÕES ===== */
.section { padding: 5rem 0; }
.section-light { background: var(--warm-white); }
.section-blush { background: linear-gradient(135deg, #fff5f5, #fde8ff); }
.section-lavender { background: linear-gradient(135deg, #f3eeff, #e8f0ff); }
.section-mint { background: linear-gradient(135deg, #edfff6, #e8f8f5); }
.section-peach { background: linear-gradient(135deg, #fff3eb, #ffe8d4); }
.section-frases { background: linear-gradient(135deg, #1a0a2e, #2d1b4e); }
.section-quiz { background: linear-gradient(135deg, #fff0f5, #f0e8ff); }

.section-header { text-align: center; margin-bottom: 3.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-tag { display: inline-block; background: var(--rose); color: var(--rose-text); border-radius: 20px; padding: 0.3rem 1rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 1rem; }
.section-frases .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.section-frases .section-header h2 { color: white; }
.section-frases .section-intro { color: rgba(255,255,255,0.7); }
.section-header h2 { margin-bottom: 1rem; }
.section-intro { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; }
.subsection-title { text-align: center; margin-bottom: 2rem; font-family: var(--font-display); font-size: 1.3rem; color: var(--gray-800); }

/* ===== FLIP CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.flip-card { background: transparent; min-height: 230px; perspective: 1000px; cursor: pointer; border: none !important; padding: 0 !important; }
.flip-inner { position: relative; width: 100%; height: 100%; min-height: 230px; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform-style: preserve-3d; }
.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back { position: absolute; inset: 0; border-radius: var(--radius-md); padding: 2rem; backface-visibility: hidden; -webkit-backface-visibility: hidden; display: flex; flex-direction: column; justify-content: flex-start; overflow: hidden; }
.flip-back { transform: rotateY(180deg); }
.card-rose .flip-front, .card-rose .flip-back { background: var(--rose); }
.card-lavender .flip-front, .card-lavender .flip-back { background: var(--lavender); }
.card-mint .flip-front, .card-mint .flip-back { background: var(--mint); }
.card-peach .flip-front, .card-peach .flip-back { background: var(--peach); }
.flip-front::before, .flip-back::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.card-rose .flip-front::before, .card-rose .flip-back::before { background: var(--rose-dark); }
.card-lavender .flip-front::before, .card-lavender .flip-back::before { background: var(--lavender-dark); }
.card-mint .flip-front::before, .card-mint .flip-back::before { background: var(--mint-dark); }
.card-peach .flip-front::before, .card-peach .flip-back::before { background: var(--peach-dark); }
.card-icon { width: 48px; height: 48px; background: white; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--rose-text); margin-bottom: 1rem; box-shadow: var(--shadow-sm); }
.card-lavender .card-icon { color: var(--lavender-text); }
.card-mint .card-icon { color: var(--mint-text); }
.card-peach .card-icon { color: var(--peach-text); }
.flip-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.flip-card p { font-size: 0.88rem; line-height: 1.6; }
.flip-hint { margin-top: auto; padding-top: 0.8rem; font-size: 0.75rem; font-weight: 700; opacity: 0.55; display: flex; align-items: center; gap: 0.3rem; }
.flip-back p strong { font-weight: 700; }
.info-card { box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.flip-card:hover .flip-inner:not(.flipped) { transform: rotateY(5deg); }
.flip-card.flipped:hover .flip-inner { transform: rotateY(180deg) rotateY(5deg); }

/* ===== CARROSSEL DE FRASES ===== */
.carousel-wrapper { position: relative; display: flex; align-items: center; gap: 1rem; }
.carousel-track-container { flex: 1; overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.quote-slide { min-width: 100%; padding: 0 0.5rem; }
.quote-bubble { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg); padding: 3rem 3rem 2.5rem; position: relative; margin-bottom: 1.5rem; }
.quote-icon { position: absolute; top: 1.5rem; left: 2rem; font-size: 2rem; color: var(--rose-mid); opacity: 0.7; }
.quote-bubble p { font-size: 1.4rem; font-family: var(--font-display); font-style: italic; color: white; line-height: 1.6; text-align: center; }
.quote-meta { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.quote-type { display: inline-block; background: rgba(155,124,200,0.5); color: var(--lavender-mid); border-radius: 20px; padding: 0.3rem 1rem; font-size: 0.8rem; font-weight: 700; }
.quote-impact { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.carousel-btn { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); color: white; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); backdrop-filter: blur(8px); }
.carousel-btn:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all var(--transition); border: none; }
.carousel-dot.active { background: white; transform: scale(1.3); }

/* ===== ABAS INTERATIVAS ===== */
.tabs-container { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; margin-bottom: 2rem; }
.tabs-header { display: flex; border-bottom: 2px solid var(--gray-200); overflow-x: auto; scrollbar-width: none; }
.tabs-header::-webkit-scrollbar { display: none; }
.tab-btn { flex: 1; min-width: 130px; padding: 1rem 1.5rem; background: none; border: none; font-family: var(--font-body); font-size: 0.88rem; font-weight: 700; color: var(--gray-400); cursor: pointer; transition: all var(--transition); display: flex; align-items: center; justify-content: center; gap: 0.5rem; border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; }
.tab-btn:hover { color: var(--rose-text); background: var(--rose); }
.tab-btn.active { color: var(--rose-text); border-bottom-color: var(--rose-dark); background: #fff5f5; }
.tabs-body { padding: 2rem; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeInTab 0.35s ease; }
@keyframes fadeInTab { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tab-content-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.tab-insight { background: var(--gray-100); border-radius: var(--radius-md); padding: 1.5rem; border-left: 4px solid var(--rose-dark); }
.tab-insight h4 { margin-bottom: 0.6rem; font-size: 0.95rem; }
.tab-insight p { font-size: 0.9rem; }

/* ===== HIGHLIGHTS ===== */
.highlight-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-top: 2rem; }
.highlight-box { background: white; border-radius: var(--radius-md); padding: 1.5rem 1rem; text-align: center; box-shadow: var(--shadow-sm); border: 2px solid var(--rose); transition: transform var(--transition); }
.highlight-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.highlight-num { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--rose-text); line-height: 1; margin-bottom: 0.4rem; }
.highlight-label { font-size: 0.82rem; color: var(--gray-400); font-weight: 700; }

/* ===== ROLES INTERATIVO ===== */
.roles-interactive { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: start; margin-bottom: 2rem; }
.roles-center-area { display: flex; align-items: flex-start; padding-top: 0.5rem; }
.roles-woman { display: flex; flex-direction: column; align-items: center; background: white; border-radius: 50%; width: 110px; height: 110px; justify-content: center; box-shadow: var(--shadow-lg); border: 3px solid var(--rose); }
.roles-icon { font-size: 2.8rem; }
.roles-label { font-size: 0.72rem; font-weight: 700; color: var(--rose-text); }
.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.role-bubble { background: white; border-radius: var(--radius-md); padding: 0.9rem 0.7rem; box-shadow: var(--shadow-sm); font-size: 0.78rem; font-weight: 700; color: var(--gray-600); text-align: center; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; border: 2px solid transparent; transition: all var(--transition); }
.role-bubble:hover, .role-bubble.active { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.role-bubble i { font-size: 1.3rem; }
.bubble-1 i { color: var(--rose-dark); }
.bubble-1.active { border-color: var(--rose-dark); background: var(--rose); color: var(--rose-text); }
.bubble-2 i { color: var(--lavender-dark); }
.bubble-2.active { border-color: var(--lavender-dark); background: var(--lavender); color: var(--lavender-text); }
.bubble-3 i { color: var(--mint-dark); }
.bubble-3.active { border-color: var(--mint-dark); background: var(--mint); color: var(--mint-text); }
.bubble-4 i { color: var(--rose-dark); }
.bubble-4.active { border-color: var(--rose-dark); background: var(--rose); color: var(--rose-text); }
.bubble-5 i { color: var(--lavender-dark); }
.bubble-5.active { border-color: var(--lavender-dark); background: var(--lavender); color: var(--lavender-text); }
.bubble-6 i { color: var(--mint-dark); }
.bubble-6.active { border-color: var(--mint-dark); background: var(--mint); color: var(--mint-text); }

.role-detail-panel { background: white; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-md); border-left: 5px solid var(--rose-dark); min-height: 200px; }
.role-detail { display: none; animation: fadeInTab 0.3s ease; }
.role-detail.active { display: block; }
.role-detail h3 { margin-bottom: 0.8rem; font-size: 1.2rem; }
.role-detail p { font-size: 0.93rem; line-height: 1.7; }
.role-stat { margin-top: 1.2rem; background: var(--gray-100); border-radius: var(--radius-sm); padding: 0.9rem 1.2rem; font-size: 0.88rem; color: var(--gray-600); }
.role-stat strong { color: var(--rose-text); font-size: 1.1rem; }

/* ===== TWO COL / THEORY ===== */
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.theory-box { background: white; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.theory-box h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.theory-item { border-radius: var(--radius-sm); padding: 1rem; margin-top: 1rem; }
.theory-negative { border-left: 4px solid var(--rose-dark); background: #fff5f5; }
.theory-positive { border-left: 4px solid var(--mint-dark); background: #f0fff8; }
.theory-item p { font-size: 0.88rem; }
.insight-box { background: var(--lavender); border-radius: var(--radius-sm); padding: 1.5rem; border-left: 4px solid var(--lavender-dark); }
.insight-box i { color: var(--lavender-dark); margin-bottom: 0.5rem; display: block; font-size: 1.2rem; }
.insight-box p { font-size: 0.93rem; }
.chart-card { background: white; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.chart-card h3 { font-size: 1rem; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.chart-card h3 i { color: var(--rose-dark); }
.chart-note { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 1.2rem; font-style: italic; }
.chart-wrap { position: relative; }
.charts-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }

/* ===== DAS FACTORS ===== */
.das-explainer { margin-bottom: 3rem; }
.das-intro-card { background: white; border-radius: var(--radius-md); padding: 2.5rem; box-shadow: var(--shadow-md); display: flex; gap: 2rem; align-items: flex-start; border-left: 6px solid var(--lavender-dark); }
.das-icon { flex: 0 0 auto; width: 70px; height: 70px; background: var(--lavender); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--lavender-text); }
.das-text h3 { margin-bottom: 0.6rem; }
.das-text p { font-size: 0.93rem; margin-bottom: 0.5rem; }
.das-factors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.das-factor { background: white; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; border: 2px solid transparent; transition: all var(--transition); }
.das-factor:hover, .das-factor:focus { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--lavender-dark); outline: none; }
.das-factor-header { padding: 0.9rem 1.2rem; display: flex; align-items: center; justify-content: space-between; }
.factor-1 { background: var(--rose); color: var(--rose-text); }
.factor-2 { background: var(--lavender); color: var(--lavender-text); }
.factor-3 { background: var(--mint); color: var(--mint-text); }
.factor-4 { background: var(--peach); color: var(--peach-text); }
.factor-5 { background: #ffecd9; color: #b06030; }
.factor-6 { background: #e8f0ff; color: #3050b0; }
.factor-7 { background: #fdf0e8; color: #a05020; }
.factor-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; opacity: 0.65; }
.das-factor h4 { margin: 0.8rem 1.2rem 0.3rem; color: var(--gray-900); font-size: 0.95rem; }
.das-factor p { margin: 0 1.2rem 0.8rem; font-size: 0.83rem; line-height: 1.5; }
.das-factor-bar { margin: 0 1.2rem 1rem; }
.das-bar-fill { height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--lavender-dark), var(--rose-dark)); width: var(--pct, 0%); transition: width 1s ease; }
.das-factor-bar span { font-size: 0.75rem; color: var(--gray-400); font-weight: 700; margin-top: 0.3rem; display: block; }

/* ===== MODAL DOS FATORES ===== */
.factor-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: none; backdrop-filter: blur(4px); }
.factor-modal-overlay.open { display: block; animation: fadeOverlay 0.2s ease; }
@keyframes fadeOverlay { from { opacity: 0; } to { opacity: 1; } }
.factor-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); z-index: 2001; width: min(600px, 90vw); max-height: 80vh; overflow-y: auto; display: none; }
.factor-modal.open { display: block; animation: scaleModal 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
@keyframes scaleModal { from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; } to { transform: translate(-50%, -50%) scale(1); opacity: 1; } }
.factor-modal-content { background: white; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); position: relative; }
.factor-modal-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--gray-100); font-size: 1.2rem; cursor: pointer; color: var(--gray-600); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.factor-modal-close:hover { background: var(--rose); color: var(--rose-text); }
.modal-factor-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.modal-factor-icon { width: 60px; height: 60px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.modal-factor-header h3 { font-size: 1.4rem; }
.modal-section { margin-bottom: 1.2rem; }
.modal-section h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-400); margin-bottom: 0.5rem; }
.modal-section p, .modal-section li { font-size: 0.93rem; line-height: 1.7; color: var(--gray-600); }
.modal-section ul { padding-left: 1.2rem; list-style: disc; }
.modal-score-bar { height: 12px; border-radius: 6px; background: var(--gray-200); overflow: hidden; margin: 0.5rem 0; }
.modal-score-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--lavender-dark), var(--rose-dark)); }
.modal-tip { background: var(--mint); border-radius: var(--radius-sm); padding: 1rem; border-left: 4px solid var(--mint-dark); }
.modal-tip p { font-size: 0.88rem; }
.modal-tip strong { color: var(--mint-text); }

/* ===== SRQ TERMÔMETRO ===== */
.srq-explainer { margin-bottom: 3rem; }
.srq-card { background: white; border-radius: var(--radius-md); padding: 2.5rem; box-shadow: var(--shadow-md); border-left: 6px solid var(--mint-dark); max-width: 700px; margin: 0 auto; }
.srq-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.srq-header i { font-size: 2rem; color: var(--mint-dark); }
.srq-card p { font-size: 0.93rem; line-height: 1.8; }
.srq-threshold { margin-top: 1.5rem; background: var(--mint); border-radius: var(--radius-sm); padding: 1rem 1.5rem; }
.threshold-item { display: flex; align-items: center; gap: 1rem; }
.threshold-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--mint-text); white-space: nowrap; }
.threshold-label { font-size: 0.9rem; color: var(--gray-600); }

.srq-thermometer-section { background: white; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); margin-bottom: 3rem; border: 1px solid var(--gray-200); }
.srq-thermometer-section .subsection-title { margin-bottom: 1.5rem; }
.thermometer-wrap { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; }
.srq-slider { -webkit-appearance: none; width: 100%; max-width: 60px; height: 250px; writing-mode: vertical-lr; direction: rtl; background: transparent; outline: none; cursor: pointer; }
.srq-slider::-webkit-slider-track { background: linear-gradient(to top, #6ab89a, #fde8d8, #e88080); border-radius: 6px; width: 12px; }
.srq-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; background: white; border: 3px solid var(--rose-dark); border-radius: 50%; box-shadow: var(--shadow-sm); cursor: pointer; }
.srq-slider::-moz-range-track { background: linear-gradient(to top, #6ab89a, #fde8d8, #e88080); border-radius: 6px; width: 12px; }
.srq-slider::-moz-range-thumb { width: 28px; height: 28px; background: white; border: 3px solid var(--rose-dark); border-radius: 50%; cursor: pointer; }
.thermometer-display { display: flex; flex-direction: column; gap: 1rem; }
.thermo-score { display: flex; align-items: baseline; gap: 0.5rem; }
.thermo-score span { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--rose-text); line-height: 1; }
.thermo-score small { font-size: 1rem; color: var(--gray-400); }
.thermo-label { font-size: 1rem; font-weight: 700; color: var(--gray-700); padding: 0.6rem 1rem; background: var(--gray-100); border-radius: var(--radius-sm); }
.thermo-bar-wrap { margin-top: 0.5rem; }
.thermo-bar { height: 20px; background: var(--gray-200); border-radius: 10px; overflow: hidden; position: relative; margin-bottom: 0.6rem; }
.thermo-fill { height: 100%; border-radius: 10px; transition: width 0.3s ease, background 0.3s ease; }
.thermo-legend { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--gray-400); }

.srq-symptoms-grid { margin-bottom: 3rem; }
.symptoms-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.symptom-card { background: white; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); border-top: 5px solid var(--gray-200); text-align: center; transition: transform var(--transition); border: 1px solid var(--gray-200); }
.symptom-card:hover { transform: translateY(-5px); }
.symptom-somático { border-top-color: var(--rose-dark); }
.symptom-ansioso { border-top-color: var(--lavender-dark); }
.symptom-declinío { border-top-color: var(--peach-dark); }
.symptom-depressivo { border-top-color: #7ab2d4; }
.symptom-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 1rem; }
.symptom-somático .symptom-icon { background: var(--rose); color: var(--rose-text); }
.symptom-ansioso .symptom-icon { background: var(--lavender); color: var(--lavender-text); }
.symptom-declinío .symptom-icon { background: var(--peach); color: var(--peach-text); }
.symptom-depressivo .symptom-icon { background: #e0f0ff; color: #3878a8; }
.symptom-card h4 { margin-bottom: 0.6rem; font-size: 0.95rem; }
.symptom-card p { font-size: 0.85rem; }
.symptom-count { display: inline-block; margin-top: 1rem; background: var(--gray-100); border-radius: 20px; padding: 0.2rem 0.7rem; font-size: 0.78rem; font-weight: 700; color: var(--gray-400); }

/* ===== ACCORDION RESULTADOS ===== */
.findings-accordion { display: flex; flex-direction: column; gap: 0.8rem; }
.finding-item { background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); overflow: hidden; transition: box-shadow var(--transition); }
.finding-item[open] { box-shadow: var(--shadow-md); border-color: var(--rose); }
.finding-summary { display: flex; align-items: center; gap: 1rem; padding: 1.4rem 1.8rem; cursor: pointer; list-style: none; user-select: none; }
.finding-summary::-webkit-details-marker { display: none; }
.finding-summary:hover { background: var(--gray-100); }
.finding-item[open] .finding-summary { background: #fff5f5; }
.finding-num { flex: 0 0 auto; width: 42px; height: 42px; background: linear-gradient(135deg, var(--rose-dark), var(--lavender-dark)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.finding-summary h3 { flex: 1; font-size: 1rem; margin: 0; }
.finding-arrow { color: var(--gray-400); transition: transform var(--transition); flex: 0 0 auto; }
.finding-item[open] .finding-arrow { transform: rotate(180deg); }
.finding-body { padding: 1.5rem 1.8rem 1.8rem; border-top: 1px solid var(--gray-200); animation: fadeInTab 0.25s ease; }
.finding-body p { font-size: 0.93rem; line-height: 1.7; }
.correlation-arrow { display: flex; align-items: center; gap: 1rem; background: var(--mint); border-radius: var(--radius-sm); padding: 0.8rem 1.2rem; flex-wrap: wrap; margin-top: 1rem; }
.corr-label { font-size: 0.85rem; font-weight: 700; color: var(--mint-text); }
.correlation-arrow i { color: var(--mint-dark); font-size: 1.2rem; }
.finding-compare { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.compare-bar-item { display: grid; grid-template-columns: 130px 1fr 50px; align-items: center; gap: 0.8rem; font-size: 0.88rem; }
.compare-bar { background: var(--gray-200); border-radius: 6px; height: 14px; overflow: hidden; }
.compare-bar div { height: 100%; border-radius: 6px; }
.big-stat-box { background: linear-gradient(135deg, var(--rose), var(--lavender)); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; margin-top: 1.2rem; }
.big-stat-num { display: block; font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--rose-text); line-height: 1; }
.big-stat-label { font-size: 0.88rem; color: var(--gray-600); }

/* ===== QUIZ ===== */
.quiz-container { background: white; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); max-width: 700px; margin: 0 auto; }
.quiz-progress-bar-wrap { background: var(--gray-200); border-radius: 6px; height: 8px; margin-bottom: 1rem; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, var(--rose-dark), var(--lavender-dark)); border-radius: 6px; transition: width 0.5s ease; }
.quiz-step-label { font-size: 0.82rem; color: var(--gray-400); font-weight: 700; margin-bottom: 2rem; }
.quiz-question-area { min-height: 280px; }
.quiz-question { animation: fadeInTab 0.3s ease; }
.quiz-question-text { font-family: var(--font-display); font-size: 1.3rem; color: var(--gray-900); margin-bottom: 0.5rem; line-height: 1.4; }
.quiz-question-sub { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 2rem; font-style: italic; }
.quiz-options { display: flex; flex-direction: column; gap: 0.7rem; }
.quiz-option { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); cursor: pointer; transition: all var(--transition); background: white; font-family: var(--font-body); font-size: 0.93rem; color: var(--gray-700); text-align: left; }
.quiz-option:hover { border-color: var(--lavender-dark); background: var(--lavender); color: var(--lavender-text); }
.quiz-option.selected { border-color: var(--rose-dark); background: var(--rose); color: var(--rose-text); font-weight: 700; }
.quiz-option .option-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--gray-200); flex: 0 0 auto; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.quiz-option.selected .option-dot { background: var(--rose-dark); border-color: var(--rose-dark); }
.quiz-option.selected .option-dot::after { content: '✓'; color: white; font-size: 0.7rem; font-weight: 700; }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-200); }
.quiz-prev-btn, .quiz-next-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.5rem; border-radius: 50px; border: none; font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all var(--transition); }
.quiz-prev-btn { background: var(--gray-100); color: var(--gray-600); }
.quiz-prev-btn:hover:not(:disabled) { background: var(--gray-200); }
.quiz-prev-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.quiz-next-btn { background: linear-gradient(135deg, var(--rose-dark), var(--lavender-dark)); color: white; box-shadow: 0 3px 12px rgba(232,128,128,0.3); }
.quiz-next-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,128,128,0.4); }

.quiz-result { max-width: 700px; margin: 0 auto; animation: fadeInTab 0.4s ease; }
.quiz-result-inner { background: white; border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow-lg); text-align: center; }
.quiz-result-icon { font-size: 4rem; margin-bottom: 1rem; }
.quiz-result-inner h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.quiz-result-inner > p { font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.quiz-result-bars { text-align: left; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.result-bar-item { display: grid; grid-template-columns: 140px 1fr 40px; align-items: center; gap: 0.8rem; font-size: 0.88rem; color: var(--gray-600); }
.result-bar-track { background: var(--gray-200); border-radius: 6px; height: 10px; overflow: hidden; }
.result-bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--lavender-dark), var(--rose-dark)); transition: width 0.8s ease; }
.quiz-result-disclaimer { font-size: 0.82rem; color: var(--gray-400); background: var(--gray-100); border-radius: var(--radius-sm); padding: 0.8rem 1.2rem; margin-bottom: 1.5rem; }
.quiz-restart-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 2rem; background: linear-gradient(135deg, var(--rose-dark), var(--lavender-dark)); color: white; border: none; border-radius: 50px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all var(--transition); }
.quiz-restart-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== CONCLUSÃO ===== */
.lessons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.lesson-card { background: white; border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: transform var(--transition), box-shadow var(--transition); }
.lesson-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.lesson-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.lesson-card h3 { font-size: 1.05rem; margin-bottom: 0.7rem; }
.lesson-card p { font-size: 0.9rem; }
.lesson-1 { border-top: 4px solid var(--rose-dark); }
.lesson-2 { border-top: 4px solid var(--lavender-dark); }
.lesson-3 { border-top: 4px solid var(--mint-dark); }
.lesson-4 { border-top: 4px solid var(--peach-dark); }
.lesson-5 { border-top: 4px solid #7ab2d4; }
.lesson-6 { border-top: 4px solid var(--rose-dark); }

.call-to-action { background: linear-gradient(135deg, var(--rose), var(--lavender)); border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow-lg); }
.cta-content h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.cta-content > p { font-size: 1rem; color: var(--gray-600); margin-bottom: 2rem; max-width: 600px; }
.cta-resources { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.cta-resource { background: white; border-radius: var(--radius-sm); padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow-sm); transition: transform var(--transition); }
.cta-resource:hover { transform: translateY(-3px); }
.cta-resource i { font-size: 1.5rem; color: var(--rose-dark); flex: 0 0 auto; }
.cta-resource strong { display: block; font-size: 0.88rem; }
.cta-resource span { font-size: 0.8rem; color: var(--gray-400); }

/* ===== RODAPÉ ===== */
#footer { background: var(--gray-900); color: white; padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 2rem; }
.footer-brand h4 { font-family: var(--font-display); color: var(--rose); font-size: 1.2rem; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.footer-info h5, .footer-nav h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--rose); margin-bottom: 1rem; }
.footer-info p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.3rem; }
.footer-info strong { color: rgba(255,255,255,0.75); }
.footer-nav ul li { margin-bottom: 0.5rem; }
.footer-nav ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-nav ul li a:hover { color: var(--rose); }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px; background: linear-gradient(135deg, var(--rose-dark), var(--lavender-dark)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition); z-index: 500; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== ANIMAÇÕES ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .tab-content-wrap { grid-template-columns: 1fr; }
  .roles-interactive { grid-template-columns: 1fr; }
  .roles-center-area { justify-content: center; }
}
@media (max-width: 900px) {
  #hero { flex-direction: column; text-align: center; align-items: center; padding: 6rem 1.5rem 3rem; gap: 2rem; }
  .hero-content { max-width: 100%; }
  .hero-credits { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-illustration { width: 260px; height: 260px; }
  .illus-circle { width: 150px; height: 150px; }
  .illus-emoji { font-size: 3rem; }
  .das-intro-card { flex-direction: column; gap: 1rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--warm-white); flex-direction: column; padding: 1rem; border-bottom: 2px solid var(--gray-200); box-shadow: var(--shadow-md); gap: 0.3rem; }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; text-align: center; padding: 0.6rem 1rem; }
  .nav-toggle { display: block; }
  .quote-bubble p { font-size: 1.1rem; }
  .quote-bubble { padding: 2rem 2rem 1.5rem; }
  .thermometer-wrap { grid-template-columns: 1fr; }
  .srq-slider { writing-mode: horizontal-tb; direction: ltr; width: 100%; height: auto; max-width: 100%; }
  .srq-slider::-webkit-slider-track { width: auto; height: 12px; }
  .finding-summary h3 { font-size: 0.9rem; }
  .section { padding: 3.5rem 0; }
  .call-to-action { padding: 2rem; }
}
@media (max-width: 480px) {
  .highlight-row { grid-template-columns: repeat(2, 1fr); }
  .hero-illustration { display: none; }
  .quiz-container { padding: 1.5rem; }
  .quiz-result-inner { padding: 2rem 1.5rem; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
}
