/* ==================== */
/* RESET E BASE GERAL   */
/* ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #0a1b33;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

i {
  pointer-events: none;
}


/* ==================== */
/* HEADER               */
/* ==================== */
header {
  background: #0b223f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1.tech-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #4fe0c6;
  text-align: center;
  flex: 1;
}

#menu-toggle {
  font-size: 26px;
  background: none;
  border: none;
  color: #4fe0c6;
  cursor: pointer;
  position: absolute;
  left: 20px;
}

/* ==================== */
/* MENU LATERAL         */
/* ==================== */
.side-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 100%;
  background: #0f2a44;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  z-index: 1001;
}

.side-menu.open {
  left: 0;
}

.side-menu button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  align-self: flex-end;
  margin-bottom: 1rem;
  cursor: pointer;
}

.side-menu a {
  color: #fff;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.side-menu a:hover,
.side-menu a.active {
  color: #00d4ff;
}

/* === CONTAINER === */
.container {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

section h1 {
  font-size: 1.6rem;
  text-align: center;
  color: #00d4ff;
  margin: 2rem 0 1.5rem;
  text-transform: uppercase;
}

/* === PLANO DE AULA === */
.plano-card {
  background: #0f2a44;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.plano-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.plano-icon {
  font-size: 1.5rem;
  color: #1affc9;
  margin-right: 1rem;
  flex-shrink: 0;
}

.plano-titulo {
  font-weight: bold;
  color: #4ce0ff;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.3rem;
}

.plano-conteudo {
  margin-left: 1.2rem;
  margin-top: 0.5rem;
}

.plano-conteudo li {
  margin-bottom: 0.4rem;
}

/* === SLIDES === */
.slides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.slide-card {
  background: #0f2a44;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  transition: 0.3s;
}

.slide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 212, 255, 0.3);
}

.slide-icon {
  font-size: 2rem;
  color: #00d4ff;
  margin-bottom: 0.8rem;
}

.slide-card span {
  font-weight: bold;
  font-size: 1rem;
}

.slide-card small {
  display: block;
  font-size: 0.85rem;
  color: #1affc9;
  margin-top: 0.3rem;
}


/* === RESPONSIVIDADE === */
@media (min-width: 600px) {
  .slides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .slides-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .slides-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
