/* ============================================
  PROJETO: NETUNO - Site Corporativo
  AUTORIA: Projeto TCC
  FINALIDADE: Site institucional para empresa 
  de desenvolvimento de software
  ============================================ */

/* ============================================
  1. IMPORTAÇÃO DE FONTES
  Google Fonts: Lato (corpo) e Cinzel (títulos)
  ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");

/* ============================================
  2. RESET E CONFIGURAÇÕES BASE
  Remove margens/paddings padrão e define 
  box-sizing para todos os elementos
  ============================================ */

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

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

/* ============================================
  3. CONTAINER PRINCIPAL
  Limita a largura máxima e centraliza o conteúdo
  ============================================ */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
  4. CABEÇALHO (HEADER)
  Barra de navegação fixa no topo
  Cor: #0a1a2f (azul escuro profissional)
  ============================================ */

header {
  background-color: #0a1a2f;
  padding: 8px 0;
  border-bottom: #00aaff87 1px solid;
  box-shadow: 0 1px 0 0 rgba(0, 170, 255, 0.2);
  font-family: "Cinzel", serif;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Logo - imagem com tamanho fixo */
.logo {
  color: white;
  font-size: 24px;
  height: 70px;
  width: 70px;
}

/* Menu de navegação */
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  border-bottom: #00aaff87 1px solid;
}

nav a:hover {
  color: #00aaff;
  cursor: pointer;
}

/* Nome da empresa posicionado à esquerda */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nome_empresa {
  position: static;
  font-size: 1.5rem;
}

/* ============================================
  5. ÁREA PRINCIPAL (MAIN)
  Container central com fundo estilizado
  ============================================ */

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: #0b1f36;
  /* Mesmo padrão de fundo da seção serv */
  background-image:
    radial-gradient(circle at center, transparent 0%, #0a1a2f 90%),
    linear-gradient(rgba(0, 170, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 170, 255, 0.1) 1px, transparent 1px);
  background-size:
    100% 100%,
    50px 50px,
    50px 50px;
  font-family: "Lato", serif;
}

/* ============================================
  6. SEÇÃO DE BOAS-VINDAS
  Hero section com título principal
  ============================================ */

.boas-vindas {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-top: 90px;
  margin-bottom: 200px;
}

/* Título principal grande */
.texto_destaque {
  font-size: 50px;
  color: white;
  flex-direction: column;
  font-family: "Cinzel", serif;
  text-align: center;
}

/* Subtítulo com cor azul */
.texto_conteudo {
  font-size: 20px;
  color: #00aaff;
  max-width: 600px;
  font-family: "Lato", serif;
}

/* Botão de call-to-action */
.botao_contato {
  background-color: #00aaff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 30px;
}

.botao_contato:hover {
  background-color: #00ccff;
}

/* ============================================
  7. SEÇÃO STACK TECNOLÓGICA
  Cards exibindo tecnologias dominadas
  ============================================ */

.stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  margin-bottom: 200px;
}

.tecnologias {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

/* Card individual de tecnologia */
.tecnologia {
  background-color: rgba(11, 31, 54, 0.5);
  border: 1px solid #1f3e67;
  border-radius: 12px;
  padding: 30px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.texto_destaque_div {
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-family: "Lato", serif;
}

.texto_div {
  color: #64b5f6;
  font-size: 0.9rem;
  line-height: 1.4;
  font-family: "Lato", serif;
}

/* Cores específicas por tecnologia */
.JS {
  color: #f7df1e;
}

/* JavaScript - amarelo */
.HTML {
  color: #e34f26;
}

/* HTML - laranja */
.CSS {
  color: #9500ff;
}

/* CSS - roxo */
.Python {
  color: #002aff;
}

/* Python - azul */
.PHP {
  color: #af7de0;
}

/* PHP - lilás */

.icones {
  font-size: 30px;
}

/* ============================================
  8. SEÇÃO DE CONTATO/CONTRATO
  Área para conversão de clientes
  ============================================ */

.contrato {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 200px;
}

.contrato-div {
  background-color: rgba(11, 31, 54, 0.5);
  border: 1px solid #1f3e67;
  border-radius: 12px;
  padding: 40px;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 200px;
  transition: transform 0.3s ease;
}

.tecnologias-contrato {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 300px;
}

.tecnologia-contrato {
  background-color: rgba(11, 31, 54, 0.5);
  border: 1px solid #1f3e67;
  border-radius: 12px;
  padding: 30px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

/* Cores para ícones de diferencial */
.HDD {
  color: #00aaff;
}

.CODE {
  color: #00aaff;
}

.DATA {
  color: #00aaff;
}

main h4 {
  color: #dcdcdc;
}

/* ============================================
  9. ANIMAÇÕES HOVER
  Efeitos visuais ao passar o mouse
  ============================================ */

.tecnologia,
.tecnologia-contrato,
.contrato-div,
.card-servico,
.como-card,
.cta-card {
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  backface-visibility: hidden;
}

.tecnologia:hover,
.tecnologia-contrato:hover,
.contrato-div:hover,
.card-servico:hover,
.como-card:hover,
.cta-card:hover {
  filter: brightness(1.2);
  border-color: #00aaff;
  box-shadow: 0 15px 45px rgba(0, 170, 255, 0.4);
  transform: translateY(-15px) !important;
}

.tecnologia:hover,
.tecnologia-contrato:hover,
.contrato-div:hover,
.card-servico:hover,
.como-card:hover,
.cta-card:hover {
  transition: all 0.3s ease-out !important;
}


/* ============================================
  10 . RODAPÉ (FOOTER)
  Informações de copyright
  ============================================ */

footer {
  margin: 0;
  background-color: #0a1a2f;
  padding: 1%;
  color: rgba(0, 170, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-top: #00aaff87 1px solid;
  box-shadow: 0 1px 0 0 rgba(0, 170, 255, 0.2);
  font-family: "Cinzel", serif;
}

/* ============================================
  11. VARIANTES DE FONTE LATO
  Diferentes pesos e estilos
  ============================================ */

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* ============================================
  12. CARDS DE SERVIÇOS (SERVICOS.HTML)
  ============================================ */

.servicos-cards {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 80px;
  margin-bottom: 200px;
}

.container-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
}

.card-servico {
  background: rgba(11, 31, 54, 0.5);
  border: 1px solid #1f3e67;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0, 170, 255, 0.08);
  padding: 40px 36px 32px 36px;
  width: 370px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
}

.card-servico:hover {
  border-color: #00ccff;
  box-shadow: 0 8px 40px rgba(0, 170, 255, 0.18);
  transform: translateY(-8px) scale(1.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}

.card-icone {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 1px solid #1f3e67;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(10, 26, 47, 0.5);
}

.card-icone i {
  color: #1f3e67;
  font-size: 2.2rem;
}

.card-titulo {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.card-descricao {
  color: #00aaff;
  font-size: 1.08rem;
  margin-bottom: 18px;
  font-family: "Lato", sans-serif;
}

.card-lista {
  color: #00aaff;
  margin-bottom: 18px;
  padding-left: 18px;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}

.card-lista li {
  margin-bottom: 7px;
  list-style: disc inside;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.card-tags span {
  background: rgba(0, 170, 255, 0.08);
  color: #00aaff;
  border: 1px solid #00aaff;
  border-radius: 16px;
  padding: 4px 14px;
  font-size: 0.95rem;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.card-servico:hover .card-icone i {
  color: #00aaff;
  filter: drop-shadow(0 0 8px #00aaff);
  transition: color 0.2s, filter 0.2s;
}

@media (max-width: 1200px) {
  .container-cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .card-servico {
    width: 90vw;
    min-width: 260px;
    max-width: 500px;
  }
}

.card-servico:hover .card-icone {
  border-color: #00aaff;
  box-shadow: 0 0 12px 2px #00aaff;
  transition: border-color 0.2s, box-shadow 0.2s;
}


/* ============================================
  13. COMO TRABALHAMOS & CTA NORMAL
  ============================================ */

.como-trabalhamos {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0 60px 0;
}

.como-trabalhamos-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.como-card {
  background: rgba(11, 31, 54, 0.7);
  border: 1px solid #1f3e67;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0, 170, 255, 0.08);
  padding: 36px 32px 28px 32px;
  width: 400px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  position: relative;
  color: #dcdcdc;
}

.como-card h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: #dcdcdc;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.como-card strong {
  color: #00aaff;
  font-weight: 700;
}

.como-card p {
  color: #00aaff;
  font-size: 1.08rem;
  margin-bottom: 12px;
  font-family: "Lato", sans-serif;
}

.como-card:hover {
  border-color: #00ccff;
  box-shadow: 0 8px 40px rgba(0, 170, 255, 0.18);
  transform: translateY(-8px) scale(1.01);
}

@media (max-width: 1000px) {
  .como-trabalhamos-cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .como-card {
    width: 90vw;
    min-width: 220px;
    max-width: 500px;
  }
}

.cta-normal {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0 60px 0;
}

.cta-card {
  margin: 60px auto 0 auto;
  max-width: 700px;
  background: rgba(11, 31, 54, 0.7);
  border: 1px solid #1f3e67;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0, 170, 255, 0.08);
  padding: 48px 32px 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, border-color 0.3s;
  margin-bottom: 200px;
  margin-top: 200px;
}

.cta-normal h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  color: #dcdcdc;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.cta-normal p {
  color: #00aaff;
  font-size: 1.15rem;
  margin-bottom: 28px;
  font-family: "Lato", sans-serif;
}

.cta-card:hover {
  border-color: #00ccff;
  box-shadow: 0 8px 40px rgba(0, 170, 255, 0.18);
  transform: translateY(-8px) scale(1.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
}

/*============================================
    SEÇÃO: HISTÓRIA / PROPÓSITO
  ============================================ */
.sobre-historia {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  margin-top: 200px;
  margin-bottom: 200px;
  width: 100%;
  padding: 0 20px;
}

.historia-div {
  background-color: rgba(11, 31, 54, 0.5);
  border: 1px solid #1f3e67;
  border-radius: 12px;
  padding: 50px 60px;
  width: 70%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.historia-div .texto_conteudo {
  max-width: 100%;
  line-height: 1.8;
}

.historia-div .divisor {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00aaff, transparent);
  margin: 10px auto;
}

.historia-div:hover {
  filter: brightness(1.2);
  border-color: #00aaff;
  box-shadow: 0 15px 45px rgba(0, 170, 255, 0.4);
  transform: translateY(-10px) !important;
}



/*============================================
    SEÇÃO: VALORES / PILARES
  ============================================ */
.sobre-valores {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 200px;
  width: 100%;
  padding: 0 20px;
}

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

.valor-card {
  background-color: rgba(11, 31, 54, 0.5);
  border: 1px solid #1f3e67;
  border-radius: 12px;
  padding: 36px 28px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.valor-card:hover {
  filter: brightness(1.2);
  border-color: #00aaff;
  box-shadow: 0 15px 45px rgba(0, 170, 255, 0.4);
  transform: translateY(-15px) !important;
}

.valor-icone {
  font-size: 2rem;
  color: #00aaff;
}

.valor-titulo {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.valor-descricao {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: #64b5f6;
  line-height: 1.6;
}

/*============================================
    SEÇÃO: EQUIPE
  ============================================ */
.sobre-equipe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 200px;
  width: 100%;
  padding: 0 20px;
}

.equipe-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.membro-card {
  background-color: rgba(11, 31, 54, 0.5);
  border: 1px solid #1f3e67;
  border-radius: 16px;
  padding: 36px 28px;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.membro-card:hover {
  border-color: #00aaff;
  box-shadow: 0 15px 45px rgba(0, 170, 255, 0.4);
  transform: translateY(-15px) !important;
}

/* Wrapper da foto — círculo com borda azul */
.membro-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #1f3e67;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 170, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.15);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.membro-card:hover .membro-avatar {
  border-color: #00aaff;
  box-shadow: 0 0 28px rgba(0, 170, 255, 0.5);
}

/* Foto: começa em preto e branco, fica colorida no hover */
.membro-avatar img {
  width: 150%;
  height: 150%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.membro-avatar .enzzo {
  object-position: center 50%;
}

.membro-avatar .joao-vitor {
  object-position: center 50%;
}

.membro-avatar .livia {
  object-position: center 50%;
}

.membro-avatar .joao-pedro {
  object-position: center -50%;
}

.membro-avatar .gabriel-somaggio {
  object-position: center 50%;
}

.membro-card:hover .membro-avatar img {
  filter: grayscale(0%);
}

/* Ícone fallback (quando não há foto) */
.membro-avatar i {
  font-size: 2.6rem;
  color: #00aaff;
}

.membro-nome {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.membro-cargo {
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  color: #00aaff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.4;
}

/*============================================
    RESPONSIVIDADE
  ============================================ */
@media (max-width: 768px) {
  .historia-div {
    width: 95%;
    padding: 30px 24px;
  }

  .numeros-grid {
    width: 95%;
    flex-direction: column;
  }

  .numero-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 170, 255, 0.2);
  }

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


.troca-form{
    text-align:center;
    margin-top:20px;
}

.troca-form p{
    color:#64b5f6;
    font-family:"Lato", sans-serif;
}

.troca-form a{
    color:#00aaff;
    text-decoration:none;
    font-weight:bold;
}

.troca-form a:hover{
    color:#00ccff;
}

.separador {
  display: block;
  font-size: 30px;
  color: #00aaff;
  margin: 10px 0;
}