/* === Reset e Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Corrige o scroll sendo cortado pela navbar fixa */}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}


body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #4B0082, #8A2BE2);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  text-align: center;
}

img {
  max-width: 100%;
  display: block;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 150px;
  background: none;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out; /* Smooth transition for hover effect */
  cursor: pointer; /* Pointer cursor for better UX */
  box-sizing: border-box; /* Ensures padding and border are included in width/height */
  filter: brightness(0.9); /* Slightly dimmed for better contrast */
}

 .logo:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  transition: transform 0.3s ease-in-out; /* Smooth transition */
}

/* === Scrollbar Personalizado === */
::-webkit-scrollbar {
  width: 14px;
  background: #232127;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8A2BE2, #4B0082);
  border-radius: 8px;
  border: 3px solid #232127;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #DA70D6, #8A2BE2);
}

::-webkit-scrollbar-track {
  background: #232127;
  border-radius: 8px;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #8A2BE2 #232127;
}

/* === Navegação === */
.main-nav {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  /* Animation for nav bar */
  animation: slideDown 0.6s ease-out forwards;
  scroll-behavior: smooth ;
  text-align: center; /* Center align nav items */
  width: 100%; /* Ensure full width */
  backdrop-filter: blur(10px); /* Add a blur effect */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border for separation */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
  transition: background 0.3s ease-in-out; /* Smooth background transition */
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1px;
  padding: 0;
  margin: 0;
  animation: fadeIn 0.5s ease-out forwards; /* Animation for nav items */
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.nav-list li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.nav-list li a:hover::before {
  transform: scaleX(1);
}

.nav-list li a:hover {
  background-color: #DA70D6;
  transform: translateY(-3px);
}
.nav-list li a.active {
  background-color: #4B0082; /* Active link background */
  color: #fff; /* Active link text color */
  transform: translateY(-3px); /* Slight lift for active link */
}


/* === Cards === */
.card-container {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 40px 24px;
  margin: 40px auto;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: fadeInScale 0.8s ease-out forwards; /* Animation for card container */
  backdrop-filter: blur(10px); /* Add a blur effect */

}

.site-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 24px;
  animation: pulse 1.8s infinite alternate, rotate3D 5s infinite linear; /* Added 3D rotate */
  background: #fff;
  object-fit: cover;
}

h1 {
  font-size: 2rem;
  color: #DA70D6;
  margin-bottom: 20px;
  animation: textGlow 2s infinite alternate; /* Text glow animation */
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #DA70D6;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.countdown-mini {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideInLeft 0.7s ease-out forwards; /* Animation for countdown */

}

.countdown-numbers {
  font-size: 1.6rem;
  font-weight: bold;
  color: #DA70D6;
  letter-spacing: 2px;

}

.description-mini, .estimation-mini {
  color: #E0BBE4;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.estimation-mini span {
  color: #fff;
  font-weight: bold;
}

/* === Seção Sobre === */
.sobre-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.sobre-section h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  animation: textGlow 2s infinite alternate;
}

.sobre-section p {
  color: #E0BBE4;
  font-size: 1.1rem;
  animation: fadeIn 1s ease-out forwards; /* Animation for paragraph */
}

/* === Grid de Indicados === */
.indicados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.indicados-grid .section-title {
  grid-column: 1/-1;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  animation: textGlow 2s infinite alternate;
}

.indicado-card {
  background: #58198b;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  text-align: center;
  transition: 0.3s ease-in-out;
  animation: fadeInSlideUp 0.8s ease-out forwards; /* Animation for each card */
  opacity: 0; /* Start invisible for animation */
  transform: translateY(20px); /* Start with a slight downward position */
  will-change: transform, opacity; /* Optimize for animation performance */
  position: relative; /* For pseudo-elements */
  overflow: hidden; /* Prevents overflow of pseudo-elements */
  backdrop-filter: blur(10px); /* Add a blur effect */
  border: 1px solid rgba(255, 255, 255, 0 .1); /* Subtle border for separation */
  box-shadow: 0 2px 10px rgba(88, 25,139, 0.3), 0 4px 20px rgba(88, 25, 139, 0.2); /* Soft shadow for depth */
  z-index: 0; /* Ensure it appears below the hover effect */
  box-sizing: border-box; /* Ensures padding and border are included in width/height */
  margin: 0 auto; /* Center the card */
  width: 100%; /* Full width for responsiveness */
  max-width: 320px; /* Limit max width for larger screens */
}

/* Delay animation for each card */
.indicado-card:nth-child(2) { animation-delay: 0.1s; }
.indicado-card:nth-child(3) { animation-delay: 0.2s; }
.indicado-card:nth-child(4) { animation-delay: 0.3s; }
/* Add more for more cards if needed */



.indicado-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease-in-out;
}

.indicado-card ul {
    list-style: disc inside;
    padding-left: 0;
    margin: 0 0 8px 0;
}

.indicado-card li {
    margin: 4px 0;
    font-size: 0.95rem;
    color: #E0BBE4;
}

.indicado-card img:hover {
  transform: rotate(10deg) scale(1.05); /* Slight rotate on image hover */
}

.indicado-card h3 {
  color: #DA70D6;
  margin-bottom: 4px;
  font-size: 2rem;
}

.indicado-card p {
    font-size: 1.5rem;
  color: #000000;
  margin-bottom: 8px;
  background-color: rgba(234, 0, 255, 0.1);
  border: #000000 1px solid;
  border-radius: 10px;

}

.card-description {
  font-size: 0.95rem;
  color: #ccc;
}

/* === Social dos Indicados === */
.social-icons-indicado {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.social-icons-indicado a img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.social-icons-indicado a img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  filter: brightness(1.2); /* Brightness effect on hover */
}

/* === Footer === */
.site-footer {
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  color: #E0BBE4;
  margin-top: 60px;
  animation: fadeIn 1s ease-out forwards; /* Animation for footer */
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.social-links a img {
  width: 32px;
  height: 32px;
  transition: 0.3s;
}

.social-links a img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px #DA70D6); /* Glow effect on social icons */
}

/* === Animações === */
@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes textGlow {
  0% { text-shadow: 0 0 5px #DA70D6; }
  100% { text-shadow: 0 0 15px #DA70D6, 0 0 25px #DA70D6; }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rotate3D {
  0% { transform: perspective(500px) rotateY(0deg); }
  100% { transform: perspective(500px) rotateY(360deg); }
}

.dev-banner {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(75, 0, 130, 0.6));
  border-radius: 20px;
  padding: 30px 20px;
  max-width: 600px;
  margin: 30px auto 60px;
  box-shadow: 0 10px 40px rgba(75, 0, 130, 0.4);
  color: #e0bbf4;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  animation: fadeInSmooth 1.5s ease forwards;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3), 0 2px 10px rgba(75, 0, 130, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;  
}

.dev-banner .site-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 2.5px solid #DA70D6;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(218, 112, 214, 0.5);
  animation: pulse 1.8s infinite alternate, float 3s infinite ease-in-out; /* Added float animation */
  transition: transform 0.3s ease-in-out;
}

.dev-banner h1 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: #DA70D6;
  text-shadow: 0 0 10px rgba(218, 112, 214, 0.7);
  animation: textGlow 2s infinite alternate;
}

.dev-banner .loader-circle {
  margin: 0 auto 18px;
  width: 48px;
  height: 48px;
  border: 5px solid rgba(255, 255, 255, 0.15);
  border-top: 5px solid #DA70D6;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 10px rgba(218, 112, 214, 0.5);
  transition: transform 0.3s ease-in-out;
}

.dev-banner .countdown-mini {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 10px;
  margin-bottom: 18px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: inset 0 0 10px rgba(218, 112, 214, 0.4);
  user-select: text;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: default;  
}

.dev-banner .countdown-numbers {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #000000;
  text-shadow: 0 0 10px #bb77e1;
  margin-top: 6px;
  user-select: text;
  transition: color 0.3s ease-in-out;
  cursor: default;

}

.dev-banner .description-mini,
.dev-banner .estimation-mini {
  font-size: 0.9rem;
  color: #d4b9e9;
  margin-bottom: 6px;
  user-select: none;
  transition: color 0.3s ease-in-out;
  cursor: default;
}

.dev-banner .estimation-mini span {
  font-weight: 700;
  color: #fff;
  user-select: text;
  transition: color 0.3s ease-in-out;
  cursor: default;

}

.dev-banner .social-links-mini {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 28px;
  flex-wrap: wrap;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
  user-select: none;
}

.dev-banner .social-links-mini a img {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 0 6px #DA70D6);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
  padding: 4px;
}

.dev-banner .social-links-mini a:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px #ff99ff);
}

/* === Animações === */
@keyframes fadeInSmooth {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.ver-mais-btn {
  background: linear-gradient(135deg, #DA70D6, #8A2BE2);
  color: white;
  padding: 10px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease-in-out;
  display: inline-block;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  text-align: center;
  width: 200px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1); 
  box-shadow: 0 2px 10px rgba(138, 43, 226, 0.3), 0 4px 20px rgba(75, 0, 130, 0.2);
  filter: brightness(0.9);
  text-shadow: 0 0 5px rgba(218, 112, 214, 0.5);
  font-family: 'Montserrat', sans-serif;
  animation: fadeIn 0.5s ease-in-out;
      user-select: none; /* Prevent text selection */
  position: relative; /* For hover effect */
  z-index: 1; /* Ensure it appears above other elements */
  overflow: hidden; /* Prevents overflow of pseudo-elements */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, filter 0.3s ease-in-out;
  box-sizing: border-box; /* Ensures padding and border are included in width/height */
  max-width: 100%; /* Responsive width */
}

.ver-mais-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
}

.nav-list a.active {
 background-color: #4B0082;
}

@media (max-width: 800px) {
  .indicado-card {
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease-in-out; 
  }
  
   nav-list {
    flex-direction: row ;
    align-items: center;
    gap: 10px;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
  }

  .nav-list li a {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .site-logo {
    width: 60px;
    height: auto;
  }
  .indicado-card img {
    width: 70px;
    height: 70px;
  }

  .indicado-card h3 {
    font-size: 1.6rem;
  }

  .indicado-card p {
    font-size: 1.2rem;
  }

  .social-icons-indicado a img {
    width: 24px;
    height: 24px;
  }
}
/* === Equipe === */
.equipe-section {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #4B0082, #8A2BE2);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: fadeIn 1s ease-out forwards; /* Animation for equipe section */  
}

.equipe-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
  padding: 0 20px;
}

.membro-card {
  background-color: #28013f;
  color: #fffcfc;
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  text-align: center; /* Isso centraliza tudo dentro, incluindo a imagem */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza todos os itens no eixo horizontal */
  justify-content: center; /* Centraliza todos os itens no eixo vertical */

}
.membro-card h3 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #DA70D6; /* Cor do texto do nome */
  transition: color 0.3s ease-in-out; /* Transição suave para a cor do texto */
  text-decoration: none; /* Remove sublinhado do texto */
  font-weight: bold; /* Deixa o nome em negrito */
  letter-spacing: 1px; /* Espaçamento entre letras */
  margin-bottom: 10px; /* Espaçamento inferior para o nome */

}

.membro-card h3 :hover {
  color: #ffffff; /* Cor do texto do nome ao passar o mouse */
  text-decoration: underline; /* Sublinha o nome ao passar o mouse */
}

.membro-card p {
  font-size: 1rem;
  margin: 5px 0;
  color: #e9e9e9; /* Cor do texto dos cargos e emails */
  transition: color 0.3s ease-in-out; /* Transição suave para a cor do texto */
  font-weight: normal; /* Deixa o texto normal, não em negrito */
  margin-bottom: 10px; /* Espaçamento inferior para os parágrafos */
}

.membro-card p a {
  color: #ae00ff; /* Cor do link */
  text-decoration: none; /* Remove sublinhado do link */
  transition: color 0.3s ease-in-out; /* Transição suave para a cor do link */

}

.membro-card p strong {
  color: #ffffff; /* Cor do texto dos rótulos (Cargo, Email) */
  font-weight: bold; /* Deixa os rótulos em negrito */
  transition: color 0.3s ease-in-out; /* Transição suave para a cor do texto */


}

.membro-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out; /* Transição suave para o efeito de hover */
  box-shadow: 0 2px 6px rgba(108, 30, 128, 100); /* Sombra suave para a imagem */

}


.social-icons-equipe {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 0;
  list-style: none; /* Remove os marcadores da lista */
  width: 100%; /* Garante que ocupe toda a largura do card */
  text-align: center; /* Centraliza os ícones dentro do card */
  margin-bottom: 10px; /* Espaçamento inferior para os ícones */
}

.social-icons-equipe:hover {
  transform: translateY(-3px); /* Levanta os ícones ao passar o mouse */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* Aumenta a sombra ao passar o mouse */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave para o efeito de hover */
  filter: brightness(1.1); /* Aumenta o brilho ao passar o mouse */
  cursor: pointer; /* Muda o cursor para indicar que é interativo */
  background-color: rgba(255, 255, 255, 0.1); /* Adiciona um fundo sutil ao passar o mouse */
  border-radius: 10px; /* Arredonda os cantos do fundo */
}

.social-icons-equipe a {
  color: #e9e9e9;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons-equipe a:hover {
  color: #8A2BE2;
  transform: scale(1.2); /* Aumenta o tamanho do ícone ao passar o mouse */
  transition: transform 0.3s ease-in-out; /* Transição suave para o efeito de hover */
}

.contato-section {
  margin: 10px auto;
  background-color: #1e0127;
  color: #fff;
  width: 100%;
  padding: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: alternate 0.5s ease-in-out forwards; /* Animação de entrada suave */
}

.contato-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #DA70D6; /* Cor do título */
  text-shadow: 0 0 10px rgba(218, 112, 214, 0.5); /* Efeito de brilho no título */
  transition: color 0.3s ease-in-out; /* Transição suave para a cor do título */

} 

.membro-card:hover {
  transform: translateY(-5px); /* Levanta o card ao passar o mouse */
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); /* Aumenta a sombra ao passar o mouse */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transição suave para o efeito de hover */
  background-color: rgba(40, 1, 63, 0.8);
}