:root {
  --primary-color: #cc7248;
  --golden-poppy: #f47443;
  --coral-gold: #d98b67;
  --text-light: #666666;
  --background-light: #f9f9f9;
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font: "BROmegaBlack";
}

@font-face {
  font-family: "BROmegaBlack";
  src: url("../font/BR_Omega/BROmegaBlack.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  line-height: 1.7;
  overflow-x: hidden;
  /* Prevenir scroll horizontal em dispositivos móveis */
}

p {
  font-family: Arial, Helvetica, sans-serif;
}

h1,
h3,
h4,
h5 {
  font-family: var(--font);
}

/* Links */
a {
  color: var(--primary-color);
}

.divisor {
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-info {
  color: #b0b0b0;
}

.contact-info p i {
  color: var(--primary-color);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  /* Impedir que o ícone encolha */
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
  width: fit-content;
  /* Ajustar ao conteúdo */
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(244, 116, 67, 0.3);
  color: white;
}

.btn-contact i {
  margin-right: 0.5rem;
}

/* Estilos de seção comuns */
.secao-fale-conosco,
.secao-trabalhe-conosco,
.secao-historia,
.secao-certificacoes,
.secao-documentos,
.secao-videon,
.secao-premios {
  padding: 5rem 0;
  position: relative;
}

.secao-fale-conosco,
.secao-trabalhe-conosco,
.secao-video,
.secao-premios,
.secao-documentos {
  background-color: white;
}

.secao-certificacoes {
  background-color: var(--background-light);
}

.cabecalho-secao {
  margin-bottom: 3rem;
}

.titulo {
  font-family: var(--font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.descricao {
  font-size: 1.5rem;
  color: black;
  max-width: 800px;
  margin: 1.5rem auto 0;
}

.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

/* Imagem de representantes */
.representantes-image-container {
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.imagem-principal-representantes {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Imagem wolfstorefront */
.imagem-wolfstorefront {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* CTA de contato */
.container-contato {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0 15px;
  /* Adicionar padding lateral para dispositivos móveis */
}

.card-contato {
  background: linear-gradient(135deg, rgba(244, 116, 67, 0.1), rgba(217, 139, 103, 0.1));
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(244, 116, 67, 0.2);
  transition: var(--transition);
  max-width: 600px;
  width: 100%;
  /* Garantir que ocupe toda a largura disponível */
}

.card-contato:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-contato h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: black;
  margin-bottom: 1.5rem;
}

.btn-contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-contact-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
  color: white;
}

.btn-contact-whatsapp i {
  font-size: 1.5rem;
  margin-right: 0.8rem;
}

/* Formulário de contato */
.container-formulario-contato {
  background-color: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.container-formulario-contato::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.form-floating>.form-control {
  padding: 1.5rem 1rem;
  height: calc(3.5rem + 2px);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.form-floating>.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(244, 116, 67, 0.25);
}

.form-floating>label {
  padding: 1rem;
}

.container-arquivo {
  position: relative;
  margin-bottom: 1rem;
}

.rotulo-arquivo {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #f5f5f5;
  border: 1px dashed #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.rotulo-arquivo:hover {
  background-color: #eeeeee;
}

.rotulo-arquivo i {
  font-size: 1.2rem;
  margin-right: 0.8rem;
  color: var(--primary-color);
}

input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.btn-enviar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 10px 20px rgba(244, 116, 67, 0.3);
  transition: var(--transition);
  width: 100%;
  cursor: pointer;
}

.btn-enviar:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(244, 116, 67, 0.4);
}

.btn-enviar i {
  font-size: 1.2rem;
  margin-right: 0.8rem;
}

/* Informações de contato */
.container-informacoes-contato {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.card-localizacao {
  background-color: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card-localizacao::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
}

.card-localizacao:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.cabecalho-localizacao {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.icone-localizacao {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.icone-localizacao i {
  font-size: 1.5rem;
  color: white;
}

.titulo-localizacao h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: black;
}

.titulo-localizacao p {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin: 0;
}

.detalhes-localizacao {
  padding-left: 1rem;
  border-left: 2px solid rgba(244, 116, 67, 0.2);
}

.item-localizacao {
  display: flex;
  align-items: flex-start;
  /* Alinhamento no topo para textos longos */
  margin-bottom: 0.8rem;
}

.item-localizacao:last-child {
  margin-bottom: 0;
}

.item-localizacao i {
  font-size: 1rem;
  color: var(--primary-color);
  margin-right: 1rem;
  flex-shrink: 0;
}

.item-localizacao span {
  font-size: 0.95rem;
  color: var(--text-light);
  word-break: break-word;
  /* Quebrar palavras longas */
}

.texto {
  font-size: 1.1rem;
}

.texto p {
  text-align: left;
  /* Permite quebra automática de palavras */
  word-spacing: normal;
  /* Remove espaçamento forçado */
  line-height: 1.6;
  /* Melhora legibilidade */
  font-size: 1rem;
  /* Tamanho confortável para leitura */
}

/* Video Section */
.video-card {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2.5rem;
  /* Garantir espaço entre os cards em dispositivos móveis */
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Seção Sobre Nós */
#sobrenos {
  background-color: #fafafa;
}

#sobrenos .row {
  align-items: center;
  min-height: 500px;
}

#sobrenos .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#sobrenos img {
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#sobrenos .texto {
  padding: 2rem 1rem;
}

#sobrenos .texto p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 991px) {
  #sobrenos .col-lg-6 {
    margin-bottom: 2rem;
  }
  
  #sobrenos img {
    max-height: 300px;
    margin-bottom: 2rem;
  }
  
  #sobrenos .texto {
    padding: 1rem 0;
  }
}

.info-video {
  padding: 1.5rem;
  background-color: white;
}

.info-video h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: black;
}

/* Features e Pilares Cards */
.card {
  border: none;
  background-color: white;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 2rem;
  /* Garantir espaço entre os cards em dispositivos móveis */
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 10px 10px 0 0;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icone {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 116, 67, 0.1), rgba(217, 139, 103, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.card:hover .card-icone {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(244, 116, 67, 0.2), rgba(217, 139, 103, 0.2));
}

.card-img {
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.card:hover .card-img {
  transform: scale(1.1);
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: black;
  position: relative;
  display: inline-block;
}

.card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--golden-poppy), var(--coral-gold));
  transition: width 0.3s ease;
}

.card:hover h3::after {
  width: 50px;
}

.card-premio,
.card-produto {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  height: 100%;
  /* Garantir que todos os cards tenham a mesma altura */

  flex-direction: column;
}


.card-produto {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  height: 100%;
  /* Garantir que todos os cards tenham a mesma altura */

  flex-direction: column;
}

.card-premio:hover,
.card-premio:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


/* Estilos para as imagens com Fancybox */
.img-premio {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  height: 65%;
  /* Altura fixa para todas as imagens */
  width: 100%;
}

.img-premio a {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.img-premio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Manter proporção e preencher o espaço */
  transition: all 0.5s ease;
}

.img-premio a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.img-premio a::before {
  content: "\F33D";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.img-premio:hover img {
  transform: scale(1.05);
}

.img-premio:hover a::after,
.img-premio:hover a::before {
  opacity: 1;
}

.info-premio {
  padding: 1.5rem;
  background-color: white;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-premio h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: black;
}

.info-premio p {
  color: var(--text-light);
  margin-bottom: 0;
}

.info-produto {
  padding: 1.5rem;
  background-color: white;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  /* Changed to row for horizontal alignment */
  justify-content: center;
  align-items: center;
}

.info-produto h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: black;
}

/* Certificações */
.card-certificacao {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.card-certificacao:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.certificacao-img {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  height: 200px;
}

.certificacao-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.card-certificacao:hover .certificacao-img img {
  transform: scale(1.05);
}

.conteudo-certificacao {
  padding: 2rem;
  flex-grow: 1;
}

.conteudo-certificacao h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: black;
  position: relative;
  display: inline-block;
}

.conteudo-certificacao h4::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--golden-poppy), var(--coral-gold));
}

.conteudo-certificacao p {
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Documentos */
.card-documento {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.card-documento:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.cabecalho-documento {
  background: var(--primary-color);
  padding: 1.5rem;
  text-align: center;
}

.cabecalho-documento h3 {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.conteudo-documento {
  padding: 1.5rem;
}

.link-documento {
  display: block;
  color: black;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.link-documento::after {
  content: "\2192";
  position: absolute;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.link-documento:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.link-documento:hover::after {
  opacity: 1;
}

.link-documento:last-child {
  border-bottom: none;
}

/* Linha do tempo */
.linhaTempo-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}



/* Estilos para a linha do tempo */
.linha-tempo {
  position: relative;
  padding: 20px 0;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-start;
}

.linha-tempo-traco {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #cc7248, #f47443, #d98b67);
  z-index: 1;
  box-shadow: 0 4px 15px rgba(204, 114, 72, 0.25);
  pointer-events: none;
}

.col-lg-1-5 {
  width: 11.111%;
  position: relative;
}

.linha-tempo > .row {
  width: 100%;
  display: flex;
  align-items: flex-start;
}

.item-linha-tempo {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.marcador-linha-tempo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #cc7248 0%, #f47443 50%, #d98b67 100%);
  border-radius: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  box-shadow: 0 8px 20px rgba(204, 114, 72, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 3px solid white;
}

.marcador-linha-tempo:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 15px 35px rgba(244, 116, 67, 0.5);
  filter: brightness(1.1);
}

.marcador-linha-tempo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 15px;
  background: linear-gradient(to bottom, #cc7248, #f47443);
  transition: all 0.3s ease;
}

.marcador-linha-tempo:hover::after {
  height: 20px;
  background: linear-gradient(to bottom, #f47443, #d98b67);
}

.conteudo-linha-tempo {
  text-align: center;
  padding-top: 15px;
  max-width: 150px;
  transition: all 0.3s ease;
  min-height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.conteudo-linha-tempo p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #666666;
  font-weight: 500;
  transition: all 0.3s ease;
}

.item-linha-tempo:hover .conteudo-linha-tempo p {
  color: #cc7248;
  font-weight: 600;
}

/* Estilos para a linha do tempo mobile */
.linha-tempo-mobile {
  position: relative;
  padding: 20px 0;
}

.item-linha-tempo-mobile {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.item-linha-tempo-mobile::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  width: 4px;
  height: calc(100% + 30px);
  background-color: var(--primary-color);
  z-index: 1;
}

.item-linha-tempo-mobile:last-child::before {
  display: none;
}

.marcador-linha-tempo-mobile {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #cc7248 0%, #f47443 50%, #d98b67 100%);
  border-radius: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 20px;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(204, 114, 72, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 3px solid white;
}

.marcador-linha-tempo-mobile:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(244, 116, 67, 0.5);
  filter: brightness(1.1);
}

.conteudo-linha-tempo-mobile {
  padding-top: 10px;
}

.conteudo-linha-tempo-mobile p {
  margin: 0;
  font-size: 0.95rem;
}


/* Animações */
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 50px var(--primary-color);
  }
}

@keyframes fill-error {
  100% {
    box-shadow: inset 0px 0px 0px 50px #ff5252;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 8px 20px rgba(204, 114, 72, 0.3);
  }
  50% {
    box-shadow: 0 12px 30px rgba(244, 116, 67, 0.5);
  }
  100% {
    box-shadow: 0 8px 20px rgba(204, 114, 72, 0.3);
  }
}

/* Aplicar animação aos marcadores da timeline */
.marcador-linha-tempo {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.marcador-linha-tempo:nth-child(1) { animation-delay: 0.1s; }
.marcador-linha-tempo:nth-child(2) { animation-delay: 0.2s; }
.marcador-linha-tempo:nth-child(3) { animation-delay: 0.3s; }
.marcador-linha-tempo:nth-child(4) { animation-delay: 0.4s; }
.marcador-linha-tempo:nth-child(5) { animation-delay: 0.5s; }
.marcador-linha-tempo:nth-child(6) { animation-delay: 0.6s; }
.marcador-linha-tempo:nth-child(7) { animation-delay: 0.7s; }
.marcador-linha-tempo:nth-child(8) { animation-delay: 0.8s; }

/* Aplicando animação aos elementos */
.cabecalho-secao,
.card-certificacao,
.card-documento,
.card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}


/* Responsividade */
@media (max-width: 767px) {

  .secao-fale-conosco,
  .secao-trabalhe-conosco,
  .secao-historia,
  .secao-certificacoes,
  .secao-documentos,
  .secao-video,
  .secao-premios {
    padding: 3rem 0;
    /* Reduzir padding em dispositivos móveis */
  }
}

@media (max-width: 767px) {
  .titulo {
    font-size: 1.8rem;
  }

  .descricao {
    font-size: 1rem;
  }

  .card-contato {
    padding: 1.5rem;
  }

  .btn-contact-whatsapp {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    width: 100%;
  }

  .container-formulario-contato,
  .card-localizacao {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .icone-localizacao {
    width: 40px;
    height: 40px;
  }

  .icone-localizacao i {
    font-size: 1.2rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }

  .card-icone,
  .pilar-icon {
    width: 80px;
    height: 80px;
  }

  .card h3,
  .pilar-card h3 {
    font-size: 1.3rem;
  }

  .info-premio h4 {
    font-size: 1.1rem;
  }

  .conteudo-certificacao {
    padding: 1.5rem;
  }

  .conteudo-certificacao h4 {
    font-size: 1.1rem;
  }

  .cabecalho-documento h3 {
    font-size: 1.1rem;
  }

  .secao-video,
  .secao-premios,
  .secao-historia,
  .pilares-section,
  .secao-certificacoes,
  .secao-documentos {
    padding: 3rem 0;
  }

  .about-text {
    font-size: 1rem;
  }

  .pilar-card,
  .card-certificacao,
  .card-documento,
  .card {
    margin-bottom: 2rem;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .marcador-linha-tempo-mobile {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .item-linha-tempo-mobile::before {
    left: 28px;
    top: 28px;
  }

  .conteudo-linha-tempo-mobile p {
    font-size: 0.9rem;
  }
}


@media (max-width: 576px) {
  .titulo {
    font-size: 1.5rem;
    /* Ainda menor para telas muito pequenas */
  }

  .descricao {
    font-size: 1rem;
  }

  .img-premio {
    height: 70%;
  }

  .cabecalho-documento h3,
  .info-premio h4,
  .conteudo-certificacao h4 {
    font-size: .9rem;
  }
}

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

  .card-contato {
    padding: 2rem;
  }

  .card-contato h3 {
    font-size: 1.3rem;
  }

  .secao-video,
  .secao-premios {
    padding: 4rem 0;
  }

  .card-icone {
    width: 90px;
    height: 90px;
  }

  .marcador-linha-tempo-mobile {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .item-linha-tempo-mobile::before {
    left: 28px;
    top: 28px;
  }

  .conteudo-linha-tempo-mobile p {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  
  .linha-tempo-traco {
  position: absolute;
  top: 33%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  z-index: 1;
}

  .marcador-linha-tempo {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }

  .marcador-linha-tempo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 15px;
  background-color: var(--primary-color);
}
  

  .conteudo-linha-tempo p {
    font-size: 0.6rem;
  }
}


@media (min-width: 1200px) and (max-width: 1300px) {
  
  .linha-tempo-traco {
  position: absolute;
  top: 27%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  z-index: 1;
}

  .marcador-linha-tempo {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }

  .marcador-linha-tempo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 15px;
  background-color: var(--primary-color);
}
  

  .conteudo-linha-tempo p {
    font-size: 0.8rem;
  }
}