.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* --- 1. ESTILOS DO TÍTULO PRINCIPAL (HERO) --- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700;800;900&display=swap' );

.hero-text {
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.word-inteligencia,
.word-marketing {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: #2c2c2c;
  margin: 0;
  opacity: 0;
  transform: translateY(50px);
  animation: slideInFade 1s ease-out forwards;
}

.word-em {
  font-family: 'TAN GRANDEUR', serif;
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #ffffff;
  font-style: italic;
  margin: -10px 0;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInFade 1s ease-out 0.5s forwards;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.word-marketing {
  animation-delay: 1s;
  margin-top: -10px;
}

@keyframes slideInFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animação hover para interatividade */
.word-inteligencia:hover,
.word-marketing:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.word-em:hover {
  color: #f0f0f0;
  transition: color 0.3s ease;
}

/* Versão responsiva do Título */
@media (max-width: 768px) {
  .hero-text {
    padding: 40px 15px;
  }
  
  .word-inteligencia,
  .word-marketing {
    font-size: clamp(2.5rem, 12vw, 5rem);
    line-height: 0.9;
  }
  
  .word-em {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    margin: -5px 0;
  }
  
  .word-marketing {
    margin-top: -5px;
  }
}

/* --- 2. ANIMAÇÃO DA BARRA COLORIDA --- */

.color-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 15px;
  background: linear-gradient(90deg, 
    #FF4E4E 25%,
    #00BCD4 25% 50%,
    #CDDC39 50% 75%,
    #673AB7 75%);
  background-size: 400% 100%;
  animation: scroll-right 10s linear infinite;
}

@keyframes scroll-right {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


/* --- 3. ESTILOS DA SEÇÃO DE SERVIÇOS (ACCORDION ATUALIZADO) --- */

./* --- 3. ESTILOS DA SEÇÃO DE SERVIÇOS (ACCORDION ATUALIZADO) --- */

.services-accordion {
  width: 100%;
  max-width: 600px;
  /* MUDANÇA AQUI: Centraliza o elemento */
  margin: 0 auto; 
  font-family: 'Raleway', sans-serif;
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #888;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ANIMAÇÃO APLICADA AQUI */
.accordion-content {
  max-height: 0; /* Começa fechado */
  overflow: hidden;
  opacity: 0; /* Começa invisível */
  transform: translateY(-10px); /* Começa um pouco acima */
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s ease-in-out,
              transform 0.5s ease-in-out,
              padding 0.5s ease;
  padding: 0 15px;
}

.accordion-content p {
  margin: 0;
  padding-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* ESTADO ATIVO (ABERTO) */
.accordion-item.active .accordion-header {
  /* Pode adicionar um estilo para o header ativo, se quiser */
  /* color: #007BFF; */
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
  opacity: 1; /* Fica visível */
  transform: translateY(0); /* Volta à posição normal */
}

/* Estilos do botão "Explorar" */
.explore-button-container {
  text-align: center;
  margin-top: 40px;
}

.explore-button {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #ccc;
  border-radius: 30px;
  color: #555;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.explore-button:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

  /* A linha abaixo move a lista para a esquerda. Ajuste o valor se precisar. */
  margin-left: -50px; 
  font-family: 'Raleway', sans-serif;
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #888;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ANIMAÇÃO APLICADA AQUI */
.accordion-content {
  max-height: 0; /* Começa fechado */
  overflow: hidden;
  opacity: 0; /* Começa invisível */
  transform: translateY(-10px); /* Começa um pouco acima */
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.5s ease-in-out,
              transform 0.5s ease-in-out,
              padding 0.5s ease;
  padding: 0 15px;
}

.accordion-content p {
  margin: 0;
  padding-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* ESTADO ATIVO (ABERTO) */
.accordion-item.active .accordion-header {
  /* Pode adicionar um estilo para o header ativo, se quiser */
  /* color: #007BFF; */
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
  opacity: 1; /* Fica visível */
  transform: translateY(0); /* Volta à posição normal */
}

/* Estilos do botão "Explorar" */
.explore-button-container {
  text-align: center;
  margin-top: 40px;
}

.explore-button {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #ccc;
  border-radius: 30px;
  color: #555;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.explore-button:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}
/* --- 4. ESTILOS DA SEÇÃO "SOBRE NÓS" --- */

/* Importa a fonte Poppins para a descrição */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap' );

/* Título animado "SOBRE NÓS" */
.animated-gradient-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 900; /* Bem forte, como na imagem */
  font-size: clamp(3.5rem, 10vw, 6rem); /* Tamanho responsivo */
  text-transform: uppercase;
  
  /* O truque da animação: o texto é transparente e o fundo é um gradiente */
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text; /* Compatibilidade com mais navegadores */
  
  /* Gradiente com as 4 cores da sua marca */
  background-image: linear-gradient(90deg, 
    #FF4E4E,  /* Vermelho/Laranja */
    #00BCD4,  /* Ciano */
    #CDDC39,  /* Verde-Limão */
    #673AB7,  /* Roxo */
    #FF4E4E   /* Repete a primeira cor para um loop suave */
  );
  
  background-size: 300% 100%; /* Tamanho do gradiente */
  
  /* Animação de revelação e movimento do gradiente */
  animation: reveal-text 1s ease-out forwards, 
             scroll-gradient 5s linear infinite 1s; /* A animação do gradiente começa 1s depois */
}

/* Descrição da seção "Sobre Nós" */
.elementor-widget-text-editor {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #4A4A4A; /* Um cinza escuro, bom para leitura */
}

.elementor-widget-text-editor strong {
  font-weight: 500; /* Deixa o negrito um pouco mais forte */
  color: #2c2c2c;
}


/* Animação para o texto aparecer */
@keyframes reveal-text {
  from {
    clip-path: inset(0 100% 0 0); /* Começa "escondido" da direita para a esquerda */
  }
  to {
    clip-path: inset(0 0 0 0); /* Revela o texto por completo */
  }
}

/* Animação para o gradiente se mover */
@keyframes scroll-gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* --- 5. ESTILOS DO RODAPÉ --- */

/* Importa a fonte para os textos do rodapé */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap' );

.site-footer {
  background-color: #2c2c2c; /* Cor de fundo escura para contraste */
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
  padding-top: 60px;
  position: relative;
  overflow: hidden; /* Garante que a barra de cor não vaze */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo-area,
.footer-links-area,
.footer-social-area {
  flex: 1;
  min-width: 250px; /* Garante que não fiquem muito espremidos */
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ccc;
  max-width: 350px;
}

.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px; /* Efeito sutil no hover */
}

.footer-social-icons a {
  color: #f0f0f0;
  font-size: 1.5rem;
  margin-right: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover {
  color: #00BCD4; /* Cor ciano da sua paleta */
  transform: scale(1.1);
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.color-bar-footer {
  width: 100vw;
  height: 10px; /* Mais fina para o rodapé */
  background: linear-gradient(90deg, #FF4E4E 25%, #00BCD4 25% 50%, #CDDC39 50% 75%, #673AB7 75%);
  background-size: 400% 100%;
  animation: scroll-right 10s linear infinite;
  position: absolute;
  left: 0;
  bottom: 60px; /* Posição ajustada para ficar acima do texto de copyright */
}

.footer-copyright {
  font-size: 0.85rem;
  color: #aaa;
  padding: 20px 0;
  border-top: 1px solid #444;
  margin-top: 40px; /* Espaço acima da linha */
}

/* Responsividade do Rodapé */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo-area,
  .footer-links-area,
  .footer-social-area {
    align-items: center;
  }
  
  .footer-about {
      margin: 0 auto; /* Centraliza o texto */
  }

  .footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-right: -20px; /* Ajuste para centralizar */
  }
  
  .color-bar-footer {
      bottom: 80px; /* Ajuste para mobile */
  }
}
/* --- 6. ESTILOS DO RODAPÉ (VERSÃO MELHORADA) --- */

.site-footer-v2 {
  background-color: #1a1a1a; /* Um preto um pouco mais suave */
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 80px 20px 20px 20px; /* Mais espaço no topo */
  position: relative;
  overflow: hidden;
}

.footer-v2-color-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px; /* Barra mais sutil */
  background: linear-gradient(90deg, #FF4E4E, #00BCD4, #CDDC39, #673AB7, #FF4E4E);
  background-size: 300% 100%;
  animation: scroll-gradient 8s linear infinite; /* Animação do CSS anterior */
}

.footer-v2-container {
  max-width: 800px;
  margin: 0 auto;
}

.footer-v2-logo {
  margin-bottom: 40px;
}

.footer-v2-logo img {
  max-width: 180px; /* Logo com bom destaque */
  transition: transform 0.4s ease;
}

.footer-v2-logo img:hover {
  transform: scale(1.05);
}

.footer-v2-cta {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.5rem); /* Responsivo */
  line-height: 1.3;
  color: #ffffff;
  margin: 0 auto 20px auto;
  max-width: 500px;
}

.footer-v2-cta .highlight {
  /* Usando o gradiente da sua marca para destacar a palavra */
  background: linear-gradient(90deg, #00BCD4, #CDDC39);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-v2-email {
  margin-bottom: 40px;
}

.footer-v2-email a {
  color: #00BCD4; /* Ciano da sua paleta */
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-v2-email a:hover {
  color: #ffffff;
}

.footer-v2-social {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 60px;
}

.footer-v2-social a {
  color: #a0a0a0;
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-v2-social a:hover {
  transform: translateY(-5px);
  /* Muda para a cor correspondente da sua paleta no hover */
}
.footer-v2-social a:nth-child(1):hover { color: #FF4E4E; } /* Instagram -> Vermelho */
.footer-v2-social a:nth-child(2):hover { color: #00BCD4; } /* LinkedIn -> Ciano */
.footer-v2-social a:nth-child(3):hover { color: #673AB7; } /* Facebook -> Roxo */
.footer-v2-social a:nth-child(4):hover { color: #CDDC39; } /* WhatsApp -> Verde */


.footer-v2-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-v2-bottom p {
  color: #777;
  font-size: 0.8rem;
  font-weight: 400;
  margin: 0;
}
.hero-text {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

/* INTELIGÊNCIA e MARKETING bem grandes */
.word-inteligencia,
.word-marketing {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 14vw, 10rem); /* aumentado */
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #2c2c2c;
  margin: 0;
}

/* EM centralizado, branco e destacado */
.word-wan {
  font-family: 'TAN GRANDEUR', 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.5rem, 8vw, 4rem); /* maior */
  color: #ffffff; /* branco */
  margin: -10px 0; /* cola nos títulos */
  line-height: 0.9;
}

/* Responsivo */
@media (max-width: 768px) {
  .word-inteligencia,
  .word-marketing {
    font-size: clamp(3rem, 12vw, 6rem);
  }
  .word-wan {
    font-size: clamp(1.8rem, 8vw, 3rem);
    margin: -6px 0;
  }
}/* End custom CSS */