:root {
  --azul: #fff;
}

.text-azul {
  color: var(--vermelho) !important;
}

.btn-azul {
  background-color: var(--vermelho);
  border: none;
  color: white;
}

.btn-azul:hover {
  background-color: #cd1818;
}

.hero-section {
  height: 100vh;
  background: linear-gradient(to bottom right, #000000, #0a0a0a);
  color: white;
  padding: 100px 0;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--vermelho);
  text-decoration: underline;
}

@keyframes floatLight {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50%, 50%);
  }
}

.porque-escolher {
  background: linear-gradient(to right, #0d0d0d, #111);
  padding: 80px 0;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.text-highlight {
  color: #750404;
}

.underline {
  width: 60px;
  height: 4px;
  background-color: #750404;
  margin: 0 auto 30px auto;
  border-radius: 10px;
}

.icon-circle {
  background-color: #47000e;
  color: #fff;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(139, 0, 0, 0.5);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.feature-box:hover .icon-circle {
  transform: scale(1.1);
}

.feature-box h5 {
  font-size: 1.2rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Estilos para a seção "Sobre" --- */
.bg-dark2 {
  background-color: #1a1a1a;
}

.text-highlight {
  color: #57040b;
  font-weight: 700;
}

.underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #901010,#730d0d);
  margin-top: 10px;
}

/* Ícones de checklist */
.bi-check-circle-fill {
  font-size: 1.2rem;
}

/* Imagem com borda sutil */
.img-fluid.rounded {
  border: 3px solid rgba(139, 0, 0, 0.2);
  transition: transform 0.3s;
}

.img-fluid.rounded:hover {
  transform: scale(1.02);
}
/* === ESTILOS COMPLEMENTARES === */
.bg-dark2 {
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
}

.bg-azul-gradient {
  background: linear-gradient(to bottom right, var(--vermelho), #a11d0e);
}

.icon-circle-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(255, 30, 30, 0.4);
}

.rounded-4 {
  border-radius: 20px !important;
}

/* Ajuste para mobile */
@media (max-width: 992px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .ps-lg-4 {
    padding-left: 0 !important;
  }
}

/* === ESTILOS PARA SERVIÇOS V2 === */
/* Container principal dos serviços - versão otimizada */
.services {
  padding: 80px 0;
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  isolation: isolate; /* Novo contexto de empilhamento */
}

/* Grid de serviços - versão robusta */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}

/* Card de serviço - versão definitiva */
.service-card-v2 {
  background: linear-gradient(145deg, #121212 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 30, 30, 0.15);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
  will-change: transform, box-shadow; /* Otimização de performance */
  backface-visibility: hidden; /* Corrige flickering */
  transform-style: preserve-3d; /* Melhora renderização */
}

/* Pseudo-elemento para borda gradiente - versão estável */
.service-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--vermelho), transparent) border-box;
  -webkit-mask: 
    linear-gradient(#fff 0 0) padding-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  transition: all 0.4s ease;
  opacity: 0;
  z-index: -1; /* Garante que fique atrás do conteúdo */
}

/* Efeito hover - versão estável para todos navegadores */
.service-card-v2:hover {
  transform: translateY(-10px) translateZ(10px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
  z-index: 2;
  border-color: rgba(255, 30, 30, 0.3);
}

.service-card-v2:hover::before {
  opacity: 1;
}

/* Container do ícone - versão otimizada */
.icon-service-v2 {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, rgba(255, 30, 30, 0.1), rgba(255, 30, 30, 0.05));
  border-radius: 50%;
  font-size: 32px;
  color: var(--azul);
  border: 1px solid rgba(255, 30, 30, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  z-index: 2; /* Garante que o ícone fique acima dos efeitos */
}

.service-card-v2:hover .icon-service-v2 {
  background: linear-gradient(to bottom right, rgba(255, 30, 30, 0.2), rgba(255, 30, 30, 0.1));
  transform: scale(1.1) translateZ(5px);
  box-shadow: 0 0 20px rgba(255, 30, 30, 0.3);
}

/* Conteúdo do card - protegido contra bugs */
.service-content {
  position: relative;
  z-index: 3; /* Garante que o conteúdo fique acima de tudo */
  padding: 20px;
}

.service-card-v2 h3 {
  margin-bottom: 15px;
  color: var(--vermelho-escuro);
  font-size: 1.3rem;
  transition: color 0.3s;
  position: relative;
}

.service-card-v2 p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
  position: relative;
}

/* Botão - versão otimizada */
.btn-azelho {
  background-color: var(--vermelho-escuro);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  z-index: 4;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

.btn-azelho:hover {
  background-color: #cd1818;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 30, 30, 0.4);
}

/* Correção específica para o Opera */
@supports (-webkit-overflow-scrolling: touch) {
  .service-card-v2 {
    -webkit-transform: translateZ(0);
  }
  
  .services-grid {
    perspective: 1000px;
  }
}

/* Versão mobile - mais estável */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card-v2 {
    padding: 25px;
  }
  
  .service-card-v2:hover {
    transform: translateY(-5px);
  }
  
  .icon-service-v2 {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .service-card-v2 {
    margin-bottom: 20px;
text-decoration: none !important; /* Remove sublinhado */
  display: block; /* Melhora área clicável */
  }
}
/* FORMULÁRIO */
.contact-form .form-control,
.contact-form .form-select {
  transition: all 0.3s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--azul);
  box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.25);
  background-color: #1a1a1a;
}

.btn-azelhov2 {
  background: linear-gradient(to right, var(--vermelho), #a11d0e);
  border: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-azelhov2:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 180, 255, 0.4);
}

/* CONTATOS */
.contact-info {
  border: 1px solid rgba(88, 11, 28, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 31, 31, 0.1);
  color: var(--vermelho);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--azul);
  color: white;
  transform: translateY(-3px);
}
/* Personalização da barra de rolagem */
::-webkit-scrollbar {
  width: 12px; /* Largura da barra */
  height: 12px; /* Altura da barra horizontal */
}

::-webkit-scrollbar-track {
  background: #0a0a0a; /* Cor do fundo da barra */
  border-left: 1px solid #1a1a1a; /* Borda sutil */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--vermelho-escuro), #cc0000); /* Gradiente azul */
  border-radius: 6px; /* Bordas arredondadas */
  border: 2px solid #0a0a0a; /* Borda para contraste */
}

::-webkit-scrollbar-thumb:hover {
  background: var(--vermelho); /* Cor sólida ao passar o mouse */
}

/* Para Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--vermelho-escuro) #0a0a0a;
}
html {
  scroll-behavior: smooth; /* Rolagem suave entre seções */
  scroll-padding-top: 80px; /* Altura da sua navbar */
}
/* Se estiver usando navbar fixa */
header.fixed-nav {
  height: 80px; /* Ajuste conforme sua navbar */
}
@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 60px; /* Menos espaço em mobile */
  }
}
::-webkit-scrollbar-thumb {
  background: rgba(30, 144, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* CONTATOS LATERAIS - VERSÃO MELHORADA */
.contact-info {
  background: linear-gradient(145deg, #121212 0%, #1a1a1a 100%) !important;
  border: 1px solid rgba(255, 30, 30, 0.2) !important;
  box-shadow: 0 5px 25px rgba(255, 0, 0, 0.15) !important;
}

.contact-info h4 {
  color: var(--vermelho) !important;
  text-shadow: 0 0 10px rgba(255, 31, 31, 0.3);
}

.contact-info h5 {
  color: #e32222 !important; /* Vermelho vibrante */
  font-size: 1.1rem;
}

.contact-info p,
.contact-info a {
  color: #e0e0e0 !important; /* Cinza claro para melhor leitura */
  transition: all 0.3s;
}

.contact-info a:hover {
  color: var(--vermelho) !important;
  text-decoration: none !important;
}

/* Ícones */
.icon-circle-sm {
  background: linear-gradient(to bottom right, var(--vermelho), #a11d0e) !important;
  box-shadow: 0 0 15px rgba(0, 180, 255, 0.5) !important;
}

/* Linha divisória */
.contact-info hr {
  border-color: rgba(255, 31, 31) !important;
  opacity: 1;
}

/* Redes Sociais */
.social-icon {
  background: rgba(88, 11, 28, 0.15) !important;
  color: #f7f7f7 !important;
  border: 1px solid rgba(88, 11, 28, 0.3);
}

.social-icon:hover {
  background: var(--vermelho-escuro) !important;
  color: white !important;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}
.contact-info h4 {
  position: relative;
  display: inline-block;
}

.contact-info h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--vermelho-escuro);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.contact-info h4:hover::after {
  transform: scaleX(1);
}

/* DEPOIMENTOS */
.testimonial-card {
  background: linear-gradient(145deg, #121212, #1a1a1a);
  border: 1px solid rgba(30, 144, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--azul);
  box-shadow: 0 10px 30px rgba(0, 98, 255, 0.2);
}

.testimonial-text {
  color: #e0e0e0;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 50px;
  color: rgba(30, 144, 255, 0.2);
  font-family: serif;
}

.rating {
  font-size: 1.2rem;
}

.client-avatar img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid var(--vermelho);
}

/* Efeito para carregar mais depoimentos */
.hidden-testimonial {
  display: none;
}

/* DROPDOWN PERSONALIZADO */
.dropdown-menu-dark {
  background: linear-gradient(145deg, #121212, #1a1a1a) !important;
  box-shadow: 0 5px 15px rgba(0, 98, 255, 0.2);
}

.dropdown-item {
  color: #e0e0e0 !important;
  transition: all 0.3s;
  padding: 8px 15px;
  border-radius: 5px;
  margin: 2px 8px;
  width: auto;
}

.dropdown-item:hover {
  background: rgba(30, 144, 255, 0.15) !important;
  color: var(--vermelho) !important;
}

.dropdown-item img {
  filter: brightness(0.8);
  transition: filter 0.3s;
}

.dropdown-item:hover img {
  filter: brightness(1.2);
}

/* BOTÃO ÁREA DO CLIENTE */
.btn-azelhov2 {
  background: linear-gradient(135deg, var(--vermelho), #3d0404);
  border: none;
  color: white !important;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-azelhov2:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 11, 28, 0.4);
  background: linear-gradient(135deg, #210909, var(--vermelho));
}
/* ACORDION PERSONALIZADO */
/* FAQ - ESTILO ATUALIZADO */
.accordion-button {
  background: linear-gradient(145deg, #210909, #1a1a1a) !important;
  color: #f0f0f0 !important;
  font-weight: 600;
  border: 1px solid rgba(88, 11, 28) !important;
  transition: all 0.3s ease;
  padding: 1rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(145deg, #210909, #121212) !important;
  color: var(--vermelho) !important;
  box-shadow: 0 0 15px rgba(88, 11, 28);
  border-bottom: 1px solid var(--vermelho) !important;
}

.accordion-button:hover {
  color: var(--vermelho) !important;
}

.accordion-body {
  background: linear-gradient(145deg, #0f0f0f, #151515) !important;
  color: #e0e0e0 !important;
  border-left: 2px solid var(--vermelho);
  border-right: 2px solid var(--vermelho);
  border-bottom: 2px solid var(--vermelho);
  border-bottom-left-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
  padding: 1.5rem !important;
}

.accordion-item {
  border: none !important;
  margin-bottom: 1rem !important;
  border-radius: 8px !important;
  overflow: hidden;
}

/* Ícones */
.accordion-button i {
  color: var(--vermelho);
  font-size: 1.2rem;
  margin-right: 10px;
  transition: all 0.3s;
}

.accordion-button:not(.collapsed) i {
  color: #a11d0e;
  text-shadow: 0 0 8px rgba(0, 180, 255, 0.5);
}

/* Seta personalizada - Vermelha */
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff1e1e'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cc0000'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* Listas dentro do accordion */
.accordion-body ul {
  padding-left: 1.5rem;
}

.accordion-body li {
  margin-bottom: 0.5rem;
  position: relative;
  color: #d0d0d0;
}

.accordion-body li::before {
  content: "•";
  color: var(--vermelho);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
/* Efeito de brilho sutil (opcional) */
.accordion-item {
  position: relative;
}

.accordion-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, 
    rgba(30, 144, 255, 0.05) 0%, 
    transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.accordion-item:hover::before {
  opacity: 1;
}

/* FOOTER ESTILIZADO */
.footer-logo h5 {
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-logo h5::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--vermelho);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.footer-logo:hover h5::after {
  transform: scaleX(1);
}

.payment-methods img {
  height: 25px;
  width: auto;
  filter: grayscale(30%);
  transition: all 0.3s;
  opacity: 0.8;
}

.payment-methods img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.disclaimer {
  background: rgba(30, 30, 30, 0.7);
  padding: 12px;
  border-radius: 8px;
  border-left: 3px solid var(--azul);
}

.copyright {
  margin-top: 15px;
}
:root {
  --vermelho: #ff1e1e;
  --vermelho-escuro: #cc0000;
  --vermelho-claro: #ff4d4d;
}

/* Classes de cor atualizadas */
.text-azul, .text-highlight {
  color: var(--vermelho) !important;
}

.btn-azul, .btn-azelho, .btn-azelhov2 {
  background-color: var(--vermelho);
  border: none;
  color: white;
}

.btn-azul:hover, .btn-azelho:hover, .btn-azelhov2:hover {
  background-color: var(--vermelho-escuro);
}

/* Gradientes e efeitos vermelhos */
.bg-azul-gradient, .icon-circle-sm, .icon-service-v2 {
  background: linear-gradient(to bottom right, var(--vermelho), var(--vermelho-claro)) !important;
}

.service-card-v2 {
  border: 1px solid rgba(255, 30, 30, 0.15);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.service-card-v2:hover {
  border-color: rgba(255, 30, 30, 0.3);
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2);
}

.service-card-v2::before {
  background: radial-gradient(circle, rgba(255, 30, 30, 0.08) 0%, transparent 70%);
}

/* Barra de rolagem */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--vermelho), var(--vermelho-escuro));
}

* {
  scrollbar-color: var(--vermelho) #0a0a0a;
}

/* Seções específicas */
.porque-escolher {
  background: linear-gradient(to right, #0d0d0d, #111);
}

.underline, .icon-circle {
  background-color: var(--vermelho);
}

/* Formulário */
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--vermelho);
  box-shadow: 0 0 0 0.25rem rgba(255, 30, 30, 0.25);
}

/* Contatos */
.contact-info {
  border: 1px solid rgba(255, 30, 30, 0.2) !important;
  box-shadow: 0 5px 25px rgba(255, 0, 0, 0.15) !important;
}

.contact-info h4 {
  text-shadow: 0 0 10px rgba(255, 30, 30, 0.3);
}

.social-icon {
  background: rgba(255, 30, 30, 0.15) !important;
  color: var(--vermelho-claro) !important;
  border: 1px solid rgba(255, 30, 30, 0.3);
}

.social-icon:hover {
  background: var(--vermelho) !important;
}

/* FAQ */
.accordion-button {
  border: 1px solid rgba(255, 30, 30, 0.3) !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(145deg, #2a0a0a, #121212) !important;
  box-shadow: 0 0 15px rgba(255, 30, 30, 0.3);
  border-bottom: 1px solid var(--vermelho) !important;
}

.accordion-body {
  border-left: 2px solid var(--vermelho);
  border-right: 2px solid var(--vermelho);
  border-bottom: 2px solid var(--vermelho);
}

.accordion-body li::before {
  color: var(--vermelho);
}

/* Footer */
.footer-logo h5::after, .disclaimer {
  border-left: 3px solid var(--vermelho);
}

.payment-methods img:hover {
  filter: grayscale(0) hue-rotate(330deg);
}

/* Dropdown */
.dropdown-menu-dark {
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.dropdown-item:hover {
  background: rgba(255, 30, 30, 0.15) !important;
  color: var(--vermelho) !important;
}

/* Testimonials */
.testimonial-card {
  border: 1px solid rgba(255, 30, 30, 0.15);
}
/* Efeito de brilho vermelho */
.service-card-v2::before,
.accordion-item::before {
  background: radial-gradient(circle at center, 
    rgba(255, 30, 30, 0.08) 0%, 
    transparent 70%) !important;
}

.icon-service-v2,
.icon-circle-sm {
  box-shadow: 0 0 15px rgba(255, 30, 30, 0.4) !important;
}

.accordion-button:not(.collapsed) i {
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.5) !important;
}

.testimonial-card:hover {
  border-color: var(--vermelho);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.client-avatar img {
  border: 2px solid var(--vermelho);
}
.feature-box:hover .icon-circle {
  box-shadow: 0 0 20px rgba(255, 30, 30, 0.6) !important;
}