/* 1. CONFIGURAÇÃO BASE - Estilo Dark & High-Tech inspirado em Lean Server */

* {
  box-sizing: border-box;
}

body {
  background-color: #050505;
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  font-family: 'Urbanist', sans-serif;
}

/* Sistema de Slides Fullscreen */
.slides-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-container {
  align-items: center;
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  font-family: 'Urbanist', sans-serif;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  overflow: hidden;
  padding: 60px 100px;
  position: relative;
}

/* Background Grid Effect - Remetendo ao site Lean Server */
.slide-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 153, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.slide-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.slide-container>* {
  position: relative;
  z-index: 1;
}

/* 2. TIPOGRAFIA */

.slide-container h1,
.slide-container h2,
.slide-container h3 {
  color: #fff;
  font-weight: 700;
  margin: 0;
}

.slide-container p,
.slide-container li,
.slide-container th,
.slide-container td {
  color: #a0a0a0;
  font-size: 18px;
  line-height: 1.6;
}

.slide-container .slide-title {
  font-size: 42px;
  margin-bottom: 40px;
  text-align: left;
  width: 100%;
  border-left: 4px solid #0099ff;
  padding-left: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.accent {
  color: #0099ff;
}

/* 3. LAYOUTS ESPECÍFICOS */

.title-layout {
  text-align: center;
}

.title-layout h1 {
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.title-layout .subtitle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: #0099ff;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  width: 100%;
}

.tiled-content {
  display: flex;
  gap: 25px;
  width: 100%;
  justify-content: center;
}

.tile {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 153, 255, 0.1);
  border-radius: 12px;
  padding: 60px 30px;
  flex: 1;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tile .icon {
  font-size: 40px;
  color: #0099ff;
  margin-bottom: 15px;
}

.tile h3 {
  font-size: 24px;
  margin-bottom: 40px;
}

/* Reset .tile dentro de .two-column (Magnitude e Impacto) */
.two-column .tile {
  padding: 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.two-column .tile .icon {
  margin-bottom: 20px;
}

.two-column .tile h3 {
  margin-bottom: 15px;
}

/* Tabelas */
.table-layout {
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
}

th, td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
  color: #0099ff;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  font-size: 14px;
}

/* Gráficos */
.chart-container {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bar {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.bar .label {
  width: 250px;
  text-align: right;
  padding-right: 20px;
  font-weight: 700;
}

.bar .bar-inner {
  background: #1a1a1a;
  height: 40px;
  flex-grow: 1;
  border-radius: 4px;
  overflow: hidden;
}

.bar .bar-fill {
  background: linear-gradient(90deg, #0099ff, #0066cc);
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 15px;
  color: #000;
  font-weight: 700;
}

/* Slide 12 - Roadmap Timeline */
#slide11 .content-area {
    justify-content: center;
}

.timeline-layout {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin-top: 50px;
}

.timeline-line {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 153, 255, 0.2);
}

.timeline-item {
  width: 20%;
  text-align: center;
  position: relative;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: #0099ff;
  border-radius: 50%;
  margin: 22px auto 20px;
  box-shadow: 0 0 10px #0099ff;
}

.timeline-item h3 {
  font-size: 18px;
  color: #0099ff;
  margin-bottom: 10px;
}

.timeline-item.destaque h3 {
  font-size: 22px;
  color: #ffd700;
}

.timeline-item.destaque .timeline-dot {
  background: #ffd700;
  box-shadow: 0 0 15px #ffd700;
}

.timeline-item p {
  font-size: 13px;
  color: #a0a0a0;
  line-height: 1.4;
}

/* Bleed Image Layout */
.slide-container.bleed-image-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  padding: 0;
  height: 100vh;
}

.bleed-text-side {
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.bleed-image-side {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex-grow: 1;
}

/* Chart pie layout */
.pie-chart-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.pie-chart {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: conic-gradient(#0099ff 0% 60%, #0066cc 60% 75%, #003366 75% 90%, #1a1a1a 90% 100%);
}

.pie-legend {
    list-style: none;
}

.pie-legend li {
    margin-bottom: 10px;
}

/* Contact Box */
.contact-box {
    margin-top: 40px;
    font-family: 'JetBrains Mono', monospace;
    border: 1px solid #0099ff;
    padding: 20px;
    border-radius: 8px;
    color: #e0e0e0;
    background: rgba(0, 153, 255, 0.05);
}

.contact-multi {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    padding: 25px 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.contact-item i {
    font-size: 16px;
    color: #0099ff;
    width: 20px;
}

.contact-item em {
    color: #666;
    font-size: 12px;
}

.contact-item.previsto {
    opacity: 0.7;
}

.contact-item.previsto i {
    color: #ff9900;
}

/* Slide 2 - O Que é o ENEI */
.slide-what-is h2 {
    font-size: 60px;
}

.slide-what-is p {
    max-width: 800px;
    margin: 30px auto;
}

/* Slide 3 - Margin top extra */
.two-column.extra-margin {
    margin-top: 25px;
}

/* Slide 5 - Organização */
.slide-org h2 {
    font-size: 50px;
}

/* Slide 6 - A Nossa Mesa */
.mesa-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.mesa-section h3 i {
    margin-right: 10px;
}

.mesa-table {
    width: 100%;
    border-collapse: collapse;
}

.mesa-table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
}

.mesa-table td:first-child {
    font-weight: 700;
    width: 50%;
}

.departamentos-list {
    list-style: none;
    padding: 0;
}

.departamentos-list li {
    margin-bottom: 12px;
    padding-left: 15px;
    border-left: 2px solid rgba(0, 153, 255, 0.3);
    font-size: 14px;
    line-height: 1.5;
}

.departamentos-list li strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

/* Slide 7 - Infraestruturas */
.slide-infra {
    text-align: center;
}

.slide-infra .slide-title {
    margin-bottom: 10px;
}

.infra-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.infra-plans {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 25px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 25px;
    width: 320px;
    text-align: left;
}

.plan-primary {
    border-left: 3px solid #0099ff;
}

.plan-secondary {
    border-left: 3px solid #666;
}

.plan-tertiary {
    border-left: 3px solid #444;
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-number {
    width: 32px;
    height: 32px;
    background: #0099ff;
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
}

.plan-secondary .plan-number {
    background: #666;
}

.plan-tertiary .plan-number {
    background: #444;
}

.plan-header h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.plan-section {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 15px;
}

.plan-section i {
    font-size: 14px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    transform: translateY(22px);
}

.plan-section strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.plan-section p {
    font-size: 14px;
    color: #a0a0a0;
    margin: 0;
}

.plan-content img,
.plan-image-placeholder {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    margin-top: 12px;
}

.plan-image-placeholder {
    background: rgba(0, 153, 255, 0.05);
    border: 1px dashed rgba(0, 153, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 12px;
}

.plan-image-placeholder i {
    margin-right: 6px;
}

.opening-optional img,
.plan-image-placeholder.inline {
    height: 60px;
    margin-top: 0;
    margin-left: 15px;
    width: 120px;
    object-fit: cover;
}

.opening-optional {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.opening-optional i {
    color: #ffd700;
}

.opening-optional span {
    font-size: 14px;
    color: #a0a0a0;
}

.opening-optional span strong {
    color: #ffd700;
}

/* Slide 9 - Calendário */
#slide-calendario {
    text-align: center;
}

.calendario-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.calendario-excel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tabela-horarios {
    border-collapse: collapse;
    font-size: 11px;
    width: 100%;
    max-width: 1100px;
}

.tabela-horarios th,
.tabela-horarios td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 8px;
    text-align: center;
    vertical-align: middle;
}

.tabela-horarios thead th {
    background: rgba(0, 153, 255, 0.15);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.col-hora {
    width: 60px;
    background: rgba(255, 255, 255, 0.03);
}

.col-dia {
    width: 22%;
}

.hora-label {
    background: rgba(255, 255, 255, 0.03);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #888;
}

.tabela-horarios td i {
    margin-right: 4px;
    font-size: 10px;
}

/* Cores das células por tipo de atividade */
.celula-workshop {
    background: rgba(0, 153, 255, 0.12);
    color: #0099ff;
}

.celula-palestra {
    background: rgba(0, 204, 153, 0.12);
    color: #00cc99;
}

.celula-tertulia {
    background: rgba(255, 153, 0, 0.12);
    color: #ff9900;
}

.celula-refeicao {
    background: rgba(255, 85, 85, 0.12);
    color: #ff6b6b;
}

.celula-coffee {
    background: rgba(204, 153, 102, 0.12);
    color: #cc9966;
}

.celula-especial {
    background: rgba(255, 215, 0, 0.12);
    color: #ffd700;
}

.celula-checkin {
    background: rgba(0, 153, 255, 0.15);
    color: #0099ff;
}

.celula-encerramento {
    background: rgba(255, 85, 85, 0.15);
    color: #ff5555;
}

.vazio {
    background: rgba(255, 255, 255, 0.01);
    color: #444;
}

.legenda-calendario {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}

.legenda-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legenda-item i {
    font-size: 11px;
}

/* Slide 10 - Alimentação */
#slide-alimentacao {
    text-align: center;
}

.alimentacao-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
}

.refeicoes-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.refeicao-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 300px;
    text-align: left;
}

.refeicao-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.refeicao-header i {
    font-size: 24px;
}

.refeicao-header h3 {
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.refeicao-header.pequeno-almoco {
    background: rgba(204, 153, 102, 0.15);
    color: #cc9966;
}

.refeicao-header.almoco {
    background: rgba(0, 204, 153, 0.15);
    color: #00cc99;
}

.refeicao-header.jantar {
    background: rgba(0, 102, 204, 0.15);
    color: #0099ff;
}

.refeicao-content {
    padding: 20px;
}

.refeicao-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 13px;
    color: #a0a0a0;
}

.refeicao-item:last-child {
    border-bottom: none;
}

.refeicao-item i {
    font-size: 14px;
    color: #666;
    width: 20px;
}

.refeicao-item em {
    color: #666;
    font-style: italic;
}

.refeicao-descricao {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.refeicao-opcoes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.opcao-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #a0a0a0;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.opcao-item i {
    font-size: 14px;
    color: #666;
}

.bebidas {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #0099ff;
    padding: 10px;
    background: rgba(0, 153, 255, 0.08);
    border-radius: 4px;
    margin-top: 10px;
}

.alimentacao-nota {
    margin-top: 25px;
    font-size: 12px;
    color: #666;
}

.alimentacao-nota i {
    color: #0099ff;
    margin-right: 6px;
}

/* Slide 11 - Planos de Bilhetes */
#slide-bilhetes {
    text-align: center;
}

#slide-bilhetes .slide-title {
    font-size: 42px;
    margin-bottom: 8px;
}

#slide-bilhetes .content-area {
    padding: 0 20px 20px;
}

.bilhetes-subtitle {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
}

.bilhetes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    max-width: 950px;
    margin: 0 auto;
    height: calc(100vh - 200px);
    max-height: 520px;
}

.bilhete-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    position: relative;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.bilhete-card:hover {
    transform: translateY(-2px);
}

.bilhete-header {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bilhete-preco {
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.bilhete-header h3 {
    font-size: 11px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a0a0a0;
}

.bilhete-card.basico .bilhete-header {
    background: rgba(102, 102, 102, 0.15);
    color: #888;
}

.bilhete-card.basico .bilhete-preco {
    color: #888;
}

.bilhete-card.alimentacao .bilhete-header {
    background: rgba(0, 204, 153, 0.15);
    color: #00cc99;
}

.bilhete-card.alimentacao .bilhete-preco {
    color: #00cc99;
}

.bilhete-card.completo .bilhete-header {
    background: rgba(0, 153, 255, 0.15);
    color: #0099ff;
}

.bilhete-card.completo .bilhete-preco {
    color: #0099ff;
}

.bilhete-card.externo .bilhete-header {
    background: rgba(255, 153, 0, 0.15);
    color: #ff9900;
}

.bilhete-card.externo .bilhete-preco {
    color: #ff9900;
}

.bilhete-card.externo-premium .bilhete-header {
    background: rgba(255, 85, 85, 0.15);
    color: #ff6b6b;
}

.bilhete-card.externo-premium .bilhete-preco {
    color: #ff6b6b;
}

.bilhete-card.especial .bilhete-header {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
}

.bilhete-card.especial .bilhete-preco {
    color: #ffd700;
}

.bilhete-content {
    padding: 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bilhete-publico {
    font-size: 10px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bilhete-publico i {
    font-size: 9px;
}

.bilhete-beneficios {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.bilhete-beneficios li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
    font-size: 10px;
    color: #a0a0a0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    line-height: 1.3;
}

.bilhete-beneficios li:last-child {
    border-bottom: none;
}

.bilhete-beneficios li i {
    font-size: 9px;
    width: 12px;
    flex-shrink: 0;
}

.bilhete-beneficios li i.fa-check {
    color: #00cc99;
}

.bilhete-beneficios li i.fa-xmark {
    color: #ff5555;
}

.bilhete-beneficios li.nao-inclui {
    color: #666;
}

.bilhete-beneficios li.incompleto {
    color: #888;
}

.bilhete-beneficios li.incompleto i {
    color: #ff9900;
}

.badge-incompleto {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(255, 153, 0, 0.15);
    color: #ff9900;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 3px;
    margin-top: 8px;
}

.bilhete-card.incompleto {
    opacity: 0.8;
}

/* Slide 12 - Hub Tecnológico */
.impact-text {
    text-align: center;
    margin-top: 30px;
    font-family: 'JetBrains Mono', monospace;
}

/* Slide 12 - Pie Chart */
.pie-chart-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.pie-chart {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: conic-gradient(#0099ff 0% 60%, #0066cc 60% 75%, #003366 75% 90%, #1a1a1a 90% 100%);
}

.pie-legend {
    list-style: none;
    padding: 0;
}

.pie-legend li {
    margin-bottom: 10px;
}

.color-box {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
}

.color-software { background: #0099ff; }
.color-ai { background: #0066cc; }
.color-security { background: #003366; }
.color-others { background: #1a1a1a; }

/* Slide 13 - Final */
.slide-final h2 {
    font-size: 60px;
}

/* Barra de Título - Separada dos controles */
.slide-title-bar {
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.slide-title-display {
  color: #555;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Controles de Navegação - Minimalista */
.slide-controls {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 1000;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 16px;
  flex-shrink: 0;
}

.nav-arrow:hover {
  color: #0099ff;
}

.slide-dots {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.dot.active {
  background: #0099ff;
}

.dot:hover {
  background: #555;
}


/* Botão Fullscreen - Canto superior direito */
.fullscreen-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #666;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.2s ease;
}

.fullscreen-btn:hover {
  border-color: #0099ff;
  color: #0099ff;
}

.fullscreen-btn i {
  font-size: 14px;
}

/* Contador de slides - Estilo botão à esquerda do fullscreen */
.slide-counter {
  position: fixed;
  top: 20px;
  right: 68px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #666;
  height: 40px;
  padding: 0 14px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-counter #current-slide {
  color: #0099ff;
}
