/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonte e cores */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Banner */
.banner {
  background: linear-gradient(135deg, #1f1f1f, #3a3a3a);
  color: #fc0000;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,0,0,0.2) 0%, transparent 70%);
  animation: pulse 6s infinite;
  z-index: 0;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.6; }
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.banner p {
  font-size: 1.3rem;
  color: #b0bec5;
  margin: 8px 0;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Main */
main {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

section {
  margin-bottom: 50px;
  background: #1a1a1a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,0,0,0.2);
}

h2 {
  color: #ff9800;
  margin-bottom: 15px;
  font-size: 1.8rem;
  border-left: 4px solid #fc0000;
  padding-left: 10px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* Lista de módulos */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module {
  background-color: #1e1e1e;
  padding: 14px;
  border-radius: 6px;
  font-weight: bold;
  color: #cfd8dc;
  border-left: 4px solid #fc0000;
}

/* Inspiração */
#inspiration {
  background: linear-gradient(135deg, #1f1f1f, #3a3a3a);
  color: #fc0000;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,0,0,0.3);
}

#inspiration h2 {
  border-left: none;
  padding-left: 0;
  color: #ff9800;
  text-align: center;
  font-size: 1.8rem;
}

#inspiration p {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

#inspiration cite {
  font-size: 1rem;
  color: #b0bec5;
  font-style: italic;
  display: block;
}

/* Seção de habilidades */
#skills {
  margin-top: 40px;
}

#skills article {
  background: #1e1e1e;
  padding: 22px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(255,0,0,0.2);
}

#skills h3 {
  color: #ff9800;
  margin-bottom: 10px;
  font-size: 1.4rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

#skills p {
  color: #cfd8dc;
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: #1f1f1f;
  color: #b0bec5;
  text-align: center;
  padding: 40px;
  border-top: 3px solid #fc0000;
  box-shadow: 0 -5px 15px rgba(255,0,0,0.2);
}

footer h3 {
  color: #ff9800;
  margin-bottom: 15px;
  font-size: 1.4rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

footer .contact p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 1.1rem;
}

footer .icon {
  width: 30px;
  height: 30px;
  fill: #00bcd4;
  background-color: #2c2c2c;
  border-radius: 50%;
  padding: 6px;
}

footer .email a {
  color: #e0e0e0;
  text-decoration: none;
}

footer .linkedin a {
  color: #00bcd4;
  text-decoration: none;
  font-weight: bold;
}

footer .linkedin a:hover {
  text-decoration: underline;
  color: #ff9800;
}

footer .email .icon {
  fill: #e53935;
}