:root {
  --primary-color: #fff;
  --background-color: #000;
  --gradient-text: linear-gradient(90deg, #a862fe, #7837ee);
}
body {
  background-color: var(--background-color);
  color: var(--primary-color);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  overflow-x: hidden;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.navbar nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
.navbar a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.77vh;
  pointer-events: none;
}
.hero-content {
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}
.hero-content h1 {
  font-size: 3.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content h2, .section p {
  font-weight: 300;
  color: #ddd;
  text-align: center;
}
.cta-button {
  margin-top: 25px;
  padding: 12px 30px;
  background: var(--gradient-text);
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}
.section {
  padding: 100px 10%;
  text-align: center;
}
.hero-static h1 {
  font-size: 3rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.case-card {
  background: rgba(30, 30, 30, 0.8);
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
}
.case-card:hover {
  transform: translateY(-5px);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 30px auto;
}
.contact-form input, .contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}
.contact-form textarea {
  min-height: 120px;
}
.contact-links {
  margin-top: 20px;
}
.contact-links a {
  color: var(--primary-color);
  margin: 0 10px;
  font-size: 1.5rem;
}
footer {
  text-align: center;
  padding: 40px 0;
  background-color: #111;
  color: #ccc;
}

/* ============================================= */
/* == ESTILOS MODIFICADOS PARA contato.html == */
/* ============================================= */

.contact-page-bio {
  padding-top: 150px; 
  min-height: 100vh;
}
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%; 
  object-fit: cover; 
  border: 3px solid var(--primary-color);
  margin-bottom: 15px;
  background-color: #333; 
}
.social-icons-bio {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}
.social-icons-bio a {
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}
.social-icons-bio a:hover {
   transform: scale(1.2);
}

/* ============================================= */
/* == ESTILOS DOS BOTÕES (TOTALMENTE NOVOS) == */
/* ============================================= */
.link-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Espaço entre os botões */
  max-width: 500px; 
  margin: 40px auto; 
}

.link-button {
  display: flex;
  /* Cor azul escura, similar à da imagem */
  background: #1E204D; 
  color: var(--primary-color);
  border-radius: 20px; /* Cantos bem arredondados */
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* Importante para os cantos arredondados */
  /* Borda branca semi-transparente, como na imagem */
  border: 2px solid rgba(255, 255, 255, 0.5); 
  min-height: 110px; /* Altura mínima para o botão */
}

.link-button:hover {
  transform: translateY(-5px); 
  /* Sombra leve com a cor do seu gradiente */
  box-shadow: 0 5px 15px rgba(168, 98, 254, 0.3); 
}

/* As duas metades do botão */
.link-button-logo,
.link-button-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Metade do LOGO */
.link-button-logo {
  flex-basis: 40%; /* Logo ocupa 40% */
  /* Cor de fundo interna, como na imagem */
  background: rgba(0, 0, 0, 0.15); 
}

/* Metade do TEXTO */
.link-button-text {
  flex-basis: 60%; /* Texto ocupa 60% */
  font-size: 1.2rem;
  text-align: center;
}

/* ======================================================
  == REGRA DE ESTILO ALTERADA (DE 'i' PARA 'img') ==
  ======================================================
*/
/* Imagem GRANDE dentro do logo */
.link-button-logo img {
  width: 3.5rem;  /* Define a largura da imagem */
  height: 3.5rem; /* Define a altura da imagem */
  object-fit: contain; /* Garante que a imagem caiba sem distorcer */
}

/* Classes para alternar a ordem */
.style-logo-left {
  flex-direction: row; /* [LOGO] [TEXTO] */
}

.style-logo-right {
  flex-direction: row-reverse; /* [TEXTO] [LOGO] */
}