:root {
  --cor-principal: #d96e30;
  --cinza-claro: #f9f9f9;
  --texto-escuro: #1a1a1a;
  --texto-suave: #444;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--texto-escuro);
  background-color: #ffffff;
}

.cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  /* background-color: var(--cinza-claro);*/
  background-color: #000; 
}
 


.cabecalho .logo img {
  height: 40px;
}

.cabecalho ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.cabecalho a {
  text-decoration: none;
  color: var(--texto-escuro);
  font-weight: 500;
}

.hero {
  background-color: var(--cor-principal);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
.bloco-sobre {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.bloco-sobre h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.bloco-sobre .intro {
  text-align: center;
  font-size: 1rem;
  color: #444;
  margin-bottom: 3rem;
}

.colunas-sobre {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.item-sobre h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.item-sobre p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}
.carrossel-capa h2,
.carrossel-capa .intro,
.conteudo-servicos h2,
.conteudo-servicos .intro,
.card-servico h3,
.card-servico p {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.bloco-servicos::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

.bloco-servicos {
  position: relative;
  padding: 6rem 2rem;
  color: #fff;
  overflow: hidden;
}

.video-fundo {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.conteudo-servicos {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.conteudo-servicos h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
}

.conteudo-servicos .intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin-inline: auto;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 3rem;
}
 

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
 

.card-servico {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(10px);
}

.card-servico:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.card-servico h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.card-servico p {
  font-size: 0.95rem;
  color: #e0e0e0;
}

.bloco-impacto {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.bloco-impacto h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.bloco-impacto .intro {
  text-align: center;
  font-size: 1rem;
  color: #444;
  margin-bottom: 3rem;
}

.grid-indicadores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.card-indicador {
  background-color: var(--cinza-claro);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card-indicador:hover {
  transform: translateY(-5px);
}

.card-indicador h3 {
  font-size: 2rem;
  color: var(--cor-principal);
  margin-bottom: 0.5rem;
}

.card-indicador p {
  font-size: 0.95rem;
  color: #333;
}
.bloco-depoimentos {
  padding: 4rem 2rem;
  background-color: var(--cinza-claro);
}

.bloco-depoimentos h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--texto-escuro);
}

.bloco-depoimentos .intro {
  text-align: center;
  font-size: 1rem;
  color: var(--texto-suave);
  margin-bottom: 3rem;
}

.grid-depoimentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card-depoimento {
  background-color: #ffffff;
  padding: 2rem;
  border-left: 5px solid var(--cor-principal);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card-depoimento .texto {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  margin-bottom: 1rem;
}

.card-depoimento .autor {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}
.grid-depoimentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card-depoimento {
  background-color: #ffffff;
  padding: 2rem;
  border-left: 5px solid var(--cor-principal);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.card-depoimento img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.card-depoimento .texto {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  margin-bottom: 1rem;
}

.card-depoimento .autor {
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 600;
}

.card-depoimento .autor span {
  display: block;
  font-size: 0.85rem;
  color: #666;
  font-weight: normal;
}
/* Carrossel + Cards */
.carrossel-capa {
  padding: 4rem 2rem;
  background-color: #f4f4f4;
  text-align: center;
}
.carrossel-container {
  position: relative;
  overflow: hidden;
}
.carrossel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}
.capa-card {
  min-width: calc(100% / 3 - 2rem);
  height: 360px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}
.capa-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.capa-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}
.btn-capa {
  background-color: var(--cor-principal);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-capa:hover {
  background-color: #c25f28;
}
/* Setas */
.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}
.seta.prev { left: 10px; }
.seta.next { right: 10px; }
/* Modal */
.modal-equipe {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}
.modal-conteudo {
  background-color: #fff;
  max-width: 500px;
  margin: 10% auto;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.4s ease;
}
.modal-conteudo h3 {
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}
.modal-conteudo p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #333;
}
.modal-conteudo a {
  text-decoration: none;
  font-weight: bold;
  color: var(--cor-principal);
}
.fechar {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 1.4rem;
  cursor: pointer;
  color: #888;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
/* Responsivo */
@media (max-width: 1024px) {
  .capa-card {
    min-width: calc(100% / 2 - 2rem);
  }
}
@media (max-width: 640px) {
  .capa-card {
    min-width: 100%;
  }
}


.bloco-cursos {
  padding: 4rem 2rem;
  background-color: var(--cinza-claro);
}

.bloco-cursos h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--texto-escuro);
}

.bloco-cursos .intro {
  text-align: center;
  font-size: 1rem;
  color: var(--texto-suave);
  margin-bottom: 3rem;
}

.grid-cursos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card-curso {
  background-color: #ffffff;
  padding: 2rem;
  border-left: 5px solid var(--cor-principal);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card-curso:hover {
  transform: translateY(-5px);
}

.card-curso h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--texto-escuro);
}

.card-curso p {
  font-size: 0.95rem;
  color: var(--texto-suave);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-curso a {
  font-weight: bold;
  color: var(--cor-principal);
  text-decoration: none;
}
.bloco-contato {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.bloco-contato h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.bloco-contato .intro {
  text-align: center;
  font-size: 1rem;
  color: #444;
  margin-bottom: 3rem;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: start;
}

.contato-imagem img {
  width: 70%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.formulario-contato {
  display: flex;
  flex-direction: column;
}

.formulario-contato label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #1a1a1a;
}

.formulario-contato input,
.formulario-contato textarea {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95rem;
}

.formulario-contato button {
  background-color: var(--cor-principal);
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.formulario-contato button:hover {
  background-color: #c25f28;
}
.rodape {
  background-color: #1a1a1a;
  color: #f4f4f4;
  padding: 3rem 2rem 2rem;
  font-size: 0.95rem;
}

.rodape-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.rodape-item img {
  height: 100px;
  margin-bottom: 1rem;
}

.rodape-item h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.rodape-item p,
.rodape-item li {
  margin-bottom: 0.5rem;
  color: #ccc;
}

.rodape-item ul {
  list-style: none;
  padding: 0;
}

.rodape-item a {
  color: #ccc;
  text-decoration: none;
}

.rodape-item a:hover {
  color: var(--cor-principal);
}

.rodape-final {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}
 
.hero-carousel {
  position: relative;
  height: clamp(480px, 60vh, 720px);
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-slide.ativo {
  opacity: 1;
  z-index: 1;
}

.parallax-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s ease;
  filter: brightness(60%);
} 
.carousel-texto {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  color: #fff;
  text-align: center;
  max-height: calc(100% - 80px); /* garante que caiba dentro do banner */
  overflow: hidden;
  padding: 1rem;
  animation: fadeInUp 1s ease forwards;
}

.carousel-texto h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.carousel-texto p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-cta {
  background-color: var(--cor-principal);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background-color: #c25f28;
}

/* Setas de navegação */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
}

.nav-arrow.prev { left: 20px; }
.nav-arrow.next { right: 20px; }

/* Indicadores */
.carousel-indicadores {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.ativo {
  background: var(--cor-principal);
}

/* Animação de entrada */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 2rem;
  background-color: rgba(0, 0, 0, 0.6); /* fundo preto com transparência */
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.4s ease, height 0.4s ease;
}

.sticky-header.scrolled {
  background-color: rgba(0, 0, 0, 0.9); /* mais opaco ao rolar */
  height: 60px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.sticky-header .logo img {
  height: 32px;
  transition: height 0.4s ease;
}

.sticky-header.scrolled .logo img {
  height: 28px;
}

.sticky-header nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticky-header nav a {
  text-decoration: none;
  color: #f4f4f4; /* letras claras no fundo escuro */
  font-weight: 500;
  transition: color 0.3s ease;
}

.sticky-header nav a:hover {
  color: var(--cor-principal); /* terracota ou cor de destaque */
}


.carrossel-formacoes {
  padding: 6rem 2rem;
  background-color: #111;
  color: #fff;
  text-align: center;
  overflow-x: hidden;
}

.carrossel-formacoes h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.carrossel-formacoes .intro {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-inline: auto;
}

.tabs-formacoes {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background-color: #222;
  color: #ccc;
  border: none;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 5px;
  cursor: pointer;
}

.tab-btn.active {
  background-color: var(--cor-principal);
  color: #fff;
}

.carrossel-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carrossel-track {
  display: flex;
  gap: 2rem;
  scroll-snap-align: start;
  padding-bottom: 1rem;
}

.card-formacao {
  min-width: 280px;
  max-width: 320px;
  height: 360px;
  background-color: #222;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.card-formacao:hover {
  transform: scale(1.03);
}

.card-formacao img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-formacao {
  position: absolute;
  bottom: 0;
  width: 90%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

.overlay-formacao .tag {
  background-color: rgba(255,255,255,0.1);
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.overlay-formacao h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.overlay-formacao p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.btn-formacao {
  background-color: var(--cor-principal);
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
}

.ocultar {
  display: none;
}

/* Animação de entrada */
.animar {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: all 0.8s ease-out;
}

.animar.ativo {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}




/* Estrutura geral */
.meto-diferenciais {
  padding: 6rem 2rem;
  background-color: #5a2102;
  color: #fff;
  text-align: center;
}

.meto-diferenciais h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.meto-diferenciais .meto-intro {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-inline: auto;
}

/* Grade de cards */
.meto-grid-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Card visual */
.meto-card {
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.meto-card:hover {
  transform: scale(1.02);
}

/* Overlay escura com conteúdo */
.meto-overlay {
  position: absolute;
  bottom: 0;
  width: 90%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}

.meto-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.meto-overlay p {
  font-size: 0.95rem;
  color: #ddd;
}

/* Animação de entrada */
.meto-animar {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: all 0.8s ease-out;
}

.meto-animar.meto-ativo {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.meto-img-ia {
  background-image: url('./imagens/diferencial1.jpg');
}

.meto-img-estrategia {
  background-image: url('./imagens/11.jpg');
}

.meto-img-jornada {
  background-image: url('./imagens/autonomia.jpg');
}

.meto-img-design {
  background-image: url('./imagens/13.jpg');
}

.meto-img-loop {
  background-image: url('./imagens/15.jpg');
}



.meto-modal-destaque {
  display: none;
  position: fixed;
  z-index: 4000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  animation: fadeIn 0.4s ease;
}

.meto-modal-content {
  background-color: #fff;
  max-width: 650px;
  margin: 5% auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  position: relative;
  animation: slideUp 0.6s ease-out;
}

.meto-modal-imagem {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.meto-modal-texto {
  padding: 2rem;
  text-align: center;
}

.meto-modal-texto h3 {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.meto-modal-texto p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.meto-btn-destaque {
  background-color: var(--cor-principal);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}

.meto-btn-destaque:hover {
  background-color: #c25f28;
}

.meto-fechar {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 1.6rem;
  color: #888;
  cursor: pointer;
}

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

@keyframes slideUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.grecaptcha-badge { 
    visibility: hidden !important;
    opacity: 0 !important;
}
