

/* Estilos gerais */
body{

    background-color: black;
    color: white; /* Define a cor da fonte como branca */
    font-family: Helvetica, sans-serif;
    font-size: 16px; /* Ajuste o tamanho da fonte conforme necessário */
    font-weight: bold; /* Torna a fonte mais grossa */
    margin: 0;
    padding: 0;

}

.imagem-centralizada {
      display: block; /* Torna a imagem um elemento de bloco */
      margin-left: auto;
      margin-right: auto;
      max-width: 100%; /* Controla a largura da imagem */
      height: auto; /* Mantém a proporção da imagem */
}    


#Home4 {
    background-color: white; /* Define o fundo branco */
    color: white; /* Define a cor da fonte como branca */
    font-family: Helvetica, sans-serif;
    font-size: 16px; /* Ajuste o tamanho da fonte conforme necessário */
    font-weight: bold; /* Torna a fonte mais grossa */
    margin: 0;
    padding: 0;
}

#Criacao {
    background-color: white; /* Define o fundo branco */
    color: white; /* Define a cor da fonte como branca */
    font-family: Helvetica, sans-serif;
    font-size: 16px; /* Ajuste o tamanho da fonte conforme necessário */
    font-weight: bold; /* Torna a fonte mais grossa */
    margin: 0;
    padding: 0;
}

/* Se o elemento pai estiver causando o problema */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; 
  height: 40;

}

/* Se o elemento pai estiver causando o problema */
.containerImagem {
  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center; 
  height: 30vh;
}




.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Estilo da seção */
#home {
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Estilo da seção */
#Video {
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



@media (max-width: 768px) {
  #home {
    background-size: contain; /* Ajusta para telas menores */
  }
}

.FonteTitulo{
    font-size: 3rem;
    text-align: center;
    line-height: 1;
    padding: 0 0 0px; /* Remove o padding superior */

}



.FonteSubTitulo2 {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.5; /* Espaço entre as linhas */
  
}


.FonteSubTitulo4 {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.5; /* Espaço entre as linhas */
    color: black; /* Define a cor da fonte como branca */
}

.FonteSubTitulo5 {
    font-size: 1.0 rem;
    text-align: left;
    line-height: 1.5; /* Espaço entre as linhas */
  
}
.FonteSubTitulo3 {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.5; /* Espaço entre as linhas */

}

   .p1 {
            font-size: 1.2 rem; /* Tamanho inicial maior para desktop */
            line-height: 1.4;

            vertical-align:revert;
        }


   .p2 {
            font-size: 2 rem; /* Tamanho inicial maior para desktop */
            line-height: 5;
            text-align: center;

        }


section {
    margin: 0; /* Remove o padding */
}

/* Estilos para animação (exemplo com ScrollReveal) */
.reveal {
  opacity: 0;
  transform: translateY(50px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


 .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* Proporção 16:9 (altura baseada na largura) */
            height: 0;
            overflow: hidden;
            text-align: center;
        }

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Garante que o vídeo preencha o espaço sem distorção */
            text-align: center;
        }


        .play-button {
            width: 24px;
            height: 24px;
            cursor: pointer;
        }

  /* Estilo do botão flutuante */
    .floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #0078A0;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.3s ease;
    }

    .floating-button img {
      width: 40px;
      height: 40px;
    }

    /* Efeito hover de tremor */
    .floating-button:hover {
      background-color: #005F7A;
      animation: shake 0.1s ease-in-out 20; /* 20 repetições para durar 2 segundos */
    }

    /* Animação de tremor */
    @keyframes shake {
      0% { transform: translate(1px, 1px) rotate(0deg); }
      10% { transform: translate(-1px, -2px) rotate(-1deg); }
      20% { transform: translate(-3px, 0px) rotate(1deg); }
      30% { transform: translate(3px, 2px) rotate(0deg); }
      40% { transform: translate(1px, -1px) rotate(1deg); }
      50% { transform: translate(-1px, 2px) rotate(-1deg); }
      60% { transform: translate(-3px, 1px) rotate(0deg); }
      70% { transform: translate(3px, 1px) rotate(-1deg); }
      80% { transform: translate(-1px, -1px) rotate(1deg); }
      90% { transform: translate(1px, 2px) rotate(0deg); }
      100% { transform: translate(1px, -2px) rotate(-1deg); }
    }
        
        .image-container {
            border: 2px solid yellow; /* Borda amarela */
            padding: -5px; /* Remove o espaçamento interno */

            
        }

        .image-container img {
            width: 100%; /* Tamanho responsivo */
            height: auto;
            display: block; /* Remove espaços em branco ao redor da imagem */
        }

        .grid-padding-x {
            margin-left: 0px; /* Remove margem entre as colunas */
            margin-right: 0px; /* Remove margem entre as colunas */
        }

   .image-hover {
            transition: all 0.4s ease-in-out;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Sombra suave */
            border-radius: 10px; /* Canto arredondado */
        }

        .image-hover:hover {
            transform: scale(1.1); /* Aumenta o zoom */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Sombra mais intensa */
            filter: contrast(120%); /* Aumenta o contraste */
        }





        .p6 {
            font-size: 18px; /* Tamanho padrão em telas maiores */
        }

        /* Ajustes para telas menores que 600px (celulares) */
        @media screen and (max-width: 600px) {
            .p6 {
                font-size: 14px; /* Reduz o tamanho da fonte em dispositivos móveis */
            }
        }

        /* Ajustes para telas menores que 400px (smartphones menores) */
        @media screen and (max-width: 400px) {
            .p6 {
                font-size: 12px; /* Ainda menor para telas muito pequenas */
            }
        }