/* ==================== */
/* RESET E BASE GERAL   */
/* ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(135deg, #0a1b33 0%, #132c4d 100%);
  color: #fff;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

i {
  pointer-events: none;
}

.section-title {
  font-size: 2.1rem;
  text-align: left;
  color: #4fe0c6;
  margin: 2.5rem 0 1.5rem 2vw;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-left: 5px solid #00d4ff;
  padding-left: 1vw;
  background: linear-gradient(90deg, #132c4d 60%, transparent 100%);
  border-radius: 0 12px 12px 0;
}


/* ==================== */
/* 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 0;
  max-width: 100vw;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

section h1 {
  font-size: 1.6rem;
  text-align: center;
  color: #00d4ff;
  margin: 2rem 0 1.5rem;
  text-transform: uppercase;
}

/* === CARROSSEL === */
.carrossel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
  overflow-x: hidden;
}

.carrossel-cards {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
}

.carrossel-card {
  display: flex;
  flex-direction: row;
  background: linear-gradient(120deg, #132c4d 80%, #0a1b33 100%);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.10), 0 2px 8px rgba(0,0,0,0.18);
  width: 100%;
  max-width: 980px;
  min-height: 380px;
  align-items: center;
  position: relative;
  margin: 0 0.5vw;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #00d4ff33;
  overflow: hidden;
}

.carrossel-card:hover {
  box-shadow: 0 12px 48px rgba(0, 212, 255, 0.18), 0 4px 16px rgba(0,0,0,0.22);
  transform: translateY(-2px) scale(1.01);
}

.carrossel-card img {
  width: 48%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px 0 0 28px;
  box-shadow: 0 0 24px #00d4ff22;
  border-right: 2px solid #00d4ff22;
}

.card-info {
  padding: 2.2rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 52%;
  position: relative;
  min-height: 320px;
  background: linear-gradient(120deg, #132c4d 90%, #0a1b33 100%);
  border-radius: 0 28px 28px 0;
}

.card-info h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px #00d4ff22;
}

.card-info p {
  margin-bottom: 1.2rem;
  font-size: 1.18rem;
  color: #c7f7f3;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 1px 4px #0a1b3344;
}

.card-info a {
  color: #315788;
  font-weight: bold;
  text-decoration: none;
  align-self: flex-start;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  background: linear-gradient(90deg, #00d4ff 60%, #4fe0c6 100%);
  box-shadow: 0 2px 8px #00d4ff33;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  margin-bottom: 0.5rem;
}

.card-info a:hover {
  background: linear-gradient(90deg, #4fe0c6 60%, #00d4ff 100%);
  color: #132c4d;
  box-shadow: 0 4px 16px #00d4ff55;
}

/* Informativo do solicitante */
.solicitante {
  display: block;
  font-size: 1rem;
  color: #4fe0c6;
  margin-bottom: 0.6rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Botões do carrossel dentro do card */
.carrossel-controls {
  position: absolute;
  right: 1.5rem;
  bottom: 1.2rem;
  display: flex;
  gap: 0.5rem;
}

.carrossel-btn {
  background: linear-gradient(135deg, #00d4ff 60%, #4fe0c6 100%);
  border: none;
  color: #132c4d;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px #00d4ff33;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 2;
}

.carrossel-btn:hover {
  background: linear-gradient(135deg, #4fe0c6 60%, #00d4ff 100%);
  color: #fff;
  box-shadow: 0 4px 16px #00d4ff55;
}

/* Responsivo */
@media (max-width: 1200px) {
  .container {
    max-width: 100vw;
    width: 100vw;
    padding: 1.5rem 0;
  }
  .carrossel-card {
    max-width: 98vw;
    width: 98vw;
    min-height: 280px;
    margin: 0 1vw;
  }
  .card-info {
    padding: 1.2rem 1rem 1rem 1rem;
    min-height: 180px;
  }
  .carrossel-controls {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    width: 100vw;
    padding: 1rem 0;
  }
  .carrossel-card {
    max-width: 99vw;
    width: 99vw;
    min-height: 180px;
    margin: 0 0.5vw;
  }
  .card-info {
    padding: 0.8rem;
    min-height: 120px;
  }
}

@media (max-width: 600px) {
  .container, .carrossel, .carrossel-card {
    max-width: 100vw;
    width: 100vw;
    padding: 0;
  }
  .carrossel-card {
    flex-direction: column;
    min-height: unset;
    border-radius: 16px;
    margin: 0;
    max-width: 100vw;
    width: 100vw;
  }
  .carrossel-card img {
    width: 100%;
    height: 160px;
    border-radius: 16px 16px 0 0;
  }
  .card-info {
    width: 100%;
    padding: 0.8rem 0.5rem;
    min-height: unset;
  }
  .card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .card-info p {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }
  .card-info a {
    font-size: 0.95rem;
  }
  .carrossel-controls {
    position: static;
    margin-top: 0.8rem;
    justify-content: flex-end;
    gap: 0.5rem;
  }
}
