:root {
    --cores-tlp-laranja: rgb(243, 101, 37);
    --cores-tlp-amarelo: rgb(253, 184, 21);
    --cores-tlp-vinho: rgb(191, 34, 45);
    --bs-nav-link-font-size: 0.9rem;
    --bs-nav-link-color: rgb(90, 90, 95);
}


.urbanist-100-normal {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100; 
  font-style: normal;
}

.urbanist-900-bold {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style:normal;
}

* {
    font-size: 16px;
    font-family:  "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
}

/* Reset box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Ensure body takes full width */
body {
  width: 99%;
  padding: 0;
  overflow-x: hidden;
  margin: 0 auto;
}

/* Make nav element responsive */
nav {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}

#root {
  @media (min-width: 800px) {
    min-height: 100vh;  
  }
  
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow: visible;
}

#header {
  width: 100%;
  position: absolute;
  top: 0;
}

#oval-1 {
  position: fixed;
  top: -20vh;
  left: 0;
  width: 100%;
  height: 10vh;  
  filter: blur(12px);
  z-index: -2;
}


#home-top {
  min-height: 10vh;
  image-rendering: pixelated;
  flex-shrink: 0;
  background-size: 100% 100%;
  margin: 0;

  height: 10vh;
  background: 
    linear-gradient(115deg, rgba(255,140,0,0.8) 0%, rgba(255,215,0,0.6) 30%, rgba(255,255,255,0.9) 100%),
    linear-gradient(115deg, rgba(255,165,0,0.4) 10%, rgba(255,255,255,0) 40%),
    linear-gradient(115deg, rgba(255,69,0,0.3) 20%, rgba(255,255,255,0) 50%);
  background-blend-mode: screen;
  filter: blur(8px);

}


.rotate-45 {
  transform: rotate(45deg);
  display: inline-block; /* importante para rotação funcionar corretamente */
}

.botao-primario {
  display: inline-flex;
  align-items: center;
  background-color: var(--cores-tlp-laranja);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  /*font-size: 0.9rem; */
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
}

.botao-primario:visited, .botao-primario:hover {
  text-decoration: none;
}

  .botao-primario .icone {
    margin-left: 0.5rem;
    display: inline-block;
    transform: rotate(45deg);
    position: relative;
  }

  /* Animação só no hover */
  .botao-primario:hover .icone {
    animation: seta-move 1.5s forwards;
  }

  @keyframes seta-move {
    0% {
      transform: translate(0, 0) rotate(45deg);
      opacity: 1;
    }
    50% {
      transform: translate(10px, -10px) rotate(45deg);
      opacity: 0;
    }
    51% {
      transform: translate(-10px, 10px) rotate(45deg);
      opacity: 0;
    }
    100% {
      transform: translate(0, 0) rotate(45deg);
      opacity: 1;
    }
  }

/* para o menu */
/*
nav.navbar {
  position: fixed;
  top: 2vh;
  left: 0;
  z-index: 1030;
}
*/
.navbar {
  position: sticky;
  top: 0px;
  z-index: 1030;
  font-size: 2rem;
  max-width: 90%;
}

.navbar-nav {
  flex-wrap: nowrap; /* nunca quebra em múltiplas linhas */    
}
.nav-link {
  white-space: nowrap; /* evita quebra de palavra */
}

.container-fluid {
  margin: 1em 5%;
  border-radius: 50px;
  padding: 0.8rem;
  background-image: linear-gradient(to bottom, rgb(250, 250, 250, 0.9), rgb(250, 250, 250, 0.5));
  box-shadow: -2px -2px 20px 5px rgb(200, 200, 200, 0.4), 2px 2px 20px 5px rgb(200, 200, 200, 0.4);
  backdrop-filter: blur(5px);
  overflow-x: hidden;
}
/* fim da seção do menu */

.secao {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease-out;
  margin-bottom: 3rem;
}
.fade-in {
  opacity: 1 !important;
}
.slide-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.slide-right {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.from-left {
  transform: translateX(-50px);
}
.from-right {
  transform: translateX(50px);
}

.checkmark {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64"><circle cx="32" cy="42" r="16" stroke="currentColor" stroke-width="4" fill="none"/><path d="M24 44 L32 52 Q44 32 64 28" stroke="currentColor" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
}

.texto-tlp-laranja {
  color: rgb(243, 101, 37);
}


#corner-left {
  position: relative;
  float: left;
  background-image: radial-gradient(ellipse at 0 0, #F26522,  white, transparent);
  width: 50%;
  height: 10em;
}

#corner-right {
  position: relative;
  float: right;
  background-image: radial-gradient(ellipse at 100% 0, #F26522,  white, transparent);
  width: 50%;
  height: 10em;
}
  
/* HOME */

.line-container {
  display: flex;
  justify-content: space-between; /* Espaço igual entre os itens */
  gap: 16px;                      /* Espaço consistente (opcional e mais controlado) */
  flex-wrap: wrap;               /* Permite quebrar linha se faltar espaço */
  padding: 16px;
}

/* dropdown do menu */
#more-dropdown {
  white-space: nowrap;
}

#more-dropdown .navbar-link {
  cursor: pointer;
}

/* No mobile, mostrar dropdown no clique */
@media (max-width: 1023px) {
  #more-dropdown .navbar-dropdown {
    display: none;
  }

  #more-dropdown.is-active .navbar-dropdown {
    display: block;
  }
}

.home-container > div {
  flex: 1 1 100px;  /* Cresce, encolhe, tamanho mínimo */
  min-width: 100px; /* Garante que não fiquem muito pequenos */  
  height: 1.5em;
}

#home-01 {
  position: relative;  
  width: fit-content; 
  margin: 1em auto 3em auto;
}

.line-container div {
  background: linear-gradient(180deg,  rgb(243, 243, 241) 55%, rgb(250, 250, 247) 100%);
  border-radius: 10px;
  padding-right: 1em;
}

#home-proposito{  
  text-align: center;
  margin: 1em auto 10rem auto;

  h3 {    
    font-weight: 600;
    width: 100%;
    font-size: 3em;
  }
  div {
    font-weight: 500;
    padding: 0.2em 1em;
    font-size: 2rem;
    width: 70%;
    margin: 0 auto;

    @media (max-width: 400px) {
      font-size: 1.3rem;
      width: 100%;
    } 
  }
}

#home-02{
  text-align: left;
  margin: 1em auto 10rem auto;
  padding: 1em;
  div {
    background: linear-gradient(180deg,  rgb(243, 243, 241) 55%, rgb(250, 250, 247) 100%);
    height: 100%;     
    border-radius: 30px; 
    opacity: 1;
    width: 80%;
    margin: 1em auto;
    font-size: 1.2rem;
    padding: 1em;
    color: rgb(90, 90, 85);
    
    h3 {
      color: rgb(243, 101, 37);
      font-weight: 500;
      font-size: 1.4rem;
      padding: 0;
      margin: 0;
    }

    @media (max-width: 400px) {
      width: 100%;
    }
  }

    @media (max-width: 400px) {
      margin: 1rem;
    }
}

checkmark-icon {
  margin-right: 1em;
}

#home-areas{
  display:flex;
  width: 80%;
  margin: 1em auto 10rem auto;

  .left {
    
    width: 50%;
    position: sticky;
    top: 10em;                    /* gruda no topo da viewport */
    height: fit-content; 
    margin-bottom: 10em;

    h3 {
      font-size: 2rem;
      font-weight: 600;
    }

    .tag {
      background: linear-gradient(180deg,  rgb(240, 240, 240) 55%, rgb(250, 250, 250) 100%);
      color: rgb(90, 90, 85);
      text-align: center;
      display: inline-block;
      padding: 0.5em 1em;
      margin: 0.2em;
      border-radius: 20px;
    }
  }
  .right {
    
    width: 50%;

    .vertical-card {
      position: relative;      
      padding: 1em 0 2em 1em;      
      /*
      border-left: 2px solid;
      border-image: linear-gradient(to bottom, rgba(243, 101, 37, 0.8) 20px,  rgba(143, 143, 143, 0.5), rgba(143, 143, 143, 0.2) ) ;*/
      background: linear-gradient(to bottom, rgba(243, 101, 37, 0.8) 0 20px,  rgba(143, 143, 143, 0.5) 20px 40px, transparent 50% 100%) left/2px 100% no-repeat;
      color: rgb(90, 90, 85);

      .img {
        color: rgb(243, 101, 37);
        height: 32px;
        width: 32px;
        display: inline-block;
        clear: none;
      }

      h3 {
        margin-left: 1em;
        font-size: 1.5rem;
        color: black;
        display: inline-block;
        clear: none;
      }
    }

    .vertical-card::before {
      content: "";
      position: absolute;
      left: 0;             
      top: 0;            
      height: 50%;         
      border-left: 2px solid; /* borda simulada */
      border-image:linear-gradient(to bottom, rgba(243, 101, 37, 0.8) ,  rgba(143, 143, 143, 0.5) ); /* borda simulada */
       
    }
  }

  /* Mobile: empilha, ocupa largura total */
  @media (max-width: 400px) {
    flex-direction: column;
    width: 100%;

    .left,
    .right {
      width: 100%;
      position: relative;
    }
  }
}


#home-beneficios{
  color: darkslategray;
  width: 80%;
  margin: 1em auto 10rem auto;
  text-align: center;
  
  h3 {
    margin-left: auto;
    font-size: 4em;
    color: black;
    font-weight: 800;
    width: 100%;
    text-align: center;
  }
  .beneficios-deck {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
      
    h3 {
    font-size: 1.5rem;
    color: black;
    font-weight: 600;
    }
  }

  @media (max-width: 600px) {
    width: 100%;
    .beneficios-deck {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Em telas muito pequenas, quebra para 1 coluna */
  @media (max-width: 400px) {
    width: 100%;
    .beneficios-deck {
      grid-template-columns: 1fr;
    }
  }
  .beneficios-card {
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 20px;
    border: rgb(240, 240, 240) 1px solid;
    margin: 1em;
    box-shadow: 1px 1px 10px 5px #eee, -1px -1px 10px 5px #eee;

    .inner-card {
      border-radius: 20px;
      border: rgb(240, 240, 240) 1px none;
      height: 100%;
      width: 100%;
      margin: 5px;
      padding: 1em;
      text-align: center;
    }

  }

    .img {
      color: rgb(243, 101, 37);
      height: 64px;
      width: 64px;   
      margin: 1rem auto;   
    }
}
#home-diversidade{
    margin: 2rem auto 10rem auto;
    h3 {
    margin-left: 1em;
    font-size: 3rem;
    text-align: center;
    color: black;
    margin:auto;
    width: 100%;
  }
  div {
    text-align: center;
    font-size: 1.5rem;
    width: 80%;
    margin:auto;
    color: darkslategray;
    @media (max-width: 400px) {
      width: 100%;
    }
  }

  strong {
    margin-left: 1em;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: black;
    margin:auto;
    width: 100%;
    display: block;
  }
}
#home-jovens{
    margin: 2rem auto 10rem auto;
    h3 {
    margin-left: 1em;
    font-size: 3rem;
    text-align: center;
    color: black;
    margin:auto;
    width: 100%;
  }
  div {
    text-align: center;
    font-size: 1.5rem;
    width: 80%;
    margin:auto;
    color: darkslategray;
    @media (max-width: 400px) {
      width: 100%;
    }
  }

  strong {
    margin-left: 1em;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: black;
    margin:auto;
    width: 100%;
    display: block;
  }}
#home-depoimentos{
  width: 80%;
  margin: 0 auto;

  h3 {
    margin-left: 1em;
    font-size: 3rem;
    text-align: center;
    color: black;
    margin:auto;
    width: 100%;
  }
  
  .texto-depoimento {
    margin: 1em auto 2em auto;
    width: 70%;
    text-align: center;
  }

  video {
    cursor:auto;
    width:100%;
    height:100%;
    border-radius: 30px;
    display:block;
    object-fit:cover;
    background-color:rgba(0, 0, 0, 0);
    object-position:50% 50%;
  }

  .estrelas {
    text-align: center;
    margin: 1em;
    color: var(--cores-tlp-amarelo);
  }

  .card {
    text-align: center;
    margin: 0.5em auto;    
    color: darkslategray;
    border: none;

    img {
      width: 64px;
      height: auto;
      margin: 0.2em auto;
    }

    h3 {
      margin-left: 1em;
      font-size: 1.5rem;
      color: black;
      margin:auto;
      width: 50%;
    }
  }
  
}
#home-premios{
  margin: 1em auto 10rem auto;
  width: 80%;
  
  h3 {
    margin-left: 1em;
    font-size: 3rem;
    text-align: center;
    color: black;
    margin:auto;
    width: 100%;
  }

    div {
      text-align: center;
      margin: 0.5em auto;    
      color: darkslategray;
    }
}

#home-dicas{
  margin: 1em auto 10rem auto;
  color: darkslategray;
  width: 80%;
  padding: 1rem;
  text-align: center;
  
  h2 {
    font-size: 2rem;
    color: black;
    
  }
  h3{
    font-size: 1.5rem;    
  }
  
  @media (max-width: 400px) {
    width: 100%;
  }

}

.pergunta {
  border-radius: 20px;
  padding: 1rem;
  cursor: pointer;
  padding: 1rem 3rem 1rem 3rem;
  
  h3 {
    text-align: center;
    width: 80%;    
    clear: none;
    
    @media (max-width: 400px) {
      width: 100%;
    }
  }  

  .head {
    display: flex;
    justify-content: space-between;
  }
}
.pergunta[data-ativo="true"] {  
  background-image: linear-gradient(180deg,  rgb(240, 240, 240) 55%, rgb(250, 250, 250) 100%);  
  
  .resposta {
    display: block;
    text-align: center;
    padding-bottom: 3rem;
  }
}

.pergunta[data-ativo="false"] {
  background-image: none;
  .resposta {
    display: none;
  }
}

.carousel {
  width: 100%; /* ou 100% se quiser responsivo com ajustes */
  overflow: hidden;
  position: relative;
}


.carousel-track {
  display: flex;
  width: max-content;
}

.slide-set {
  display: flex;
}

.carousel-track img {
  width: 300px;
  height: auto;
  flex-shrink: 0;
  margin: 0 50px;
}

#palavras {
  color: black;
  mask-image: linear-gradient(to top, transparent 0%, transparent 75%, black 100%);
  mask-size: 100% 700%;
  mask-position: top;
  mask-repeat: no-repeat;

  animation: mask-reveal 5s ease-in forwards;  

  font-size: 4rem;
  font-weight: 600;
  text-align: center;  

  @media (max-width: 400px) {
    font-size: 2rem;
  }
}


.oculto {
  opacity: 0;
  transform: translateY(50px);
  pointer-events: none;
}

.alvo {
  will-change: opacity, transform;
  transition: opacity 2s ease, transform 2s ease;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


@keyframes revealText {
  0% {
    background-position: top;
  }
  100% {
    background-position: bottom;
  }
}

@keyframes mask-reveal {
  from {
    
            mask-position: bottom;
            
  }
  to {
    
            mask-position: top;
            mask-image: linear-gradient(to top, transparent 0%, transparent 55%, black 100%);
            
  }
}

footer {
  background-color: rgb(250, 250, 247);
  width: 99%; 
  opacity: 1;  
  margin: 0 !important;
  padding: 0;
}

#upper-footer {
  height: 8em;
}

.footer-navbar-nav {
  columns: 2;         
  column-gap: 1rem;   
  height: 100%;
  list-style: none;   
  padding: 0;
  margin: 0;

  a, a:visited {
    text-decoration: none;
    color: var(--bs-nav-link-color);
  }
}

.social-navbar-nav {
  list-style: none;
  padding: 0;
  margin: 0;

  a, a:visited {
    text-decoration: none;
    color: var(--bs-nav-link-color);
  }

  a:hover, a:focus {
    color: var(--bs-nav-link-hover-color);
  }
}

#bottom-footer {
  margin-top: 4em;

  a, a:visited {
    text-decoration: none;
    color: var(--bs-nav-link-color);
  }

  a:hover, a:focus {
    color: var(--bs-nav-link-hover-color);
  }
}

.container {
  max-width: 100% !important;
}

#contato-principal {
  width: 80%;
  margin: auto;
  @media (max-width: 400px) {
    width: 100%;
  }
}

#contato-titulo {
  width: 80%;
  margin: 1em auto 2rem auto;

  h1, div {
    width: 100%;
    text-align: center; 
  }
}


.form-informacoes {
  color: var(--bs-nav-link-color);

  h3 {
    color: black;
  }
}

.form-externo {
    border-radius: 10px;
    border: #ccc 1px none;
    padding: 2px 0;
    box-shadow: -1px -1px 5px 3px #ddd5, 1px 1px 5px 3px #ddd5;
    margin-bottom: 2em;
}

.form-interno {
    border-radius: 10px;
    border: rgb(243, 101, 37, 0.2) 1px solid;
    margin: 5px 5px;
    padding: 0.5em;
}

.form-interno input, .form-interno textarea {
  background-color: rgb(243, 243, 241);
  border-radius: 10px;
  border: none;
  padding: 0.3em 1em;  
}

.label-input {
   display: block; 
}
.label-input label{
  color: var(--bs-nav-link-color);
}

.form-contato {

  gap: 0.5em;
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-grid div {
  display: flex;
  flex-direction: column; /* label em cima do input */
}

.form-grid .full {
  grid-column: 1 / -1; /* textarea sempre ocupa toda largura */
}
