@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

/* ========================================
   ESTILOS GLOBAIS
   ======================================== */

* {
  font-family: 'JetBrains Mono', monospace;
  color: #cdd6f4;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

body {
  width: 100%;
  min-height: 100vh;
  background: #1e1e2e;
}

/* ========================================
   NAVEGAÇÃO
   ======================================== */

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 1em 0;
  border-bottom: 2px solid #6c7086;
  margin-bottom: 25px;
}

nav a {
  text-decoration: none;
  color: #cdd6f4;
  transition: 0.2s ease;
}

nav a:hover {
  transform: scale(1.1);
  color: #bac2de;
}

/* ========================================
   ELEMENTOS GERAIS
   ======================================== */

hr {
  border: none;
  border-top: 2px solid #6c7086;
  margin: 25px auto;
  width: 80%;
}

.center-text {
  text-align: center;
  margin: 0 auto;
  padding: 20px;
}

.center-text h1, 
.center-text h2, 
.center-text h3 {
  margin-bottom: 15px;
}

.center-text p {
  max-width: 800px;
  margin: 10px auto;
  line-height: 1.6;
  text-align: center;
}

.logo {
  height: 30px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.1);
}

/* ========================================
   PERFIL (MEMBROS)
   ======================================== */

.profile {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

.profile h1, .profile h2 {
  color: #cdd6f4;
  margin-bottom: 15px;
}

.profile img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  margin: 15px 0;
  border: 4px solid #11111b;
}

.profile p {
  font-size: 18px;
  line-height: 1.6;
  color: #cdd6f4;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}

/* ========================================
   HOME - SERVIÇOS
   ======================================== */

#service {
  padding: 40px 20px;
  background-color: #181825;
}

#service h2 {
  margin-bottom: 25px;
}

.service-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  row-gap: 20px;
}

.box-service {
  width: 200px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
  padding: 20px;
  border: 8px #11111b solid;
  border-radius: 10px;
  background-image: url(/img/web.jpg);
  background-blend-mode: overlay;
  background-size: cover;
  background-color: rgba(17, 17, 27, 1);
  transition: 0.1s;
}

.box-service:hover {
  transform: scale(1.1);
}

/* ========================================
   EQUIPE 
   ======================================== */

.box-service-equipe {
  width: 200px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 20px;
  border: 7px #11111b solid;
  border-radius: 10px;
  background-blend-mode: overlay;
  transition: 0.1s;
    margin: 10px;
}

.team-member {
  text-align: center;
}

.team-member h3 {
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team-member p {
  margin: 5px 0;
  font-size: 14px;
}

.team-member a {
  text-decoration: none;
  display: block;
}

.box-service-equipe {
  width: 200px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border: 7px #11111b solid;
  border-radius: 10px;
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.1s;
  margin: 10px;
}

.team-member {
  text-align: center;
}

.team-member h3 {
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team-member p {
  margin: 5px 0;
  font-size: 14px;
}

.team-member a {
  text-decoration: none;
  display: block;
}

.box-renner {
  background-image: url(../img/Equipe/renner.jpg);
}

.box-jose {
  background-image: url(../img/Equipe/jose.png);
}

.box-igor {
  background-image: url(../img/Equipe/igor.jpg);
}

/* ========================================
   CONTATO (NUNCA IMAGINEI DAR TANTA DOR DE CABEÇA)
   ======================================== */

.contact-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #181825;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #11111b;
  transition: 0.3s;
}

.info-card:hover {
  border-color: #6c7086;
  transform: translateY(-5px);
}

.info-card h3 {
  margin-bottom: 10px;
}

.info-card p {
  margin: 0;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.contact-form {
  background: #181825;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #11111b;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: #1e1e2e;
  border: 2px solid #313244;
  border-radius: 5px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6c7086;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: #89b4fa;
  color: #1e1e2e;
  border: none;
  border-radius: 5px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #74c7ec;
  transform: translateY(-2px);
}

.footer {
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  border-top: 2px solid #6c7086;
}

/* ========================================
   RESPONSIVO
   ======================================== */

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   BARRA SUPERIOR SEMPRE VISIVEL aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
   ======================================== */

   nav {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 1em 0;
  border-bottom: 2px solid #6c7086;
  margin-bottom: 25px;
  
  position: fixed;
  top: 0;
  z-index: 1000;
  background: #1e1e2e;
}

body {
  width: 100%;
  min-height: 100vh;
  background: #1e1e2e;
  padding-top: 80px;
}