/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/






.texto_geral {
	font-family: calibri, arial;
	font-size: 17px;
	color: #7d7d7d;
	
	text-align: center;
	}




.texto_destaque_azul_logo {
    color: #0d92d1;         /* cor azul do logo meu desenho meu mundo */
    font-size: 30px;
    font-weight: var(--font-weight-bold);
    text-decoration: underline; /* Adiciona o sublinhado */
    text-decoration-thickness: 10px; /* Define a espessura do sublinhado (ajuste o valor) */
    text-decoration-color: #0d92d1; /* Opcional: Define a cor do sublinhado (pode ser diferente da cor do texto) */
    text-underline-offset: 2px; /* Opcional: Ajusta a distância do sublinhado em relação ao texto */
}



.texto_destaque_azul_marinho {
    color: #00a8b3;
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    text-decoration: underline; /* Adiciona o sublinhado */
    text-decoration-thickness: 8px; /* Define a espessura do sublinhado (ajuste o valor) */
    text-decoration-color: #00a8b3; /* Opcional: Define a cor do sublinhado (pode ser diferente da cor do texto) */
    text-underline-offset: 2px; /* Opcional: Ajusta a distância do sublinhado em relação ao texto */
}


.text-verde {
  color: green;
  text-decoration: underline; /* Adiciona o sublinhado */
  text-decoration-thickness: 2px; /* Define a espessura do sublinhado (ajuste o valor) */
  text-underline-offset: 5px; /* Opcional: Ajusta a distância do sublinhado em relação ao texto */

}

.text-azul {
  color: #0d92d1;
  text-decoration: ; /* Adiciona o sublinhado */
  text-decoration-thickness: 2px; /* Define a espessura do sublinhado (ajuste o valor) */
  text-underline-offset: 5px; /* Opcional: Ajusta a distância do sublinhado em relação ao texto */

}


.videoWrapper {
    position: relative; /* Importante para posicionar a imagem em relação ao vídeo */
}

.personagem-flutuante {
    position: absolute;
    bottom: 100%; /* Posiciona a imagem acima do vídeo */
    left: 50%; /* Centraliza horizontalmente */
    transform: translateX(-50%); /* Ajusta o alinhamento central */
    width: 200px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    margin-bottom: 20px; /* Espaço entre a imagem e o vídeo */
    animation: flutuar 3s infinite alternate ease-in-out; /* Aplica a animação */
}

@keyframes flutuar {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    100% {
        transform: translateX(-50%) translateY(-10px); /* Ajuste a altura do "flutuar" */
    }
}







:root {
  --white-color:                  #FFFFFF;
  --primary-color:                #000;     /*- texto título principal----*/
  --section-bg-color:             #f9f9f9;
  --dark-color:                   #000000;
  --grey-color:                   #fcfeff;
  --text-secondary-white-color:   rgba(255, 255, 255, 0.98);
  --title-color:                  #565758;
  --p-color:                      #717275;

  --body-font-family:           'Noto Sans JP', sans-serif;

  --h1-font-size:               50px; 
  --h11-font-size:              20px; 
  --h2-font-size:               32px;
  --h3-font-size:               36px;
  --h4-font-size:               20px;
  --h5-font-size:               24px;
  --h6-font-size:               22px;
  --p-font-size:                20px;
  --copyright-text-font-size:   14px;
  --custom-link-font-size:      12px;

  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           700;
  --font-weight-black:          900;
}

body,
html {
  height: 100%;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);    
    position: relative;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

.text-vermelho {
  color: #f00;
}





h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

h7 {
  font-size: var(--h7-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
}

.text-secondary-white-color {
  color: var(--text-secondary-white-color);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--dark-color);
  color: var(--white-color);
}

.custom-underline {
  border-bottom: 6px solid var(--white-color);
  color: var(--white-color);
  padding-bottom: -10px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay {
  background: linear-gradient(to top, #000, transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-links {
  max-width: 230px;
}

.custom-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover,
.custom-link:hover::after {
  color: var(--white-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/

.navbar {
  z-index: 5;
  right: 0;
  left: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-brand {
  color: #00a8b3;
  font-size: 24px; /*-- abaixo do vídeo --*/
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 15px;
  padding-left: 15px;
}

.navbar-nav .nav-link::after {
  content: "\f140";
  font-family: bootstrap-icons;
  display: inline-block;
  margin-left: 10px;
  color: var(--primary-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

.navbar-nav .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-link {
  color: var(--p-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  position: relative;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  color: var(--primary-color);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-item.active .nav-link,
.nav-link:focus, 
.nav-link:hover {
  color: var(--dark-color);
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .hero {
    height: 100vh;
  }

  .custom-video,
  .news-detail-image {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }

  .sticky-wrapper {
    position: relative;
    bottom: 76px;
  }
}

.heroText {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}

/*---------------------------------------
  ABOUT & TEAM MEMBERS               
-----------------------------------------*/
.about-image,
.team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 475px;
  object-fit: cover;
}

.team-thumb {
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  padding: 22px 32px 32px 32px;
}

.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 2.5rem;
}

.carousel-control-prev {
  right: 4rem;
  left: auto;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: var(--dark-color);
  background-size: 50% 50%;
  border-radius: 100px;
  width: 3rem;
  height: 3rem;
}

/*---------------------------------------
  PORTFOLIO               
-----------------------------------------*/
.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-info {
  margin: 20px;
}

/*---------------------------------------
  NEWS & EVENTS               
-----------------------------------------*/

.news,
.related-news {
  background: var(--section-bg-color);
}

.news-thumb {
  position: relative;
}

.news-category {
  background: var(--white-color);
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  padding: 4px 12px;
  display: inline-block;
}

.news-text-info {
  margin: 0 20px;
}

.news-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.news-title-link {
  color: var(--title-color);
  display: inline-block;
}

.news-title-link:hover {
  color: var(--dark-color);
}

.portfolio-image,
.news-image {
  display: block;
  transition: transform 0.6s ease-out;
}

.news-image-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 4px;
  height: 100%;
}

.news-image-hover::after {
  content: "";
  width: 0;
  height: 20px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: #198754;
}

.news-image-hover-warning::after {
  background: #ffe900;
}

.news-image-hover-primary::after {
  background: #0d6efd;
}

.news-image-hover-success::after {
  background: #198754;
}

.news-image-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 6;
}

.image-popup:hover .portfolio-image,
.news-image-hover:hover .news-image {
  transform: scale(1.02);
}

.news-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}

.news-two-column .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-share-link,
.social-share-link + span {
  color: rgba(255, 255, 255, 0.65);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-radius: 0;
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
}

.contact-form button[type='submit'] {
  background: #00FF00; /* Verde brilhante */
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
  transition: all 0.6s ease-out;
}

.contact-form button[type='submit']:hover {
  background: #00ccd7; /* Verde um pouco mais escuro para o hover (atual) */
  

}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-bold);
}

.map-iframe {
  display: block;
  filter: grayscale(100);
}


















/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
    background: var(--dark-color);
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
    position: relative; /* ESSENCIAL: Garante que elementos absolutos dentro se posicionem corretamente */
}

.site-footer .custom-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--p-font-size);
}

.site-footer .custom-link:hover,
.site-footer .social-icon-link:hover {
    color: var(--white-color);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--copyright-text-font-size);
}






/* Spike Flutuante java */
.spike-flutuante {
  position: fixed;
  right: 20px;        /* distância da lateral direita */
  bottom: 100px;      /* altura em relação ao rodapé */
  width: 540px;
  z-index: 9999;
  animation: floatSpike 5s ease-in-out infinite;
}

/* Animação básica de flutuar */
@keyframes floatSpike {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-15px) rotate(2deg); }
  50%  { transform: translateY(0) rotate(0deg); }
  75%  { transform: translateY(15px) rotate(-2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Responsivo - menor no celular */
@media (max-width: 767px) {
  .spike-flutuante {
    width: 220px;
    right: 0px;
    bottom: 180px;
  }
}




















/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;  
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 2rem;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .news-two-column {
    min-height: 232.5px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 18px;
  }
  
  h7 {
    font-size: 8px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
	}
	
.navbar-brand {
	font-size: 20px;
  }

  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .team-thumb {
    left: 0;
    width: auto;
  }

  .news-two-column {
    height: auto !important;
    min-height: inherit;
  }

  .news .col-12 .news-two-column:first-child {
    margin-bottom: 38px;
  }
}

@media screen and (max-width: 767px) {
  .news-detail-title {
    font-size: 36px;
  }
  .text-secondary-white-color {
    font-size: 15px; /* texto prof; este é o tamanho para smartphones */
  }
}













@media screen and (max-width: 360px) {
  h1 {
    font-size: 32px;
  }

  .heroText p {
    font-size: 14px;
  }
}

@media screen and (max-width: 359px) {
  .news-detail-title {
    font-size: 22px;
  }
}














/* -----------------------------------------------------

Estilos para o Personagem 2 (o que você quer reduzir) 
Lápis 

-------------------------------------------------------*/


.personagem-2-rotacao {
    width: 250px; /* Seu tamanho reduzido, ajuste conforme necessário */
    height: auto;
    position: absolute; /* ISSO É O MAIS IMPORTANTE! */
	
	
	
    /* As próximas propriedades (top, left, z-index) são para posicionamento */
    top: 850px;   /* Ajuste para mover mais para cima ou para baixo */
    left: 00%;   /* Centraliza horizontalmente */
    transform: translateX(-50%); /* Complementa o 'left: 50%' para centralizar de verdade */
    z-index: 100; /* Garante que ele fique acima de outros elementos. Use um valor alto. */
}



/* Se você precisar de tamanhos diferentes em telas menores, adicione media queries para ele também */
@media (max-width: 767px) {
    .personagem-2-rotacao {
        width: 180px; /* Tamanho menor para celulares */
    }
}




/* ---------------------------------------
---- Estilos para a animação da Julia ---
--------------------------------------- */





.julia-animated {
  position: fixed; /* Ou 'absolute' se quiser que ela role com o conteúdo */
  left: -10%; /* Começa 20% fora da tela à esquerda */
  opacity: 0; /* Começa invisível */
  top: 30%; /* Centraliza verticalmente na tela (ajuste conforme necessário) */
  transform: translateY(-30%); /* Ajuste para centralizar perfeitamente */
  width: 300px; /* Largura da imagem, ajuste conforme sua necessidade */
  height: auto;
  z-index: 1000; /* Garante que ela fique acima de outros elementos */
  transition: left 0.8s ease-out, opacity 0.8s ease-out; /* Transição suave */
  pointer-events: none; /* Impede que a imagem interfira com cliques em elementos abaixo */
}

/* Você pode adicionar uma classe para o estado final, mas vamos controlar com JS */
/* .julia-animated.julia-visible {
    left: 5%;
    opacity: 1;
} */

/* Media Queries para a Julia (opcional, mas recomendado para responsividade) */
@media (max-width: 991px) {
  .julia-animated {
    width: 300px; /* Tamanho menor para tablets */
    top: 60%; /* Ajuste a posição vertical para tablets */
  }
}

@media (max-width: 867px) {
  .julia-animated {
    width: 180px; /* Tamanho menor para celulares */
    top: 70%; /* Ajuste a posição vertical para celulares */
	right: 20% !important; /* traz mais para dentro no celular */
  }
}



/* -------------------------------------------------------
---- Estilos para a animação anime flutuante a direita ---
------------------------------------------------------- */

.anime-flutuante {
  position: fixed; /* fixo na tela */
  width: 140px;    /* tamanho padrão, ajuste se precisar */
  animation: floatAnime 4s ease-in-out infinite;
  z-index: 9999;   /* garante que fique por cima */
  /* Removidas as propriedades 'bottom' e 'right' diretas aqui.
     O JavaScript vai definir esses valores dinamicamente. */
  /* Mantenha as media queries se elas definem apenas o 'width' */
}

@keyframes floatAnime {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Mantenha esta media query apenas para o tamanho, não para a posição top/bottom */
@media (max-width: 867px) {
  .anime-flutuante {
    width: 100px; /* Tamanho menor para celulares */
	
    /* Remova a linha 'top: 70%;' daqui, o JS controla o 'bottom' */
  }
}



/* -------------------------------------------------------
---- para as imagens ficarem responsivas
-------------------------------------------------------- */
 
.img-responsiva {
    max-width: 100%;
    height: auto;
}



