@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Outfit:wght@400;600;700;800;900&display=swap');

/* --- DESIGN SYSTEM & VARIÁVEIS --- */
:root {
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Paleta Preto & Dourado */
  --bg-deep: #0a0a0c;
  --bg-card: rgba(20, 20, 25, 0.6);
  --bg-card-hover: rgba(30, 30, 38, 0.8);
  --border-gold-low: rgba(212, 175, 55, 0.15);
  --border-gold-medium: rgba(212, 175, 55, 0.4);
  --gold-primary: #d4af37;
  --gold-light: #f3d075;
  --gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #f5d382 0%, #d4af37 50%, #a37810 100%);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.35);
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0ab;
  --text-muted: #6b6b76;
  
  /* Transições */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --- RESET & CONFIG GERAIS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

/* Background com efeito radial de holofote */
.bg-ambient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(circle at 50% 50%, #1c1a15 0%, #0a0a0c 80%);
}

.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.03;
  background-image: radial-gradient(var(--gold-primary) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* --- FRAME DA APRESENTAÇÃO (16:9) --- */
.presentation-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  max-height: 1080px;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

/* --- SLIDES LAYOUT --- */
.slides-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1) rotateX(3deg) translateY(-10px);
  filter: blur(15px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.8s;
  z-index: 1;
  padding: 4% 8% 85px 8%; /* Ajustado padding inferior para 85px para dar margem segura da control-bar */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) rotateX(0deg) translateY(0);
  filter: blur(0);
  z-index: 2;
}

/* --- ESTILOS DE LAYOUTS ESPECÍFICOS --- */

/* 1. COVER LAYOUT */
.layout-cover {
  text-align: center;
  align-items: center;
}
.layout-cover::before {
  content: '';
  position: absolute;
  top: 15%;
  width: 80px;
  height: 2px;
  background: var(--gold-gradient);
}
.layout-cover h1 {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-background-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 25px rgba(0,0,0,0.5);
  max-width: 95%;
}
.layout-cover h2 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 3.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.layout-cover .author {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 2px solid var(--gold-primary);
  padding: 0.8rem 3rem;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: var(--gold-glow);
}

/* 2. PROMISE LAYOUT */
.layout-promise {
  align-items: flex-start;
}
.slide-header {
  margin-bottom: 1.5rem;
  width: 100%;
}
.slide-category {
  display: none; /* Ocultado conforme pedido */
}
.slide-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}
.slide-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}
.promise-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-low);
  padding: 1.8rem 2.2rem;
  border-radius: 12px;
  width: 100%;
  backdrop-filter: blur(10px);
  box-shadow: var(--gold-glow);
}
.promise-list {
  list-style: none;
}
.promise-list li {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2.2rem;
}
.promise-list li:last-child {
  margin-bottom: 0;
}
.promise-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 1.5rem;
  top: -2px;
}

/* 3. PROFILE LAYOUT (Duas colunas com foto de perfil) */
.layout-profile {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6%;
  align-items: center;
}
.profile-img-container {
  position: relative;
  width: 100%;
  height: 80%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), var(--gold-glow);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.profile-info {
  display: flex;
  flex-direction: column;
}
.profile-list {
  list-style: none;
  margin-top: 1.5rem;
}
.profile-list li {
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  padding-left: 1.8rem;
  position: relative;
}
.profile-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: bold;
}

/* 4. NUMBER HIGHLIGHT LAYOUT */
.layout-number-highlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5%;
  align-items: center;
}
.number-content {
  display: flex;
  flex-direction: column;
}
.giant-number {
  font-family: var(--font-title);
  font-size: 6.5rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  line-height: 1;
  text-shadow: var(--gold-glow);
}
.number-desc {
  font-size: 1.6rem;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 2rem;
}
.number-img-container {
  width: 100%;
  height: 80%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold-medium);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}
.number-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 5. FULLSCREEN IMAGE LAYOUT */
.layout-fullscreen-image {
  padding: 0;
  justify-content: flex-end;
}
.fullscreen-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.fullscreen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.4) 60%, transparent 100%);
  z-index: 0;
}
.fullscreen-content {
  position: relative;
  z-index: 1;
  padding: 5% 8%;
  max-width: 60%;
}
.fullscreen-content h2 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
.fullscreen-content p {
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 6. QUOTE & QUOTE-GOLD LAYOUTS */
.layout-quote, .layout-quote-gold {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.quote-text {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 85%;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.layout-quote-gold .quote-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-shadow: var(--gold-glow);
}
.quote-subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 70%;
}
.highlight {
  color: var(--gold-light);
  font-weight: 800;
}

/* 7. CONCEPT LAYOUT */
.layout-concept {
  justify-content: flex-start;
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 0.8rem;
  width: 100%;
}
.concept-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-low);
  padding: 1.4rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}
.concept-card:hover {
  border-color: var(--border-gold-medium);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}
.concept-card-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--gold-primary);
  margin-bottom: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.concept-card-title::before {
  content: '◆';
  font-size: 0.8rem;
}
.concept-card-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 8. EXAMPLE LAYOUT */
.layout-example {
  justify-content: flex-start;
}
.example-box {
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.9) 0%, rgba(10, 10, 12, 0.95) 100%);
  border-left: 4px solid var(--gold-primary);
  padding: 1.8rem;
  border-radius: 0 12px 12px 0;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.example-item {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
}
.example-item:last-child {
  margin-bottom: 0;
}
.example-item::before {
  content: '➥';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

/* 9. FOUR-C LAYOUT (Grade dos 4Cs - Ampliado para preencher a tela) */
.layout-four-c {
  justify-content: flex-start;
}
.four-c-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  margin-top: 2rem;
  width: 100%;
}
.four-c-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-low);
  padding: 2.2rem 2.5rem;
  border-radius: 16px;
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition-smooth);
}
.four-c-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}
.four-c-card h3 {
  font-family: var(--font-title);
  font-size: 1.65rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.four-c-card p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.four-c-number {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.15);
}

/* 10. SUMMARY GRID */
.layout-summary-grid {
  justify-content: flex-start;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
  width: 100%;
}
.summary-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}
.summary-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--border-gold-low);
  padding-left: 2rem;
}
.summary-num {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
}

/* 11. TWO COLUMNS LAYOUT */
.layout-two-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5%;
  align-items: center;
}
.column-img-container {
  width: 100%;
  height: 80%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-gold-medium);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}
.column-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.column-list {
  list-style: none;
}
.column-list li {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  padding-left: 2rem;
  position: relative;
}
.column-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

/* 12. GALLERY LAYOUT */
.layout-gallery {
  justify-content: flex-start;
}
.gallery-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.gallery-item {
  position: relative;
  flex: 1;
  max-width: 280px;
  min-width: 200px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold-low);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: var(--transition-smooth);
}
.gallery-item:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}
.gallery-item:hover img {
  transform: scale(1.03);
}

/* 13. SYNTHESIS LAYOUT */
.layout-synthesis {
  justify-content: flex-start;
}
.synthesis-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 0.8rem;
}
.synthesis-row {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-low);
  padding: 1.1rem 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}
.synthesis-row:hover {
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
}
.synthesis-tag {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  min-width: 150px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.synthesis-text {
  font-size: 1.25rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* 14. CONTACT LAYOUT */
.layout-contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6%;
  align-items: center;
}
.contact-image-container {
  width: 100%;
  height: 80%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--gold-glow);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.contact-details h2 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-details h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.contact-list {
  list-style: none;
}
.contact-list li {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.contact-icon {
  color: var(--gold-primary);
  font-size: 1.5rem;
}

/* --- ELEMENTOS DE ANIMAÇÃO INTERNA DOS SLIDES --- */
.slide.active .slide-category {
  animation: slideInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.slide.active .slide-title {
  animation: slideInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.slide.active .slide-subtitle {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.slide.active .concept-card {
  animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.slide.active .concept-card:nth-child(2) { animation-delay: 0.1s; }
.slide.active .concept-card:nth-child(3) { animation-delay: 0.2s; }
.slide.active .concept-card:nth-child(4) { animation-delay: 0.3s; }

.slide.active li, .slide.active .summary-item, .slide.active .synthesis-row {
  animation: slideInRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.slide.active li:nth-child(1), .slide.active .summary-item:nth-child(1), .slide.active .synthesis-row:nth-child(1) { animation-delay: 0.1s; }
.slide.active li:nth-child(2), .slide.active .summary-item:nth-child(2), .slide.active .synthesis-row:nth-child(2) { animation-delay: 0.2s; }
.slide.active li:nth-child(3), .slide.active .summary-item:nth-child(3), .slide.active .synthesis-row:nth-child(3) { animation-delay: 0.3s; }
.slide.active li:nth-child(4), .slide.active .summary-item:nth-child(4) { animation-delay: 0.4s; }
.slide.active li:nth-child(5), .slide.active .summary-item:nth-child(5) { animation-delay: 0.5s; }
.slide.active li:nth-child(6), .slide.active .summary-item:nth-child(6) { animation-delay: 0.6s; }

.slide.active .profile-img-container, 
.slide.active .number-img-container, 
.slide.active .column-img-container,
.slide.active .contact-image-container {
  animation: revealImage 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes revealImage {
  from { opacity: 0; transform: scale(0.96) translateX(-20px); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}

/* --- BARRA DE CONTROLE INFERIOR (NAVIGATION) --- */
.control-bar {
  width: calc(100% - 40px); /* Margem de 20px nas laterais */
  height: 60px;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.25); /* Borda dourada sutil completa */
  border-radius: 14px; /* Cantos arredondados premium */
  margin: 0 auto 20px auto; /* Margem inferior de 20px para flutuar elegantemente */
  overflow: hidden; /* Mantém a linha de progresso nos cantos arredondados */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

/* Progresso do slide */
.progress-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.progress-bar {
  height: 100%;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  width: 0%;
  transition: width 0.3s ease;
}

/* Lado Esquerdo: Controles de visualização e Miniaturas */
.controls-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* Centro: Navegação de slides e Contador */
.controls-center {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.nav-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-deep);
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.slide-counter {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.slide-counter .current {
  color: var(--gold-primary);
}

/* Lado Direito: Timer e Configurações */
.controls-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.timer-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}

.timer-icon {
  color: var(--gold-primary);
}

/* Botões utilitários da barra */
.action-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.action-btn:hover, .action-btn.active {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* --- NOTAS DO APRESENTADOR (PAINEL DIREITO RETRÁTIL) --- */
.notes-panel {
  position: absolute;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: rgba(15, 15, 20, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 100;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.notes-panel.open {
  right: 0;
}

.notes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.notes-header h3 {
  font-family: var(--font-title);
  color: var(--gold-primary);
  font-size: 1.4rem;
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.notes-content {
  flex: 1;
  overflow-y: auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  padding-right: 0.5rem;
}

.notes-content p {
  margin-bottom: 1.5rem;
}

/* Scrollbar para as notas */
.notes-content::-webkit-scrollbar {
  width: 6px;
}
.notes-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
.notes-content::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* --- LISTA DE MINIATURAS (PAINEL ESQUERDO RETRÁTIL) --- */
.thumbnails-panel {
  position: absolute;
  top: 0;
  left: -400px;
  width: 400px;
  height: 100%;
  background: rgba(15, 15, 20, 0.95);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 100;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.thumbnails-panel.open {
  left: 0;
}

.thumbnails-list {
  flex: 1;
  overflow-y: auto;
  list-style: none;
  padding-right: 0.5rem;
}

.thumbnails-list::-webkit-scrollbar {
  width: 6px;
}
.thumbnails-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
.thumbnails-list::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

.thumbnail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: var(--transition-fast);
}

.thumbnail-item:hover, .thumbnail-item.active {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-primary);
}

.thumb-num {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  width: 25px;
}

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

.thumb-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.thumb-block {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- ATALHOS INFORMATIVOS (MODAL FLUTUANTE) --- */
.shortcuts-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(15, 15, 20, 0.98);
  border: 1px solid var(--gold-primary);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), var(--gold-glow);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  width: 90%;
  max-width: 500px;
  backdrop-filter: blur(20px);
}

.shortcuts-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.shortcuts-modal h3 {
  font-family: var(--font-title);
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8rem;
}

.shortcut-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.shortcut-key {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: monospace;
  font-weight: bold;
  color: var(--gold-light);
}

/* --- ADAPTAÇÃO MOBILE (RESPONSIVIDADE) --- */
@media (max-width: 1024px) {
  body {
    overflow: auto;
    align-items: flex-start;
  }
  
  .presentation-container {
    aspect-ratio: auto;
    height: auto;
    min-height: 100vh;
  }
  
  .slide {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-height: calc(100vh - 60px);
    padding: 2.5rem 1.5rem;
  }
  
  .slide.active {
    display: flex;
  }
  
  .layout-profile, .layout-number-highlight, .layout-two-columns, .layout-contact {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .giant-number {
    font-size: 4rem;
  }
  
  .quote-text {
    font-size: 2rem;
  }
  
  .notes-panel, .thumbnails-panel {
    width: 100%;
    height: calc(100% - 60px);
  }
}
