/* Estilos para o cabeçalho interativo da página de Moda Inclusiva */

.header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb, #1d4ed8, #01444f);
  background-size: 300% 300%;
  animation: gradientFlow 15s ease infinite;
  text-align: center;
  padding: 2rem;
}

.header-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
}

.header-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: slideInLeft 1.2s ease-out forwards;
}

.header-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideInRight 1.2s ease-out 0.3s forwards;
  animation-fill-mode: forwards;
}

.header-description {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeIn 1.2s ease-out 0.6s forwards;
  animation-fill-mode: forwards;
}

.header-cta {
  display: inline-block;
  background-color: #FFFFFF;
  color: #8A2BE2;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s ease-out 0.9s forwards;
  animation-fill-mode: forwards;
}

.header-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.header-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s ease;
}

.header-cta:hover::before {
  left: 100%;
}

/* Elementos decorativos animados */
.header-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  top: -50px;
  left: -50px;
  animation-delay: 0s;
}

.floating-element-2 {
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.15);
  bottom: -50px;
  right: 10%;
  animation-delay: 1s;
}

.floating-element-3 {
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.1);
  top: 30%;
  right: -30px;
  animation-delay: 2s;
}

.floating-element-4 {
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  bottom: 20%;
  left: 15%;
  animation-delay: 1.5s;
}

/* Elemento central com a imagem principal */
.header-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  animation: rotateIn 1.5s ease-out 0.5s forwards;
  animation-fill-mode: forwards;
}

.header-image {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 50%, rgba(138, 43, 226, 0.3) 100%);
}

/* Partículas animadas */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  display: block;
  pointer-events: none;
  opacity: 0.5;
  animation: float 10s linear infinite;
}

.particle:nth-child(1) {
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  top: 20%;
  left: 20%;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  width: 15px;
  height: 15px;
  background-color: #3b82f6;
  top: 70%;
  left: 80%;
  animation-duration: 15s;
}

.particle:nth-child(3) {
  width: 8px;
  height: 8px;
  background-color: #00CCCC;
  top: 40%;
  left: 60%;
  animation-duration: 10s;
}

.particle:nth-child(4) {
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
  top: 80%;
  left: 10%;
  animation-duration: 14s;
}

.particle:nth-child(5) {
  width: 6px;
  height: 6px;
  background-color: #3b82f6;
  top: 10%;
  left: 90%;
  animation-duration: 11s;
}

/* Navegação interativa */
.header-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-icon {
  margin-right: 10px;
  animation: pulse 2s infinite;
}

.nav-links {
  display: flex;
  gap: 3rem;
  padding: 0 40px 0;
}

.nav-link {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
  animation-fill-mode: forwards;
}

.scroll-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid #FFFFFF;
  border-radius: 25px;
  position: relative;
}

.scroll-icon::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { transform: translate(-50%, 0); opacity: 1; }
  80% { transform: translate(-50%, 20px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* Responsividade */
@media (max-width: 992px) {
  .header-title {
    font-size: 4rem;
  }
  
  .header-subtitle {
    font-size: 1.5rem;
  }
  
  .header-image-container {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .header-title {
    font-size: 3rem;
  }
  
  .header-subtitle {
    font-size: 1.3rem;
  }
  
  .header-description {
    font-size: 1rem;
  }
  
  .header-image-container {
    max-width: 300px;
  }
  
  .nav-links {
    display: none;
  }
}

@media (max-width: 576px) {
  .header-title {
    font-size: 1.5rem;
  }
  
  .header-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-title h1 {
    font-size: 10px;
  }
  
  .header-cta {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
  
  .header-image-container {
    max-width: 250px;
  }
}

/* Estilos para o header PAI (#meuHeaderPrincipal)
   Ele apenas serve como container e para definir o ponto de rolagem.
   Pode manter os estilos que já tinha. O padding é importante para o espaço inicial.
*/
#meuHeaderPrincipal {
  
    padding: 20px 40px; /* Ajuste conforme o design original do header completo */
    /* Outros estilos que seu header principal possa ter (ex: background inicial se não for transparente) */
    position: relative; /* Importante para o cálculo de offsetTop do JS */
}

/* Estilos Iniciais para a BARRA DE NAVEGAÇÃO (#minhaBarraNavegacao) */
#minhaBarraNavegacao {
   position: absolute;
  

    z-index: 100; /* z-index inicial, será maior quando sticky */
    background-color: transparent; /* Fundo inicial da barra de navegação */
    padding: 10px 80px; /* Padding vertical inicial da barra, ajuste se necessário. Horizontal virá do pai ou dela mesma. */
    /* A transição é a chave para a animação suave */
    transition: background-color 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}

.logo img {
    height: 40px; /* ajuste conforme seu layout */
    transition: all 0.3s ease;
}

/* Estilos para os textos DENTRO da barra de navegação no estado inicial */
#minhaBarraNavegacao .logo,
#minhaBarraNavegacao .nav-link {
    color: white; /* Cor da fonte branca inicialmente, se for o caso no seu design */
    transition: color 0.5s ease; /* Anima a mudança de cor do texto */
}

/* ESTADO STICKY para a BARRA DE NAVEGAÇÃO específica */
#minhaBarraNavegacao.minha-nav-sticky-ativa {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Ocupa toda a largura da tela */
    
    background-color: #ffffff; /* Fundo branco */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Sombra suave */
    padding: 10px 40px; /* Padding no modo sticky. Ajuste os 40px para alinhar com o conteúdo da página. */
    z-index: 1010; /* z-index alto para ficar sobre todo o conteúdo da página */
    /* As animações de entrada serão as transições definidas em #minhaBarraNavegacao */
}

/* Ajusta a cor da fonte para os elementos DENTRO da barra de navegação QUANDO sticky */
#minhaBarraNavegacao.minha-nav-sticky-ativa .logo,
#minhaBarraNavegacao.minha-nav-sticky-ativa .nav-link {
    color: #1C1C1C; /* Cor da fonte Roxa/Violeta */
}



#minhaBarraNavegacao {
  justify-content: center; /* centraliza o bloco */
  align-items: center;
  width: 100%;
  }

 #minhaBarraNavegacao 
 .nav-container {
   display: flex;
   justify-content: space-between;
   max-width: 90%;
   width: 100%;
    }
  .nav-links{
   justify-content: center;  /* coloca logo + links juntos no centro */
   align-items: center;
   }          
   

   /* ===== Base mobile ===== */
.menu-mobile {
  display: none; /* escondido por padrão */
  background: #fff;
  padding: 10px 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.menu-mobile-toggle {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.menu-mobile-links {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-top: 30vh;
}

.menu-mobile-links.active {
  display: flex;
}

.menu-mobile-link {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  transition: color 0.3s;
}

.menu-mobile-link:hover {
  color: #007bff;
}

.menu-mobile-cta {
  padding: 8px 16px;
  border: none;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.menu-mobile-cta:hover {
  background: #0056b3;
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
  .menu-mobile {
    display: block; /* aparece só no celular */
  }
}

@media (min-width: 769px) {
  .menu-mobile {
    display: none !important; /* oculta desktop e tablet */
  }
}


.header-decoration {
  width: 100%;
  height: 100vh; /* ajuste a altura conforme desejar */
  background-image: url("../img/BLIND.689Z.webp");
  background-size: cover;      /* cobre toda a área */
  background-position: center; /* centraliza a imagem */
  background-repeat: no-repeat;
  opacity: 0.4; /* deixa translúcido */
}

/* Ajuste responsivo para tablets */
@media (max-width: 1024px) {
  .header-decoration {
    height: 100vh;
  }
}

/* Ajuste responsivo para celulares */
@media (max-width: 768px) {
  .header-decoration {
    height: 100vh;
    opacity: 0.5; /* pode deixar um pouco mais visível no mobile */
  }
}


/* ===== ESTILOS GERAIS PARA O CABEÇALHO ===== */
.header {
    background-color: #0d0d0d;
    color: #fff;
    font-family: Arial, sans-serif;
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    height: 60px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* Esconde o menu mobile por padrão em telas maiores */
.menu-mobile {
    display: none;
}

/* Estilo do Logo */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 2rem;
    margin-right: 8px;
}

/* Estilo dos Links de Navegação (Desktop) */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #aaa;
}

/* Estilo do Botão (assumindo que seja o estilo de um botão de ação) */
.highlight-cta {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.highlight-cta:hover {
    background-color: #0056b3;
}

/* ===== ESTILOS DO CONTEÚDO HERO ===== */
.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.header-description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 30px;
}


/* ===== MEDIA QUERIES PARA RESPONSIVIDADE ===== */
@media (max-width: 768px) {

  #minhaBarraNavegacao {
    padding: 0px;
    }

    /* Esconde os links de navegação do desktop */
    .nav-links {
        display: none;
    }

    /* Mostra o menu mobile */
    .menu-mobile {
        display: flex;
        align-items: center;
    }

    /* Estilo do botão de hambúrguer */

  }