/* 
 * Arquivo CSS customizado do tema Agencia Ili
 * 
 * Este arquivo pode ser usado para adicionar estilos personalizados
 * que não estão no arquivo style.css principal.
 */

/* ===== CLASSES DE TÍTULOS REUTILIZÁVEIS ===== */

/* Variações de peso para H1 */
main#primary {
  overflow: hidden;
}
html {
  scroll-behavior: smooth; /* animação suave */
}

:target {
  scroll-margin-top: 100px; /* ajusta para não ficar escondido pelo header fixo */
}
.h1-light {
  font-weight: 300;
}

.h1-regular {
  font-weight: 400;
}

.h1-medium {
  font-weight: 500;
}

.h1-semibold {
  font-weight: 600;
}

.h1-bold {
  font-weight: 700;
}

.h1-extrabold {
  font-weight: 800;
}

.h1-black {
  font-weight: 900;
}

/* Variações de peso para H2 */
.h2-light {
  font-weight: 300;
}

.h2-regular {
  font-weight: 400;
}

.h2-medium {
  font-weight: 500;
}

.h2-semibold {
  font-weight: 600;
}

.h2-bold {
  font-weight: 600;
}

.h2-extrabold {
  font-weight: 800;
}

.h2-black {
  font-weight: 900;
}

/* Variações de peso para H3 */
.h3-light {
  font-weight: 300;
}

.h3-regular {
  font-weight: 400;
}

.h3-medium {
  font-weight: 500;
}

.h3-semibold {
  font-weight: 600;
}

.h3-bold {
  font-weight: 700;
}

.h3-extrabold {
  font-weight: 800;
}

.h3-black {
  font-weight: 900;
}
img {
  max-width: 100%;
  height: auto;
}
/* ===== CLASSES UTILITÁRIAS ===== */

/* Cores de texto */
.text-primary {
  color: #007bff !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #28a745 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #343a40 !important;
}

/* Classe para texto laranja */
.text-orange {
  color: #f96f35 !important;
}
.text-orange-italic {
  color: #f96f35 !important;
  font-style: italic;
  font-weight: 500;
}
.black-italic-span {
  color: #121212;
  font-style: italic;
  font-weight: 500;
}
/* Alinhamento de texto */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

/* Espaçamentos */
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}

/* ===== COMPONENTES CUSTOMIZADOS ===== */
a {
  text-decoration: none;
}
/* Botões customizados */
.custom-button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-family: var(--font-primary);
  font-weight: 500;
}

.custom-button:hover {
  background-color: #0056b3;
  color: white;
  text-decoration: none;
}

/* Posts em destaque */
.featured-post {
  border-left: 4px solid #007bff;
  padding-left: 15px;
  margin-bottom: 20px;
}

.featured-post .h2 {
  color: #007bff;
}
.hero-content-servico h2 {
  max-width: 394px;
}
/* Links sociais */
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  display: inline-block;
  margin-right: 10px;
}

.social-links a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #007bff;
}

/* ===== EXEMPLOS DE USO ===== */

/* Exemplo: Título principal da página */
.page-title {
  composes: h1 h1-bold text-center mb-4;
}

/* Exemplo: Subtítulo */
.section-title {
  composes: h2 h2-semibold text-primary mb-3;
}

/* Exemplo: Título de card */
.card-title {
  composes: h3 h3-medium mb-2;
}

/* Exemplo: Texto de destaque */
.lead-text {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  line-height: 1.7;
  color: #484847;
}
.diferenciais-section p {
  font-weight: 400;
}
.about-text p {
  font-weight: 600;
  color: #666;
  font-size: 15px;
}
/* ===== ESTILOS PARA TEMPLATE DE SERVIÇO EMPRESARIAL ===== */

/* Variáveis de cores do tema */
:root {
  --bg-primary: #ffffff; /* Fundo principal branco */
  --bg-secondary: #f8f9fa; /* Fundo secundário cinza claro */
  --bg-light: #f8f9fa; /* Fundo light para seções */
  --bg-dark: #343a40; /* Fundo escuro para footer */
}

/* Fundo geral do site */
body {
  background-color: var(--bg-primary);
}

/* Hero Section */
.hero-section {
  background: var(--bg-primary);
}

/* Segunda Seção - Posicionamento Estratégico */
.strategy-section {
  background: var(--bg-primary);
}
.strategy-section-pra-voce .row {
  background-color: #f96f35;
  padding: 72px;
}
.img-content-laranja {
  position: relative;
}

.img-content-laranja::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -34px;
  width: 82px;
  height: 82px;
  background-color: #fff;
  z-index: 2;
}
.strategy-section-pra-voce p {
  font-size: 18px;
  color: #121212;
  font-weight: 400;
  margin-bottom: 30px;
}
.strategy-row {
  background-color: #e5e5e5;
  padding: 3rem;
  margin: 0;
}
.strategy-section-pra-voce .strategy-cta {
  padding-top: 10px;
}
/* Imagem dos bullets */
.bullets-image {
  max-width: 200px;
}
.strategy-content h3 {
  margin-bottom: 60px;
}
.bullets-image img {
  height: auto;
}

/* Botão estratégia */
.btn-strategy {
  background-color: #f96f35;
  border-color: #f96f35;
  color: #121212;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.btn-strategy::after {
  content: "";
  width: 18px;
  height: 19px;
  background-image: url("../img/icone-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}

.btn-strategy:hover {
  background-color: #121212;
  color: #f96f35;
  text-decoration: none;
}

.btn-strategy:hover::after {
  transform: translateX(4px);
  filter: sepia(9) saturate(501%) hue-rotate(-10deg) brightness(5);
}
.nosso-time-section {
  padding-top: 80px;
  padding-bottom: 120px;
}
.linkedin-icon {
  margin-top: 40px;
}
/* Botão com background cinza azulado */
.btn-strategy-gray {
  background-color: #ebf1f5;
  border-color: #ebf1f5;
  color: #121212;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.btn-strategy-gray::after {
  content: "";
  width: 18px;
  height: 19px;
  background-image: url("../img/icone-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}

.btn-strategy-gray:hover {
  background-color: #d1dde6;
  color: #121212;
  text-decoration: none;
}

.btn-strategy-gray:hover::after {
  transform: translateX(4px);
}

/* Usando containers padrão do Bootstrap 5:
   - .container: max-width responsivo
   - .container-fluid: 100% width
   - .container-{breakpoint}: max-width específico
*/

/* Imagem dos max-width: 200px;
}

.dots-image img {
  width: 100%;
  height: auto;
}

/* Espaçamento para textos do hero */
.hero-text .lead-text {
  margin-bottom: 1.5rem;
}

.hero-text .lead-text:last-child {
  margin-bottom: 0;
}

/* Approach Blocks */
.approach-block {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 12px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.approach-block p {
  font-size: 15px;
}
.content-time p {
  font-size: 15px;
}
.approach-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.5px;
  background-color: #484847;
  height: 87%;
  opacity: 0.3;
}
.hero-content span {
  color: #121212;
}
.col-lg-6.text-content-home {
  max-width: 500px;
  margin-left: 50px;
}

.hero-section-sobre .col-lg-6 {
  padding-right: 0;
}
.hero-image-servico {
  position: relative;
}
.hero-image-servico::before {
  content: "";
  position: absolute;
  left: -40px;
  top: -40px;
  width: 40px;
  height: 40px;
  background-color: #e55a2b;
}
.hero-section img {
  width: 100%;
}
.hero-section .col-lg-6 {
  padding-left: 0;
}
.dots-image {
  margin-top: 160px;
}
.text-sobre-content {
  max-width: 570px;
  margin-left: auto;
  padding-right: 90px !important;
}
/* Approach Cards (mantido para compatibilidade) */
.approach-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.approach-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.approach-icon i {
  font-size: 24px;
  color: white;
}
.hero-section-sobre .hero-image-servico::before {
}
/* CTA Section */
.cta-section {
  background: var(--bg-primary);
}

.cta-list {
  margin: 0;
  padding: 0;
}

.cta-item {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.cta-item:last-child {
  border-bottom: none;
}

.cta-item span {
  font-weight: 500;
  color: #333;
}

/* Article Cards */
.article-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.article-tag .badge {
  background-color: #ff6b35 !important;
  font-size: 0.75rem;
  padding: 6px 12px;
}

.article-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.article-meta {
  font-size: 0.875rem;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid #e9ecef;
}

.newsletter-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color 0.3s ease;
}

.newsletter-form .form-control:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.newsletter-form .btn {
  background-color: #ff6b35;
  border-color: #ff6b35;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
  background-color: #e55a2b;
  border-color: #e55a2b;
  transform: translateY(-2px);
}

/* Botões primários customizados */
.btn-primary {
  background-color: #ff6b35;
  border-color: #ff6b35;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

/* Apenas botões que não são de formulário devem ter o ícone */
.btn-primary:not([type="submit"]):not([type="button"])::after {
  content: "";
  width: 18px;
  height: 19px;
  background-image: url("../img/icone-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}

.btn-primary:hover {
  background-color: #e55a2b;
  border-color: #e55a2b;
  transform: translateY(-2px);
}

.btn-primary:not([type="submit"]):not([type="button"]):hover::after {
  transform: translateX(4px);
}

/* Botão CTA principal */
.btn-cta {
  background-color: #f96f35;
  border-color: #f96f35;
  color: #121212;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-size: 1.1rem;
}

.btn-cta::after {
  content: "";
  width: 18px;
  height: 19px;
  background-image: url("../img/icone-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}

.btn-cta:hover {
  background-color: #e55a2b;

  color: white;

  text-decoration: none;
}

.btn-cta:hover::after {
  transform: translateX(4px);
}

/* Acordeão Customizado */
.accordion-section {
  background: var(--bg-primary);
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  box-shadow: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}
.linha-abordagem {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  color: #333;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button:hover {
  background: transparent;
  color: #f96f35;
}

.accordion-text {
  font-size: 22px;
  font-weight: 500;
  color: #121212;
}

.accordion-icon {
  width: 50px;
  height: 50px;
  background-color: #f96f35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Cria o + usando ::before e ::after */
.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background-color: white;
  transition: all 0.3s ease;
}

/* Linha horizontal (base do +) */
.accordion-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Linha vertical (que vai girar para formar o -) */
.accordion-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Estado fechado (collapsed) - mostra + */
.accordion-button.collapsed .accordion-icon {
  background-color: #f96f35;
}

.accordion-button.collapsed .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Estado aberto (não collapsed) - mostra - */
.accordion-button:not(.collapsed) .accordion-icon {
  background-color: #6c757d;
}

.accordion-button:not(.collapsed) .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-body {
  padding: 0 0 1.5rem 0;
  color: #6c757d;
  line-height: 1.6;
}

.accordion-body p {
  margin-bottom: 0;
  font-size: 1rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* ===== ESTILOS DO HEADER ===== */

/* Header Principal */
.site-header {
  background-color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 99999;
}
.header-espaco {
  padding-top: 85px;
}
.accordion-button::after {
  display: none;
}
/* Logo do Header */
.header-logo {
  display: flex;
  flex-direction: column;
}

.logo-title {
  margin: 0;
  line-height: 1;
}

.logo-title a {
  text-decoration: none;
  color: #333;
}

.logo-line-1 {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-line-2 {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-subtitle {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Menu de Navegação */
.main-navigation {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 40px;
}

/* Estilização principal do menu */
.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
  flex-direction: row;
}

.menu-item {
  position: relative;
}

.menu-item a {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: #484847;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0;
}

.menu-item a:hover {
  color: #f96f35;
}

/* Dropdown */
.menu-item-has-children > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  min-width: 280px;
}

.menu-item-has-children:hover > .sub-menu {
  display: block;
}

.sub-menu .menu-item a {
  padding: 10px 20px;
  display: block;
  font-size: 14 px;
  font-weight: 400;
  color: #484847;
  background-color: #ebf1f5;
  border-radius: 2px;
}
.sub-menu li {
  padding: 0px 5px;
  margin-bottom: 5px;
}
.sub-menu .menu-item a:hover {
  background-color: #f96f35;

  color: #212121;
}

/* Botão CTA do Header */
.header-cta {
  display: flex;
  justify-content: flex-end;
}

.btn-header-cta {
  background-color: #f96f35;
  border: none;
  color: #121212;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.btn-header-cta::after {
  content: "";
  width: 18px;
  height: 19px;
  background-image: url("../img/icone-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}

.btn-header-cta:hover {
  background-color: #e55a2b;
  color: #121212;
  text-decoration: none;
}

.btn-header-cta:hover::after {
  transform: translateX(4px);
}
img.logo-header-img {
  width: 70%;
}

/* ===== ESTILOS DO FOOTER ===== */

/* Footer Principal */
.site-footer {
  background-color: #efefef;
  color: #333;
  padding: 3rem 0 1rem 0;
  position: relative;
}
.btn-wpp {
  position: fixed;
  bottom: 10%;
  right: 4%;
  z-index: 9999999;
}
/* Logo do Footer */
.footer-logo h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: #333;
}

.footer-logo p {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #666;
}

/* Tagline */
.footer-tagline {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.6;
  color: #121212;
}

/* Títulos das Colunas */
.footer-title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 35px;
}

/* Links do Footer */
.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  font-family: var(--font-primary);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  color: #121212;
  font-weight: 500;
}

.footer-links a:hover {
  color: #f96f35 !important;
}

/* Contato */
.footer-contact p {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  color: #121212;
}

/* Redes Sociais */
.social-media {
  margin-top: 1rem;
}

.social-icon {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 0.8;
}

.social-icon img {
  border-radius: 4px;
}
.socios-content p {
  color: #121212;
  font-size: 18px;

  font-weight: 400;
}
/* Linha Separadora */
.footer-divider {
  border-color: rgba(0, 0, 0, 0.1);
  margin: 2rem 0 1rem 0;
}

/* Rodapé Inferior */
.footer-bottom {
  padding-top: 1rem;
}

.footer-copyright {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: #121212;
}

.footer-policies a {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
  color: #121212;
}

.footer-policies a:hover {
  color: #f96f35 !important;
}

/* Links com ícone */
.link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #121212;
  font-weight: 600;
  font-size: 16px;
}
.content-time {
  padding-top: 30px;
}
.content-time h3 {
  color: #f96f35;
  font-size: 28px;
  font-weight: 600;
}
.link-with-icon::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("../img/icon-btn-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}
.bg-orange {
  background-color: #f96f35;
}
.bg-orange h2 {
  color: #121212;
}
.cta-sobre .row {
  padding: 72px;
}
.link-with-icon:hover::after {
  transform: translateX(4px);
}

.title-rapidinhas {
  position: sticky;
  top: 120px;
}

.socios-content {
  padding: 62px;
}
.socios-image img {
  width: 100%;
}
.coluna-imagem-socios {
  padding-right: 0;
}
/* Cards de serviço */
.service-card {
  background: white;
  border-radius: 12px;
  height: 100%;
}
.orange-carousel-section p {
  color: #121212;
}
/* Imagem do serviço */
.service-image {
  height: 280px;
  overflow: hidden;
}

/* Link que envolve o card */
.owl-carousel .item a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.owl-carousel .item a:hover {
  text-decoration: none;
  color: inherit;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Conteúdo do serviço */
.service-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #efefef;
}
.service-card:hover .service-content {
  background: #ddd;
}
/* Botão de "+" nos cards de serviço */
.service-plus-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e5e5e5;
  border: none;
  color: #f96f35;
  font-size: 45px;
  font-weight: 100;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 16px;
}

.service-card:hover .service-plus-btn {
  background-color: #f96f35;
  color: #121212;
  transform: scale(1.05);
}

.service-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #121212;
  transition: all 0.3s ease;
}
.service-card:hover .service-title {
  color: #f96f35;
}
.service-description {
  font-size: 18px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 30px;
}
.service-card:hover {
  background: #ddd;
}
/* Controles do carrossel */

.carousel-nav {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Botões de navegação */
.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #121212;
  background: white;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: #f96f35;
  border-color: #f96f35;
  color: white;
  transform: translateY(-2px);
}

.carousel-btn:active {
  transform: translateY(0);
}

/* Owl Carousel Customização */
.owl-carousel {
  position: relative;
}

.owl-carousel .owl-stage {
  display: flex;
}

.owl-carousel .owl-item {
  display: flex;
  height: 100%;
}

.owl-carousel .item {
  height: 100%;
}

/* Esconder navegação padrão do Owl */
.owl-nav {
  display: none !important;
}

.owl-dots {
  display: none !important;
}

/* Garantir que os itens tenham altura igual */
.owl-carousel .owl-item .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.owl-carousel .owl-item .service-card .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
}
.dots-carrossel {
  margin-bottom: 180px;
}
.pra-voce-content h2 {
  color: #f96f35;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contato-section h1 {
  font-size: 56px;
  color: #f96f35;
  font-weight: 700;
}
.contato-content p {
  font-size: 20px;
  font-weight: 400;
  color: #484847;
  margin-bottom: 0;
}
.subtitle-contato {
  font-size: 16px;
  color: #121212;

}

.form-contato {
  padding: 40px;
  border-radius: 30px 0px 0px 30px;
  background-color: #fff;
  position: relative;
  z-index: 9;
}
.form-contact_row {
  position: relative;
}
.form-contact_row {
  background-size: contain;
  background-position-x: right;
  background-repeat: no-repeat;
}
.form-contact_row {
  background-color: #fff;
  position: relative;
  z-index: 9;
}
.form-content-style {
  padding-top: 30px;
}
.form-contact_row:after {
  content: "";
  position: absolute;
  width: 49%;
  height: 100%;
  background: #fff;
  background: linear-gradient(
    90deg,
    rgb(255 255 255) 12%,
    rgb(255 255 255 / 98%) 18%,
    rgba(235, 241, 245, 0) 66%
  );
  right: 30px;
}
.menu-item.current-menu-item > a,
.menu-item.current-menu-ancestor > a {
  color: #f96f35;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 25px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: absolute;
  right: 10%;
  top: 37%;
}

.menu-toggle .bar {
  width: 32px !important;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
  transition: 0.3s;
}

/* X animation */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
.orange-carousel-section {
  margin-top: 80px;
}
.footer-main {
  padding-bottom: 80px;
}
.footer-logo {
  margin-bottom: 32px;
}
.blog-mobile {
  display: none;
}

.wpcf7-form label {
  display: none !important;
}

/* Deixa o fundo do form mais claro e sem borda */
.form-contato .wpcf7-form .form-control,
.form-contato .wpcf7-form select.form-control,
.form-contato .wpcf7-form textarea.form-control {
  background: transparent;
  border: none;
  color: #484847;
  padding-left: 10px;
  font-size: 16px;
  min-height: 60px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.2);
  border-radius: 0px;
  margin-bottom: 30px;
  font-weight: 600;
}

.form-content-style {
  padding-top: 30px;
}

.form-contato input::placeholder {
  color: #000;
  opacity: 1;
}

.form-contato .wpcf7-form .mb-3 {
  margin-bottom: 22px !important;
}

/* Ícones dentro dos campos usando ::before */
.form-contato .wpcf7-form-control-wrap[data-name="your-name"]::before {
  content: url(../img/icon-nome.svg);
  position: absolute;
  margin-top: 12px;
  right: 20px;
}

.form-contato .wpcf7-form-control-wrap[data-name="your-email"]::before {
  content: url(../img/icon-email.svg);
  position: absolute;

  margin-top: 12px;
  right: 20px;
}

.form-contato .wpcf7-form-control-wrap[data-name="your-tel"]::before {
  content: url(../img/icon-phone.svg);
  position: absolute;

  margin-top: 12px;
  right: 20px;
}

.form-contato .wpcf7-form-control-wrap[data-name="your-message"]::before {
  content: url(../img/icon-mensage.svg);
  position: absolute;
  margin-top: 12px;
  right: 20px;
}
.btn-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.wpcf7-spinner {
  display: none;
}
.icon-enviar {
  position: absolute;
  right: 22px;
  top: 40%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/icone-btn.svg);
  transition: all 0.4s ease;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
  background-color: #f96f35;
  border-color: #f96f35;
  color: #121212;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  opacity: 1;
  cursor: pointer;
}
.btn-container:hover .icon-enviar {
  right: 14px;
  filter: sepia(9) saturate(501%) hue-rotate(-10deg) brightness(5);
}
.btn-container:hover input.wpcf7-form-control.wpcf7-submit.has-spinner {
  background-color: #121212;
  color: #f96f35;
  border-color: #121212;
}


.form-check p,
.form-check a {
  color: #484847;
  font-size: 14px;
  font-weight: 500;
}
.form-check a {
  text-decoration: underline;
}
.linha-lista-abordagem {
  padding-top: 40px;
}
.page-template-sobre .hero-image-servico::before {
  top: auto;
  bottom: -40px;
}
.page-template-sobre .hero-image-servico img {
  width: 100%;
}
.sobre-content p {
  font-size: 18px;
}
.comentario-content h2 {
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
}

/* Estilos para a seção de Diferenciais */
.diferenciais-section {
  background-color: #ffffff;
}

.diferencial-card {
  background-color: #efefef;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.diferencial-number {
  margin-bottom: 20px;
}

.diferencial-number .number {
  display: block;
  font-size: 64px;
  font-weight: 700;
  color: #f96f35;
  line-height: 1;
  margin-bottom: 5px;
}

.diferencial-number .label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f96f35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-style: italic;
}

.diferencial-image img {
  max-width: unset;
}

.diferencial-content {
  padding: 25px 50px;
}

.bullets-diferencial-3 {
  padding-top: 60px;
}

/* Estilos para a seção laranja */
.orange-carousel-section {
  background-color: #f96f35;
}

.orange-carousel-section .carousel-controls h2,
.orange-carousel-section .carousel-controls p {
  color: #121212;
}

.orange-carousel-section .carousel-btn {
  background-color: #f96f35;

  border: 1px solid #000;
}

.orange-carousel-section .carousel-btn:hover {
  background-color: #fff;
  color: #fff;
  border-color: #fff;
}

/* Estilos para a seção de Insights */
.form-news input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  border: none;
  height: 56px;
  border-radius: 8px;
  width: 98%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.04);
}
.insights-card__header {
  position: relative;
}
.cat-news {
  position: absolute;
  left: 16px;
  background-color: #f96f35;
  top: 16px;
  font-size: 14px;
  color: #212121;
  font-weight: 500;
  line-height: 20px;
  padding: 6px 12px;

  z-index: 99;
}

.leia-mais {
  color: #484847;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.leia-mais.link-with-icon::after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("../img/icon-artigo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}

.insights-card__image {
  overflow: hidden;
  display: block;
}
.insights-card__image img {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
}
.insights-card:hover .insights-card__image img,
.insights-card__hover .insights-card__image img {
  transform: scale(1.1);
}

.date-news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.date-news {
  opacity: 1;
  max-height: 40px;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease;
}
.insights-card__title {
  min-height: 90px;
  display: flex;
  align-items: center;
}
p.insights-card__description {
  color: #484847;
  opacity: 0.5;
}
.insights-card__title,
.insights-card__read-more {
  color: #121212;
  transition: color 0.4s ease;
}
.date-news span {
  font-size: 14px;
  font-weight: 500;
  color: #484847;
  line-height: 20px;
}
a:hover .leia-mais.link-with-icon::after {
  transform: translateX(4px);
}
.insights-card__header {
  position: relative;
}
a:hover .date-news {
  opacity: 0;
  max-height: 0;
  margin: 0;
  pointer-events: none;
}
.texto-bloco-cinza {
  padding-right: 40px;
}
.banner-blog {
  background-color: #f96f35;
}
.conteudo-title-disp h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
}
.banner-blog .carousel-btn {
  background-color: transparent;
}
.banner-blog .carousel-btn:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}
.banner-blog .owl-stage {
  align-items: center;
}
.conteudo-title-disp {
  position: relative;
}
.bullets-blog {
  position: absolute;
  top: -240px;
  left: 4px;
}
.conteudo-card-news {
  padding: 16px 8px;
}
.conteudo-card-blog {
  padding: 32px;
  background-color: #fff;
  min-height: 340px;
}
.conteudo-card-blog h3 {
  font-size: 18px;
  color: #121212;
  font-weight: 500;
}
.categorias-destaques {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.categorias-destaques li a {
  font-size: 16px;
  font-weight: 400;
  color: #484847;
}
.filtros-categorias {
  display: flex;
  align-items: center;
  gap: 32px;
}
.filtros-categorias .btn-strategy::after {
  transform: rotate(90deg);
}

.filtros-categorias .btn-strategy:hover::after {
  transform: rotate(90deg) translatex(5px);
}
ul#menu-categorias::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 218px;
  height: 35px;
  background: transparent;
}
#searchform {
  position: relative;
}
#searchform input#s {
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 30px;
  height: 60px;
  padding: 8px 24px;
  border: none;
}
button#searchsubmit {
  position: absolute;
  right: 12px;
  background: #f96f35;
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.categorias-carrossel {
  padding-top: 64px;
}
.content-categorias h3 {
  position: absolute;
  bottom: 35px;
  left: 20px;
  z-index: 2;
}
.categorias-carrossel.owl-carousel {
  display: flex !important;
  gap: 24px;
}
.content-categorias {
  position: relative;
}
.content-categorias::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(249, 111, 53, 0) 45.24%,
    rgba(249, 111, 53, 0.67) 77.21%,
    #f96f35 100%
  );
  z-index: 1;
  opacity: 0;
  transition: all 0.6s ease;
}
.zoom-img img {
  transition: all 0.6s ease;
}
.zoom-img {
  overflow: hidden;
  border-radius: 0px;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
a:hover .zoom-img img {
  transform: scale(1.2);
}
a:hover .content-categorias::before {
  opacity: 1;
}
.tile-cat h3 {
  color: #fff;
}
.card-news {
  position: relative;
  margin-bottom: 60px;
}
.conteudo-card-news h3 {
  color: #121212;
  font-size: 18px;
  font-weight: 500;
}
.leia-mais.link-with-icon::after {
  width: 12px;
  height: 12px;
}
.leia-mais.link-with-icon::after {
  width: 12px;
  height: 12px;
}
.title-carrossel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-carrossel h2 {
  margin-bottom: 0;
}
.title-carrossel .carousel-nav {
  margin: 0;
}
.title-blog-sections {
  padding-bottom: 32px;
}
.list-rapidinhas {
  display: flex;
  flex-direction: column;
  gap: 32px;
  list-style: none;
}
.list-rapidinhas li a {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.list-rapidinhas li a p {
  margin-bottom: 0;
  color: #565555;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}
.list-rapidinhas li a h5 {
  font-size: 16px;

  font-weight: 600;
  color: #121212;
}
.content-rapidinhas {
  width: 60%;
}
.video-embed iframe {
  width: 100%;
  height: 578px;
}
.single-video-hero {
  padding-top: 130px;
}
.page-categoria {
  padding-top: 130px;
}
.single-video-hero .col-lg-7 {
  position: relative;
}
.page-categoria .col-md-12 {
  position: relative;
}
.single-video-hero .cat-news {
  top: -50px;
}
.cat-news a {
  color: #212121;
  font-size: 14px;
}
.page-categoria .cat-news {
  top: -50px;
}
span.play-icon {
  position: absolute;
  right: 40%;
  top: 38%;
}
.linha-posts-videos .zoom-img {
  position: relative;
}

.filtros-categorias .drop-down {
  position: relative; /* referência pro absoluto */
  display: inline-block;
}

.filtros-categorias .menu-categorias {
  position: absolute;
  top: 100%; /* logo abaixo do botão */
  left: 0;
  min-width: 220px;
  max-height: 60vh;

  display: none; /* escondido por padrão */
  padding: 8px 0;
  margin: 8px 0 0;
  list-style: none;

  background: #fff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  z-index: 1000; /* fica acima de tudo */
}

.filtros-categorias .menu-categorias::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  width: 200px;
  height: 0;
}

.filtros-categorias .menu-categorias li a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: #121212;
}

.filtros-categorias .menu-categorias li a:hover {
  background: #f6f8fa;
}

/* Mostra no hover e também quando focado (acessibilidade/teclado) */
.filtros-categorias .drop-down:hover .menu-categorias,
.filtros-categorias .drop-down:focus-within .menu-categorias {
  display: block;
}

/* opcional: seta visual */
.filtros-categorias .drop-down::after {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 16px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  display: none;
}
.filtros-categorias .drop-down:hover::after,
.filtros-categorias .drop-down:focus-within::after {
  display: block;
}

.conteudo-lateral-single {
  position: sticky;
  top: 120px;
}
.post-share {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-top: 46px;
}
.post-content {
  margin-bottom: 46px;
}
.linha-single hr {
  background: rgba(97, 97, 107, 0.3);
}
.linha-relacionados {
  padding-top: 64px;
}
.categorias-post {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-bottom: 32px;
  flex-wrap: wrap;
}
article.contudo-side-post {
  position: relative;
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.page-categoria {
  padding-top: 40px;
}
.categorias-post li a {
  color: #484847;
  font-size: 16px;
  font-weight: 400;
}
.categorias-post li a.cat-principal {
  font-weight: 700;
}
article.conteudo-destaque-cat {
  position: relative;
}
.categoria-link {
  background-color: #f96f35;
  padding: 6px 12px;
}
.categoria-link a {
  color: #fff;
}
.page-categoria h2 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.post-share p {
  font-size: 16px;
  font-weight: 500;
  color: #121212;
  margin-bottom: 0;
}
.insights-card__content {
  padding: 8px;
}
.linha-blog-socios {
  padding-top: 40px;
}
.list-sociais-single {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-bottom: 0;
  padding: 0;
}
.destaques-lateral {
  padding: 40px;
  background-color: #f96f35;
  margin-bottom: 30px;
}
.destaques-lateral h3 {
  font-size: 32px;
  color: #121212;
  font-weight: 600;
}
.destaques-lateral ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.destaques-lateral ul li {
  position: relative;
}
.destaques-lateral ul li::after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: -16px;
  left: 0;
}
.detalhe-single-lateral {
  padding-top: 30px;
}

.destaques-lateral ul li:last-child::after {
  display: none;
}

.destaques-lateral ul li a {
  font-size: 16px;
  color: #121212;
  font-weight: 400;
}
.single-page {
  padding-top: 80px;
}
.conteudo-topo-single {
  position: relative;
}
.cat-single-conten .cat-news {
  top: -60px;
  left: 0;
}
.conteudo-texto-side h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  color: #121212;
}
.img-single-post {
  padding-bottom: 36px;
}
.privacy-toc {
  position: sticky;
  top: 120px;
}
.img-mobile {
  display: none;
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.toc-list li a {
  font-size: 16px;
  color: #121212;
  font-weight: 400;
  text-decoration: none;
}
.image-container {
  position: relative;
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

@media (max-width: 1199px) {
  .col-lg-6.text-content-home {
    max-width: 450px;
    margin-left: 30px;
  }
  .btn-wpp { 
    right: 2%;
  }
  .img-content-laranja::after {
    right: -82px;
  }
  .diferencial-content {
    padding: 15px 30px;
  }
  .diferencial-number .number {
    font-size: 56px;
  }
  .text-sobre-content {
    max-width: 480px;
    margin-left: auto;
    padding-right: 36px !important;
  }
  .diferencial-number .label {
    font-size: 16px;
  }
  h1.h1.h1-semibold.mb-4 {
    font-size: 34px;
  }
  .navbar-nav {
    gap: 2rem;
  }
  .owl-carousel .owl-item .service-card .service-content {
    min-height: 320px;
  }
}
/* Estilo mobile */
@media (max-width: 991px) {
  .menu-item-has-children > .sub-menu {
    display: block; /* Garante que o submenu seja manipulado via JS */
    max-height: 0; /* Inicialmente escondido */
    overflow: hidden;
    padding: 0;
    background: white;
    list-style: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    min-width: 280px;
    transition: max-height 0.3s ease-in-out;
    position: static; /* Animação suave de abertura */
  }
  .pra-voce-content .dots-image {
    display: none;
  }
  .pra-voce-content {
    padding-bottom: 40px;
  }
  .img-desk {
    display: none;
  }
  .img-mobile {
    display: block;
    margin-bottom: 20px;
  }
  .img-content-laranja::after {
    right: 63px;
    bottom: -51px;
    width: 50px;
    height: 50px;
  }
  .img-content-laranja {
    padding-top: 30px;
  }
  .strategy-section-pra-voce .row {
    padding: 72px 72px 100px 72px;
  }
  br {
    display: none;
  }
  .time-card img {
    width: 100%;
  }
  .destaques-lateral h3 {
    font-size: 26px;
  }
  .conteudo-lateral-single {
    padding-top: 60px;
  }
  .linha-relacionada {
    padding-top: 40px;
  }
  .hero-section-sobre .container-fluid {
    max-width: 720px;
  }
  .menu-item-has-children.open > .sub-menu {
    max-height: 500px; /* Valor suficiente para o conteúdo do submenu */
    padding: 10px 0;
  }
  .dots-image {
    margin-top: 80px;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .col-lg-6.text-content-home {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
  }

  .text-sobre-content {
    max-width: unset;
  }
  .form-contact_row {
    background-size: 100%;
    background-position-y: -106px;
  }
  .form-contact_row {
    padding-top: 240px;
  }
  section.full-width-image-section {
    display: none;
  }
  .form-contact_row:after {
    width: 100%;
    right: 0px;
    top: 0px;
    background: linear-gradient(
      0deg,
      rgb(255 255 255) 12%,
      rgb(255 255 255) 53%,
      rgba(235, 241, 245, 0) 91%
    );
  }
  .form-contato {
    position: relative;
    z-index: 9;
    background-color: transparent;
  }
  .blog-mobile {
    display: block;
    padding-top: 60px;
  }
  .card-blog .zoom-img img {
    width: 100%;
  }
  .conteudo-title-disp {
    padding-bottom: 30px;
  }
  article.card-blog {
  margin-bottom: 30px;
  }
  .categorias-navegacao .carousel-nav {
    display: none;
  }
  .conteudo-card-blog {
    min-height: 240px;
  }
  .filtros-categorias {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 30px;
  }
  .blog-desk {
    display: none;
  }
  img.logo-header-img {
    width: auto;
  }

  .btn-strategy {
    padding: 12px 20px;
    font-size: 14px;
  }
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    padding: 60px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
  }
  .hero-section .col-lg-6 {
    padding-right: 0;
  }
  .main-navigation.open {
    right: 0;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 20px;
  }

  .header-cta {
    margin-top: 30px;
  }
  .header-espaco {
    padding-top: 92px;
  }
  .texto-bloco-cinza {
    padding-top: 40px;
  }
  .hero-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .services-carousel {
    padding-top: 40px;
  }
  .pb-80 {
    padding-bottom: 60px;
  }
  .pt-80 {
    padding-top: 60px;
  }
  .dots-carrossel {
    margin-bottom: 60px;
  }
  .menu-item a {
    font-size: 16px;
  }
  .menu-item-has-children > .sub-menu {
    padding-left: 20px;
  }
  .menu-item-has-children > .sub-menu .menu-item a {
    font-size: 14px;
  }
  .comentario-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem 0;
  }
  .video-embed iframe {
    height: 281px;
  }
  .conteudo-card-news h3 {
    font-size: 18px;
  }
  .conteudo-title-disp h1 {
    font-size: 36px;
  }
  .conteudo-card-blog h3 {
    font-size: 18px;
  }
  .conteudo-card-blog {
    min-height: 190px;
}
  .contato-content p {
    font-size: 16px; 
  }
  .detalhe-single {
    display: none;
  }
  .detalhe-single-lateral {
    display: none;
  }
  .card-news .zoom-img img { 
    width: 100%;
  }
  .diferencial-image {
    width: 100%;
  }
  .contudo-side-post {
    flex-direction: column;
  }
  .comentario-content h2 {
    font-size: 24px;
  }
  .cta-sobre .row {
    padding: 30px;
  }
  .content-time {
    padding-top: 15px;
  }
  .diferencial-content {
    text-align: center;
  }
  .hero-section-sobre .container-fluid {
    max-width: 540px;
  }
  .page-template-sobre .header-espaco {
    padding-top: 116px;
  }
  .socios-section .row {
    flex-direction: column-reverse;
  }
  .socios-content {
    padding: 62px 25px;
  }
  .header-logo {
    text-align: left;
    margin-bottom: 1rem;
  }
  .time-card {
    margin-bottom: 50px;
  }
  .main-navigation {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
  }

  .header-cta {
    justify-content: center;
  }

  .btn-header-cta {
    width: 100%;
    justify-content: center;
  }
  .carousel-controls {
    padding-left: 0;
    text-align: left;
    margin-bottom: 2rem;
  }
  .owl-carousel .owl-item .service-card .service-content {
    min-height: 220px;
  }
  .orange-carousel-section {
    position: relative;
    padding-bottom: 130px !important;
    margin-bottom: 70px;
  }
  .orange-carousel-section .carousel-nav {
    position: absolute;
    bottom: 30px;
  }
  .services-carousel-section {
    position: relative;
    margin-bottom: 70px;
  }
  .form-contact_row {
    background-size: 150%;
    background-position-y: -106px;
  }
  .carousel-nav {
    position: absolute;
    bottom: -30px;
  }
  .texto-bloco-cinza {
    padding-right: 0;
  }
  .service-image {
    height: 280px;
  }

  .owl-carousel .owl-item .service-card {
    min-height: 350px;
  }

  .service-content {
    padding: 20px;
  }
  .service-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .form-contact_row:after {
    background: linear-gradient(
      0deg,
      rgb(255 255 255) 12%,
      rgb(255 255 255) 64%,
      rgba(235, 241, 245, 0) 94% 94%
    );
  }
  .service-description {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .dots-image {
    max-width: 150px;
    margin: 0 auto;
  }

  .bullets-image {
    max-width: 150px;
    margin: 0 auto;
  }

  .strategy-row {
    padding: 2rem 1.5rem;
  }

  .strategy-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .approach-block {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .approach-icon {
    width: 50px;
    height: 50px;
  }

  .approach-icon i {
    font-size: 20px;
  }

  .cta-section .row {
    text-align: center;
  }

  .btn-cta {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .accordion-section .row {
    flex-direction: column;
  }

  .accordion-section .col-lg-6:first-child {
    margin-bottom: 2rem;
  }

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

  .accordion-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  /* Footer Responsivo */
  .site-footer {
    padding: 2rem 0 1rem 0;
  }

  .footer-main {
    text-align: left;
  }

  .footer-brand {
    margin-bottom: 2rem;
  }

  .footer-tagline {
    max-width: 100%;
    margin: 0 auto;
  }
  .site-footer .col-md-6.d-flex.gap-3 {
    flex-direction: column;
  }
  .footer-column {
    margin-bottom: 2rem;
  }
  .hero-content-servico {
    margin-bottom: 55px;
  }
  .strategy-section-pra-voce .row {
    padding: 30px;
  }
  .strategy-section-pra-voce .strategy-cta {
    margin-bottom: 30px;
  }
  .img-content-laranja::after {
    display: none;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-main {
    padding-bottom: 30px;
  }
  .page-template-page-servico-empresa .dots-image {
    display: none;
  }
  .page-template-page-servico-pravoce .dots-image {
    display: none;
  }
  .footer-policies {
    margin-top: 1rem;
  }
  .insights-card {
    margin-bottom: 2rem;
  }
  .col-lg-6.text-content-home {
    max-width: 512px;
  }
  .insights-card__content {
    padding: 15px;
  }

  .insights-card__title {
    min-height: 60px;
  }

  .diferencial-card {
    margin-bottom: 2rem;
    flex-direction: column-reverse;
  }

  .diferencial-number .number {
    font-size: 2.5rem;
  }

  .diferencial-number .label {
    font-size: 1rem;
  }

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

  .diferencial-image img {
    max-width: 100%;
    width: 100%;
  }
  h1.h1.h1-semibold.mb-4 {
    font-size: 28px;
  }
  .h2,
  h2 {
    font-size: 28px;
  }
  .h3,
  h3 {
    font-size: 20px;
  }
  .h4,
  h4 {
    font-size: 18px;
  }
}

@media (max-width: 568px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .hero-section-sobre .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}
.hero-section-sobre .col-lg-6 {
  padding-left: 10px;
  padding-right: 10px;
}
  .col-lg-6.text-content-home {
    padding-right: 30px;
    padding-left: 42px;
  }
  .form-contato {
    padding: 20px;
  }
}
