	
	
	.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.close-tooltip {
  margin-left: 8px;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
}

/* Container fixo no canto inferior direito */
.floating-tooltip {
  position: fixed;
  bottom: 100px;
  right: 10px;
  display: flex;
  align-items: center;
  z-index: 9999;
}

/* Tooltip visÃƒÂ­vel */
.floating-tooltip .tooltip-text {
  background: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Ocultar suavemente */
.floating-tooltip .tooltip-text.hidden {
  opacity: 0;
  pointer-events: none;
}

/* BotÃƒÂ£o de fechar o tooltip */
.close-tooltip {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #080808;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}

.close-tooltip:hover {
  background: #fff;
	color: #000;
}

/* BotÃƒÂ£o de chat */


.chat-btn {
  background: #33bd31;
  color: #fff;
  font-size: 24px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}

.chat-btn i {
  color: #fff;
  font-size: 2.5rem;
}

.chat-btn:hover {
  transform: scale(1.1);
  background: #33bd31;
  color: #fff;
}


	

	
	/* ============================================
   BREADCRUMBS MODERN - DEMOLIDORA LOBATO
   ============================================ */

/* Container principal */
.breadcrumb-modern {
  background: #2b2b2b;
  border-top: 2px solid #de0c2c;
  padding: 20px 0;
  width: 100%;
}

/* Container interno com flex */
.breadcrumb-modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Layout desktop (flex horizontal) */
@media (min-width: 768px) {
  .breadcrumb-modern-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
}

/* Título da página (H2) */
.breadcrumb-modern-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.3px;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

/* Linha decorativa abaixo do título (opcional) */
.breadcrumb-modern-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #de0c2c;
  border-radius: 2px;
}

/* Navegação */
.breadcrumb-modern-nav {
  display: flex;
  align-items: center;
}

/* Lista de breadcrumbs */
.breadcrumb-modern-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

/* Itens da lista */
.breadcrumb-modern-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

/* Links */
.breadcrumb-modern-link {
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
  font-weight: 400;
}

.breadcrumb-modern-link:hover {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

/* Item atual (sem link) */
.breadcrumb-modern-current {
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* Separador entre itens */
.breadcrumb-modern-separator {
  color: #de0c2c;
  margin: 0 8px;
  font-size: 0.85rem;

  font-weight: 500;
}

/* Versão mobile (títulos menores) */
@media (max-width: 767px) {
  .breadcrumb-modern {
    padding: 16px 0;
  }
  
  .breadcrumb-modern-title {
    font-size: 1.3rem;
  }
  
  .breadcrumb-modern-title::after {
    width: 40px;
    bottom: -4px;
  }
  
  .breadcrumb-modern-item {
    font-size: 0.8rem;
  }
  
  .breadcrumb-modern-separator {
    margin: 0 6px;
  }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
  .breadcrumb-modern {
    padding: 12px 0;
  }
  
  .breadcrumb-modern-title {
    font-size: 1.1rem;
  }
  
  .breadcrumb-modern-item {
    font-size: 0.7rem;
  }
  
  .breadcrumb-modern-separator {
    margin: 0 4px;
  }
}

/* Efeito de hover suave nos links (transição) */
.breadcrumb-modern-link {
  position: relative;
}

.breadcrumb-modern-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #de0c2c;
  transition: width 0.25s ease;
}

.breadcrumb-modern-link:hover::after {
  width: 100%;
}

/* Acessibilidade - foco visível */
.breadcrumb-modern-link:focus-visible {
  outline: 2px solid #de0c2c;
  outline-offset: 2px;
  border-radius: 2px;
}
	
	/*--breadcrumbs--*/


 /* SEÇÃO search*/
  .search-cta {
    width: 100%;
    padding: 60px 24px;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    isolation: isolate;
  }

  /* CONTAINER */
  .search-cta-content {
    width: 100%;
    max-width: 880px;
    text-align: center;
  }

  /* TÍTULO */
  .search-cta-content h2 {
    color: #fb3d2c;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-wrap: pretty;
  }

  /* TEXTO */
  .search-cta-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 32px;
    text-wrap: pretty;
  }

  /* FORM - LAYOUT RESPONSIVO MELHORADO */
  .search-industrial-form {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border-radius: 60px;
    padding: 0;
    display: flex;
    align-items: center;
    transition: box-shadow 0.25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .search-industrial-form:focus-within {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }

  /* INPUT */
  .search-industrial-form input {
    flex: 1;
    min-width: 0; /* EVITA TRANSBORDAMENTO */
    height: 56px;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 20px;
    font-size: 1rem;
    color: #1a1a2e;
    border-radius: 60px 0 0 60px;
  }

  .search-industrial-form input::placeholder {
    color: #8a8a9e;
    font-weight: 400;
  }

  /* BOTÃO */
  .search-industrial-form button {
    border: none;
    height: 56px;
    padding: 0 32px;
    border-radius: 60px;
    background: #333333;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 4px;
  }

  .search-industrial-form button:hover {
    background: #d91f15;
    transform: translateY(-1px);
  }

  .search-industrial-form button:active {
    transform: translateY(1px);
  }

  /* TOUCH-FRIENDLY - AUMENTA ÁREA DE CLIQUE NO MOBILE */
  @media (max-width: 768px) {
    .search-cta {
      padding: 48px 20px;
    }

    .search-cta-content h2 {
      margin-bottom: 16px;
    }

    .search-cta-content p {
      font-size: 1rem;
      margin-bottom: 28px;
    }

    /* SOLUÇÃO EQUILIBRADA PARA MOBILE */
    .search-industrial-form {
      flex-wrap: wrap;
      background: transparent;
      box-shadow: none;
      gap: 12px;
      border-radius: 0;
    }

    .search-industrial-form input {
      flex: 1 1 100%;
      background: #fff;
      border-radius: 60px;
      height: 52px;
      padding: 0 20px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .search-industrial-form button {
      flex: 1 1 auto;
      width: auto;
      min-width: 120px;
      height: 52px;
      padding: 0 24px;
      margin: 0;
      border-radius: 60px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
  }

  /* AJUSTE PARA TELAS MUITO PEQUENAS (ATÉ 480px) */
  @media (max-width: 480px) {
    .search-cta {
      padding: 40px 16px;
    }

    .search-industrial-form button {
      min-width: 100px;
      padding: 0 20px;
      font-size: 0.9rem;
    }

    .search-cta-content h2 {
      font-size: clamp(1.5rem, 6vw, 1.8rem);
    }
  }

  /* REDUÇÃO DE MOVIMENTO PARA ACESSIBILIDADE */
  @media (prefers-reduced-motion: reduce) {
    .search-industrial-form button {
      transition: none;
    }
  }
	
	
	/* ============================================
   DEMOLIDORA SECTION - MODERN & ELEGANT
   ============================================ */

/* Container principal */
.demolidora-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Container interno */
.demolidora-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Títulos centralizados */
.demolidora-header {
  text-align: center;
  margin-bottom: 48px;
}

.demolidora-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.demolidora-header h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: #de0c2c;
  border-radius: 2px;
}

.demolidora-header h2 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 400;
  color: #555;
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Grid de 2 colunas - AMBAS COM BOX */
.demolidora-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
  align-items: stretch;
}

/* Box da imagem - IGUAL AO BOX DO TEXTO */
.demolidora-image-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 24px;
  border: 1px solid #eee;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.demolidora-image-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
}

/* Container da imagem dentro do box */
.demolidora-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 0;
}

.demolidora-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.demolidora-image-wrapper:hover img {
  transform: scale(1.02);
}

/* BADGE MODERNO E ELEGANTE */
.demolidora-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: linear-gradient(135deg, #de0c2c 0%, #b00923 100%);
  color: #fff;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.demolidora-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(222, 12, 44, 0.3);
}

/* Box do texto */
.demolidora-text-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 32px;
  border: 1px solid #eee;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demolidora-text-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
}

.demolidora-text-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.demolidora-text-box p:last-child {
  margin-bottom: 0;
}

.demolidora-text-box strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Conteúdo completo */
.demolidora-full-content {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  margin-top: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #eee;
}

.demolidora-full-content h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 40px 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #de0c2c;
  display: inline-block;

}

.demolidora-full-content h2:first-of-type {
  margin-top: 0;
}

.demolidora-full-content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  margin: 30px 0 15px 0;
}

.demolidora-full-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.demolidora-full-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.demolidora-full-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}

.demolidora-full-content li strong {
  color: #1a1a1a;
}

/* Toggle moderno */
.toggle {
  margin-top: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.toggle:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.toggle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: #f8f8f8;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-header:hover {
  background: #f0f0f0;
}

.toggle-header h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle-header i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.toggle-header .open {
  transform: rotate(180deg);
}

.toggle-content {
  display: none;
  padding: 24px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  animation: fadeIn 0.3s ease;
}

.toggle.open .toggle-content {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Galeria dentro do toggle */
.toggle-content .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.toggle-content .col-md-4 {
  flex: 1;
  min-width: 250px;
}

.toggle-content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.toggle-content img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.toggle-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
  padding-left: 8px;
}

/* Efeito de borda suave nas imagens */
.borderimg {
  border-radius: 16px;
	margin-bottom: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
  .demolidora-section {
    padding: 48px 0;
  }
  
  .demolidora-grid {
    gap: 24px;
  }
  
  .demolidora-text-box {
    padding: 24px;
  }
  
  .demolidora-image-box {
    padding: 20px;
  }
  
  .demolidora-full-content {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .demolidora-section {
    padding: 40px 0;
  }
  
  .demolidora-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .demolidora-image-box {
    order: 1;
  }
  
  .demolidora-text-box {
    order: 2;
  }
  
  .demolidora-full-content {
    padding: 24px;
  }
  
  .toggle-header {
    padding: 14px 20px;
  }
  
  .toggle-header h2 {
    font-size: 1rem;
  }
  
  .toggle-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .demolidora-section {
    padding: 32px 0;
  }
  
  .demolidora-image-box {
    padding: 16px;
  }
  
  .demolidora-text-box {
    padding: 20px;
  }
  
  .demolidora-full-content {
    padding: 20px;
  }
  
  .demolidora-badge {
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    font-size: 0.65rem;
  }
  
  .toggle-content .col-md-4 {
    min-width: 100%;
  }
}

	
	
	/* ============================================
   TOGGLE MODERN - PADRONIZADO
   ============================================ */

.toggle {
  margin-top: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.toggle:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: #de0c2c;
}

.toggle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: #f8f8f8;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-header:hover {
  background: #f0f0f0;
}

.toggle-header h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle-icon {
  color: #de0c2c !important;
  font-size: 1.2rem;
}

.toggle-header i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: #de0c2c;
}

.toggle-header .open {
  transform: rotate(180deg);
}

.toggle-content {
  display: none;
  padding: 24px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  animation: fadeIn 0.3s ease;
}

.toggle.open .toggle-content {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   ESTILOS ESPECÍFICOS DO CONTEÚDO DO TOGGLE
   ============================================ */

/* H2 dentro do toggle - Título principal com borda */
.toggle-content h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 40px 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #de0c2c;
  display: inline-block;
}

/* H3 dentro do toggle - Subtítulo elegante e responsivo */
.toggle-content h3 {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 500;
  color: #333;
  margin: 28px 0 16px 0;
  letter-spacing: -0.2px;
  position: relative;
  padding-left: 0;
  transition: color 0.3s ease;
}

/* Efeito sutil no H3 (opcional - adiciona uma linha decorativa discreta) */
.toggle-content h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: #de0c2c;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 2px;
}

/* Primeiro H3 não precisa de margin-top grande */
.toggle-content h3:first-of-type {
  margin-top: 8px;
}

/* Parágrafos dentro do toggle */
.toggle-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.toggle-content p:last-child {
  margin-bottom: 0;
}

/* Listas dentro do toggle */
.toggle-content ul, 
.toggle-content ol {
  margin: 20px 0;
  padding-left: 20px;
}

.toggle-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 8px;
  display: list-item;
  unicode-bidi: isolate;
}

.toggle-content li:last-child {
  margin-bottom: 0;
}

/* Imagens dentro do toggle */
.toggle-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 10px 0;
}

/* Grid dentro do toggle */
.toggle-content .row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
}

.toggle-content .col-md-4,
.toggle-content .col-md-6,
.toggle-content .col-md-12 {
  padding: 0;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
  .toggle-header {
    padding: 14px 20px;
  }
  
  .toggle-header h2 {
    font-size: 1rem;
  }
  
  .toggle-content {
    padding: 20px;
  }
  
  .toggle-content h2 {
    margin: 30px 0 16px 0;
    padding-bottom: 8px;
  }
  
  .toggle-content h3 {
    margin: 22px 0 12px 0;
  }
  
  .toggle-content p {
    font-size: 0.9rem;
  }
  
  .toggle-content li {
    font-size: 0.9rem;
  }
  
  .toggle-content .row {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .toggle-header {
    padding: 12px 16px;
  }
  
  .toggle-header h2 {
    font-size: 0.9rem;
  }
  
  .toggle-content {
    padding: 16px;
  }
  
  .toggle-content h2 {
    margin: 24px 0 12px 0;
    padding-bottom: 6px;
  }
  
  .toggle-content h3 {
    margin: 18px 0 10px 0;
  }
  
  .toggle-content h3::before {
    width: 3px;
    margin-right: 8px;
  }
  
  .toggle-content p {
    font-size: 0.85rem;
  }
  
  .toggle-content li {
    font-size: 0.85rem;
  }
}
	
	
	/* ============================================
   Nossos Serviços Section
   ============================================ */

.servicos-section {
  background-color: #333;
  padding: 80px 0;
  overflow: hidden;
}

/* Título da seção */
.servicos-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.title-divider-servicos {
  width: 80px;
  height: 3px;
  background-color: #be1f1c;
  margin: 0 auto 50px auto;
  border-radius: 2px;
}

/* Boxes de serviços */
.servico-box {
  background: #fff;
  border-radius: 20px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Delays individuais para cada box */
.col-lg-4:nth-child(1) .servico-box { animation-delay: 0.1s; }
.col-lg-4:nth-child(2) .servico-box { animation-delay: 0.2s; }
.col-lg-4:nth-child(3) .servico-box { animation-delay: 0.3s; }
.col-lg-4:nth-child(4) .servico-box { animation-delay: 0.4s; }
.col-lg-4:nth-child(5) .servico-box { animation-delay: 0.5s; }
.col-lg-4:nth-child(6) .servico-box { animation-delay: 0.6s; }

/* Hover effect */
.servico-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Círculo ao redor do ícone */
.servico-icon {
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: #f5f5f5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.servico-box:hover .servico-icon {
  background: #be1f1c;
  transform: scale(1.05);
}

.servico-icon i {
  font-size: 2.8rem;
  color: #eb312f;
  transition: all 0.3s ease;
}

.servico-box:hover .servico-icon i {
  color: #fff;
  transform: scale(1.05);
}

/* Título do serviço */
.servico-titulo {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Descrição */
.servico-descricao {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Botão Saiba Mais */
.servico-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #be1f1c;
  color: #fff;
  border: 1.5px solid #be1f1c;
  border-radius: 40px;
  padding: 10px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.servico-btn:hover {
  background-color: transparent;
  color: #333;
  border-color: #333;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(190, 31, 28, 0.3);
  gap: 12px;
}

/* Animação de entrada */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CTA MODERNO
   ============================================ */
.servicos-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  backdrop-filter: blur(0px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.servicos-cta h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.servicos-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #333;
  border: none;
  border-radius: 50px;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-btn:hover {
  background: #be1f1c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(190, 31, 28, 0.3);
  gap: 15px;
}

/* Responsividade */
@media (max-width: 992px) {
  .servicos-section {
    padding: 60px 0;
  }
  
  .servico-box {
    padding: 35px 25px;
  }
  
  .servico-icon {
    width: 75px;
    height: 75px;
  }
  
  .servico-icon i {
    font-size: 2.2rem;
  }
  
  .servico-titulo {
    font-size: 1.3rem;
  }
  
  .servicos-cta h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .servicos-section {
    padding: 50px 0;
  }
  
  .servicos-title {
    font-size: 1.8rem;
  }
  
  .servico-box {
    padding: 30px 20px;
  }
  
  .servico-icon {
    width: 65px;
    height: 65px;
  }
  
  .servico-icon i {
    font-size: 1.8rem;
  }
  
  .servico-titulo {
    font-size: 1.2rem;
  }
  
  .servico-descricao {
    font-size: 0.85rem;
  }
  
  .servico-btn {
    padding: 8px 22px;
    font-size: 0.8rem;
  }
  
  .servicos-cta {
    margin-top: 40px;
    padding: 35px 20px;
  }
  
  .servicos-cta h3 {
    font-size: 1.3rem;
  }
  
  .servicos-cta p {
    font-size: 0.9rem;
  }
  
  .cta-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}
	
	
	
	/* ============================================
   LOCATION SECTION - MODERN & ELEGANT
   ============================================ */

.location-modern-section {
  background: #f7f7f7;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.location-modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER DA SEÇÃO */
.location-modern-header {
  text-align: center;
  margin-bottom: 60px;
}

.location-modern-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.location-modern-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: #be1f1c;
  border-radius: 2px;
}

.location-modern-subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID DE CARDS */
.location-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARDS */
.location-modern-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.location-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #be1f1c;
}

/* Card destacado (Matriz) */
.location-modern-card-featured {
  border-top: 4px solid #be1f1c;
  position: relative;
}

.location-modern-card-featured::before {
  content: 'Principal';
  position: absolute;
  top: 16px;
  right: -28px;
  background: #be1f1c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 32px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  z-index: 1;
}

/* Ícone do card */
.location-modern-card-icon {
  width: 70px;
  height: 70px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.3s ease;
}

.location-modern-card:hover .location-modern-card-icon {
  background: #be1f1c;
  transform: scale(1.05);
}

.location-modern-card-icon i {
  font-size: 2rem;
  color: #333;
  transition: all 0.3s ease;
}

.location-modern-card:hover .location-modern-card-icon i {
  color: #fff;
}

/* Título do card */
.location-modern-card-title {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

/* Divisor do card */
.location-modern-card-divider {
  width: 40px;
  height: 2px;
  background: #be1f1c;
  margin: 0 auto 20px auto;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.location-modern-card:hover .location-modern-card-divider {
  width: 60px;
}

/* Conteúdo do card */
.location-modern-card-content {
  margin-bottom: 24px;
}

.location-modern-card-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.location-modern-card-content p i {
  color: #be1f1c;
  font-size: 0.9rem;
}

.location-modern-phone {
  font-weight: 600;
  color: #333 !important;
  margin-top: 8px;
}

.location-modern-phone i {
  color: #be1f1c !important;
}

/* Botão do card */
.location-modern-card-btn {
  margin-top: 16px;
}

.location-modern-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #333;
  border: 1.5px solid #333;
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}

.location-modern-btn i {
  font-size: 0.9rem;
}

.location-modern-btn:hover {
  background: #be1f1c;
  color: #fff;
  border-color: #be1f1c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(190, 31, 28, 0.3);
  gap: 12px;
}

/* ============================================
   RESPONSIVIDADE - CENTRALIZADO
   ============================================ */

/* Desktop pequeno (até 1100px) */
@media (max-width: 1100px) {
  .location-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Tablet (820px - 1024px) */
@media (max-width: 1024px) {
  .location-modern-section {
    padding: 60px 0;
  }
  
  .location-modern-container {
    padding: 0 20px;
  }
  
  .location-modern-grid {
    gap: 20px;
  }
  
  .location-modern-card {
    padding: 28px 20px;
  }
}

/* Tablet específico (768px - 820px) */
@media (max-width: 820px) {
  .location-modern-container {
    padding: 0 16px;
  }
  
  .location-modern-grid {
    gap: 16px;
  }
  
  .location-modern-card {
    padding: 24px 16px;
  }
  
  .location-modern-card-icon {
    width: 60px;
    height: 60px;
  }
  
  .location-modern-card-icon i {
    font-size: 1.6rem;
  }
  
  .location-modern-card-title {
    font-size: 1.1rem;
  }
  
  .location-modern-card-content p {
    font-size: 0.75rem;
  }
  
  .location-modern-btn {
    padding: 8px 12px;
    font-size: 0.7rem;
  }
}

/* Celular (até 768px) */
@media (max-width: 768px) {
  .location-modern-section {
    padding: 50px 0;
  }
  
  .location-modern-title {
    font-size: 1.8rem;
  }
  
  .location-modern-subtitle {
    font-size: 0.9rem;
    padding: 0 16px;
  }
  
  .location-modern-container {
    padding: 0 12px;
  }
  
  .location-modern-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .location-modern-card {
    padding: 28px 20px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  .location-modern-card-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 16px auto;
  }
  
  .location-modern-card-icon i {
    font-size: 1.8rem;
  }
  
  .location-modern-card-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .location-modern-card-divider {
    margin: 0 auto 16px auto;
  }
  
  .location-modern-card-content p {
    font-size: 0.85rem;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
  
  .location-modern-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  
  .location-modern-card-featured::before {
    font-size: 0.7rem;
    padding: 5px 30px;
    right: -25px;
    top: 12px;
  }
}

/* Celular pequeno (412px - 600px) */
@media (max-width: 600px) {
  .location-modern-container {
    padding: 0 10px;
  }
  
  .location-modern-card {
    padding: 20px 16px;
  }
  
  .location-modern-card-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 16px auto;
  }
  
  .location-modern-card-icon i {
    font-size: 1.5rem;
  }
  
  .location-modern-card-title {
    font-size: 1.1rem;
  }
  
  .location-modern-card-content p {
    font-size: 0.8rem;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }
  
  .location-modern-btn {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
}

/* Celular muito pequeno (até 412px) */
@media (max-width: 412px) {
  .location-modern-section {
    padding: 40px 0;
  }
  
  .location-modern-title {
    font-size: 1.5rem;
  }
  
  .location-modern-subtitle {
    font-size: 0.8rem;
  }
  
  .location-modern-container {
    padding: 0 8px;
  }
  
  .location-modern-card {
    padding: 18px 14px;
  }
  
  .location-modern-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px auto;
  }
  
  .location-modern-card-icon i {
    font-size: 1.3rem;
  }
  
  .location-modern-card-title {
    font-size: 1rem;
    text-align: center;
  }
  
  .location-modern-card-content p {
    font-size: 0.7rem;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }
  
  .location-modern-card-content p i {
    width: auto;
    font-size: 0.75rem;
  }
  
  .location-modern-btn {
    padding: 8px 10px;
    font-size: 0.65rem;
  }
  
  .location-modern-card-featured::before {
    font-size: 0.55rem;
    padding: 4px 22px;
    right: -20px;
    top: 10px;
  }
}
	
/* ============================================
   TESTIMONIALS SECTION - VERSÃO FINAL
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Section Title */
.testimonials .section-title {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials .section-title h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.testimonials .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: #be1f1c;
  border-radius: 2px;
}

.testimonials .section-title p {
  font-size: 1rem;
  color: #666;
  margin-top: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Reviews Slider */
.testimonials .reviews-slider .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
}

.testimonials .reviews-slider .swiper-slide {
  height: auto;
}

/* Review Card */
.testimonials .review-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-left: 4px solid #be1f1c;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonials .review-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: rgba(190, 31, 28, 0.05);
  border-radius: 80px 0 20px 0;
  pointer-events: none;
}

.testimonials .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Review Header */
.testimonials .review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.testimonials .review-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.testimonials .review-stars i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .review-quote-icon {
  font-size: 3rem;
  color: #be1f1c;
  opacity: 0.2;
  line-height: 0.8;
  display: block;
  flex-shrink: 0;
}

/* Review Body */
.testimonials .review-body {
  flex: 1;
  margin: 0 0 24px;
}

.testimonials .review-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: normal;
  color: #555;
  margin: 0;
}

/* Review Footer */
.testimonials .review-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.testimonials .review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(190, 31, 28, 0.2);
}

.testimonials .review-name {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 4px;
}

.testimonials .review-role {
  font-size: 0.75rem;
  color: #888;
  display: block;
}

/* ============================================
   CONTROLES - REMOVENDO TOTALMENTE O ESTILO DO SWIPER
   ============================================ */

/* Remove pseudo-elementos do Swiper */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}

/* Container dos controles */
.testimonials .reviews-controls {
  margin-top: 40px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  position: relative !important;
  z-index: 10 !important;
}

/* Botões Prev e Next - Estilo forçado */
.testimonials .reviews-btn-prev,
.testimonials .reviews-btn-next {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border: 2px solid #be1f1c !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #be1f1c !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  flex-shrink: 0 !important;
}

/* Remove foco de TODOS os estados */
.testimonials .reviews-btn-prev:focus,
.testimonials .reviews-btn-next:focus,
.testimonials .reviews-btn-prev:focus-visible,
.testimonials .reviews-btn-next:focus-visible,
.testimonials .reviews-btn-prev:active,
.testimonials .reviews-btn-next:active,
.reviews-btn-prev:focus,
.reviews-btn-next:focus {
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-color: #be1f1c !important;
}

/* Hover dos botões */
.testimonials .reviews-btn-prev:hover,
.testimonials .reviews-btn-next:hover {
  background: #be1f1c !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  border-color: #be1f1c !important;
}

/* Pagination */
.testimonials .reviews-pagination {
  position: static !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.testimonials .reviews-pagination .swiper-pagination-bullet {
  width: 30px !important;
  height: 3px !important;
  border-radius: 2px !important;
  background: #ccc !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  box-shadow: none !important;
}

.testimonials .reviews-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px !important;
  background: #be1f1c !important;
}

/* Remove qualquer estilo de foco global do Swiper */
.swiper-pagination-bullet:focus,
.swiper-pagination-bullet:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 992px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials .review-card {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 50px 0;
  }
  
  .testimonials .section-title h2 {
    font-size: 1.8rem;
  }
  
  .testimonials .section-title p {
    font-size: 0.9rem;
  }
  
  .testimonials .review-card {
    padding: 24px;
  }
  
  .testimonials .review-body p {
    font-size: 0.9rem;
  }
  
  .testimonials .reviews-controls {
    margin-top: 30px;
    gap: 16px;
  }
  
  .testimonials .reviews-btn-prev,
  .testimonials .reviews-btn-next {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 576px) {
  .testimonials {
    padding: 40px 0;
  }
  
  .testimonials .review-card {
    padding: 20px;
  }
  
  .testimonials .review-avatar {
    width: 44px;
    height: 44px;
  }
  
  .testimonials .reviews-btn-prev,
  .testimonials .reviews-btn-next {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    font-size: 0.85rem !important;
  }
}
	
	/* ============================================
   CONTACT SECTION - MODERN & ELEGANT
   FUNDO ESCURO PARA CONTRASTE
   ============================================ */

.contact-modern-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #1a1a1a;
}

.contact-modern-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(190, 31, 28, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-modern-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(190, 31, 28, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* HEADER DA SEÇÃO */
.contact-modern-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-modern-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.contact-modern-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: #be1f1c;
  border-radius: 2px;
}

.contact-modern-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID 2 COLUNAS */
.contact-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
}

/* ============================================
   COLUNA ESQUERDA - INFORMAÇÕES
   ============================================ */

.contact-modern-info {
  background: #be1f1c;
  border-radius: 24px;
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-modern-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(190, 31, 28, 0.3);
}

.contact-modern-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.contact-modern-info-inner {
  position: relative;
  z-index: 1;
}

/* Badge */
.contact-modern-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.contact-modern-badge i {
  font-size: 14px;
}

/* Títulos da info */
.contact-modern-info-header h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.contact-modern-info-header p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* Métodos de contato */
.contact-modern-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-modern-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.contact-modern-method:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(8px);
}

.contact-modern-method-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-modern-method-icon i {
  font-size: 20px;
  color: #be1f1c;
}

.contact-modern-method-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-modern-method-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.contact-modern-method-details a,
.contact-modern-method-details span {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-modern-method-details a:hover {
  opacity: 0.8;
}

/* Stats */
.contact-modern-stats {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 32px;
}

.contact-modern-stat {
  flex: 1;
  text-align: center;
}

.contact-modern-stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.contact-modern-stat-text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Social */
.contact-modern-social {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-modern-social > span {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

.contact-modern-social-icons {
  display: flex;
  gap: 12px;
}

.contact-modern-social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.contact-modern-social-icons a:hover {
  background: #fff;
  color: #be1f1c;
  transform: translateY(-4px);
}

.contact-modern-social-icons a i {
  font-size: 16px;
}

/* ============================================
   COLUNA DIREITA - FORMULÁRIO
   ============================================ */

.contact-modern-form {
  background: #2a2a2a;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-modern-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Header do formulário */
.contact-modern-form-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-modern-form-icon {
  width: 64px;
  height: 64px;
  background: rgba(190, 31, 28, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-modern-form-icon i {
  font-size: 28px;
  color: #be1f1c;
}

.contact-modern-form-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.contact-modern-form-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Grupo de formulário */
.contact-modern-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-modern-form-group {
  margin-bottom: 20px;
}

.contact-modern-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.contact-modern-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-modern-input-wrapper i {
  position: absolute;
  left: 18px;
  font-size: 18px;
  color: #666;
  transition: color 0.3s ease;
  z-index: 1;
}

.contact-modern-input-wrapper input,
.contact-modern-input-wrapper textarea {
  width: 100%;
  height: 56px;
  padding: 16px 16px 16px 52px;
  font-size: 15px;
  color: #fff;
  background: #333;
  border: 2px solid transparent;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.contact-modern-input-wrapper input::placeholder,
.contact-modern-input-wrapper textarea::placeholder {
  color: #777;
}

.contact-modern-input-wrapper input:focus,
.contact-modern-input-wrapper textarea:focus {
  outline: none;
  background: #3a3a3a;
  border-color: #be1f1c;
  box-shadow: 0 0 0 4px rgba(190, 31, 28, 0.15);
}

.contact-modern-input-wrapper input:focus + i,
.contact-modern-input-wrapper textarea:focus + i {
  color: #be1f1c;
}

.contact-modern-textarea-wrapper {
  align-items: flex-start;
}

.contact-modern-textarea-wrapper i {
  top: 18px;
}

.contact-modern-textarea-wrapper textarea {
  height: auto;
  min-height: 140px;
  resize: vertical;
}

/* Ações do formulário */
.contact-modern-form-actions {
  margin-top: 32px;
}

.contact-modern-btn-submit {
  width: 100%;
  height: 56px;
  background: #be1f1c;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-modern-btn-submit:hover {
  background: #a01816;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(190, 31, 28, 0.4);
}

.contact-modern-btn-submit:hover i {
  transform: translateX(4px);
}

.contact-modern-btn-submit i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Secure note */
.contact-modern-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.contact-modern-secure-note i {
  font-size: 14px;
  color: #be1f1c;
}

.contact-modern-secure-note span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Loading e mensagens */
.contact-modern-loading,
.contact-modern-error-message,
.contact-modern-sent-message {
  display: none;
  text-align: center;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-size: 14px;
}

.contact-modern-loading {
  background: #333;
  color: #aaa;
}

.contact-modern-error-message {
  background: rgba(190, 31, 28, 0.15);
  color: #be1f1c;
}

.contact-modern-sent-message {
  background: rgba(46, 125, 50, 0.15);
  color: #4caf50;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 992px) {
  .contact-modern-section {
    padding: 60px 0;
  }
  
  .contact-modern-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-modern-info {
    padding: 40px;
  }
  
  .contact-modern-form {
    padding: 40px;
  }
  
  .contact-modern-info-header h3 {
    font-size: 1.8rem;
  }
  
  .contact-modern-stats {
    gap: 16px;
    padding: 20px;
  }
  
  .contact-modern-stat-number {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .contact-modern-section {
    padding: 50px 0;
  }
  
  .contact-modern-title {
    font-size: 1.8rem;
  }
  
  .contact-modern-subtitle {
    font-size: 0.9rem;
  }
  
  .contact-modern-info {
    padding: 32px;
  }
  
  .contact-modern-form {
    padding: 32px 24px;
  }
  
  .contact-modern-info-header h3 {
    font-size: 1.5rem;
  }
  
  .contact-modern-form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }
  
  .contact-modern-form-header {
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-modern-form-icon {
    width: 56px;
    height: 56px;
  }
  
  .contact-modern-form-icon i {
    font-size: 24px;
  }
  
  .contact-modern-form-text h4 {
    font-size: 1.3rem;
  }
  
  .contact-modern-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-modern-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  
  .contact-modern-stat-number {
    margin-bottom: 0;
    order: 2;
  }
  
  .contact-modern-stat-text {
    order: 1;
  }
  
  .contact-modern-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .contact-modern-input-wrapper input,
  .contact-modern-input-wrapper textarea {
    height: 52px;
    padding: 14px 14px 14px 48px;
  }
  
  .contact-modern-btn-submit {
    height: 52px;
  }
}

@media (max-width: 576px) {
  .contact-modern-section {
    padding: 40px 0;
  }
  
  .contact-modern-container {
    padding: 0 16px;
  }
  
  .contact-modern-info {
    padding: 24px;
  }
  
  .contact-modern-form {
    padding: 24px 20px;
  }
  
  .contact-modern-method {
    padding: 14px;
  }
  
  .contact-modern-method-icon {
    width: 44px;
    height: 44px;
  }
  
  .contact-modern-method-icon i {
    font-size: 18px;
  }
  
  .contact-modern-method-details a,
  .contact-modern-method-details span {
    font-size: 14px;
  }
  
  .contact-modern-form-header {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  
  .contact-modern-input-wrapper input,
  .contact-modern-input-wrapper textarea {
    font-size: 16px;
  }
}

	
	/* ============================================
   FOOTER MODERN - DEMOLIDORA LOBATO
   FUNDO ESCURO PARA HARMONIZAR COM CONTATO
   ============================================ */

.footer-modern {
  background: #111;
  padding: 60px 0 20px 0;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #be1f1c, #333, #be1f1c);
}

.footer-modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* GRID PRINCIPAL */
.footer-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

/* COLUNAS */
.footer-modern-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* LOGO */
.footer-modern-logo img {
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-modern-about {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* SOCIAL */
.footer-modern-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-modern-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-modern-social-link:hover {
  background: #be1f1c;
  transform: translateY(-3px);
  color: #fff;
}

/* TÍTULOS DAS COLUNAS */
.footer-modern-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-modern-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #be1f1c;
  border-radius: 2px;
}

/* LISTAS DE LINKS */
.footer-modern-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-modern-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-modern-links li a::before {
  content: '→';
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.footer-modern-links li a:hover {
  color: #be1f1c;
  transform: translateX(5px);
}

.footer-modern-links li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* CONTATO */
.footer-modern-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-modern-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-modern-contact li i {
  color: #be1f1c;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-modern-contact li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-modern-contact li a:hover {
  color: #be1f1c;
}

.footer-modern-contact li span {
  color: rgba(255, 255, 255, 0.6);
}

/* NEWSLETTER */
.footer-modern-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 0;
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-modern-newsletter-content {
  flex: 1;
}

.footer-modern-newsletter-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px 0;
}

.footer-modern-newsletter-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-modern-newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-modern-newsletter-input {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-modern-newsletter-input i {
  position: absolute;
  left: 16px;
  color: #666;
  font-size: 1rem;
}

.footer-modern-newsletter-input input {
  width: 280px;
  height: 48px;
  padding: 0 16px 0 48px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.9rem;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-modern-newsletter-input input:focus {
  outline: none;
  border-color: #be1f1c;
  background: #222;
}

.footer-modern-newsletter-input input::placeholder {
  color: #666;
}

.footer-modern-newsletter-btn {
  height: 48px;
  padding: 0 28px;
  background: #be1f1c;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-modern-newsletter-btn:hover {
  background: #a01816;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(190, 31, 28, 0.3);
}

/* COPYRIGHT */
.footer-modern-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
}

.footer-modern-copyright p,
.footer-modern-credits p {
  font-size: 1rem;
  color: #fff;
  margin: 0;
}

.footer-modern-credits a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-modern-credits a:hover {
  color: #be1f1c;
}

.footer-modern-credits i {
  color: #fff;
  font-size: 0.75rem;
  margin: 0 2px;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .footer-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-modern-newsletter {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-modern-newsletter-content {
    text-align: center;
  }
  
  .footer-modern-newsletter-form {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 50px 0 20px 0;
  }
  
  .footer-modern-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-modern-col {
    text-align: center;
  }
  
  .footer-modern-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-modern-links li a {
    justify-content: center;
  }
  
  .footer-modern-contact li {
    justify-content: center;
  }
  
  .footer-modern-social {
    justify-content: center;
  }
  
  .footer-modern-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-modern-newsletter-input input {
    width: 100%;
  }
  
  .footer-modern-newsletter-form {
    width: 100%;
    flex-direction: column;
  }
  
  .footer-modern-newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-modern-newsletter-input input {
    width: 100%;
  }
  
  .footer-modern-newsletter-btn {
    width: 100%;
  }
}
	
	/*--footer--*/