/**
 * GridService - Design Premium
 * @author Dante Testa (https://dantetesta.com.br)
 * @date 12/12/2024
 * @version 1.0.0
 */

:root {
  --navy-950: #0a0f1e;
  --navy-900: #0f172a;
  --navy-800: #1e3a5f;
  --navy-700: #1e4976;
  /* Paleta Brand Blue (baseada no Logo) */
  --brand-blue: #004587;
  --brand-blue-light: #0082CA;
  --brand-blue-dark: #002E5A;

  /* Paleta Electric (para Glows e Destaques) */
  --electric: #0EA5E9;
  --electric-light: #38BDF8;

  /* Paleta Gold (Restaurada para Detalhes) */
  --gold-400: #FFB800;
  --gold-500: #F59E0B;

  --primary: var(--brand-blue-light);
  /* Azul mais claro como primária para melhor leitura */

  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utilitário para Logo Branco Chapado */
.logo-white-filter {
  filter: brightness(0) invert(1);
}

/* Gradient Text - Azul Vibrante (Cyan -> Azul) */
.gradient-text {
  background: linear-gradient(90deg, var(--electric-light) 0%, var(--brand-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.3));
  /* Glow azul sutil */
}

/* Texto Dourado auxiliar */
.text-gold {
  color: var(--gold-400);
}

.gradient-text-gold {
  background: linear-gradient(90deg, var(--gold-400) 0%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Seleção de texto personalizada */
::selection {
  background: var(--brand-blue);
  color: white;
  text-shadow: none;
}

::-moz-selection {
  background: var(--brand-blue);
  color: white;
  text-shadow: none;
}

/* Texto bicolor para nome da empresa */
.brand-text .brand-grid {
  color: white;
}

.brand-text .brand-manutencao {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue) 50%, var(--brand-blue-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glow sutil em textos importantes */
.text-glow-blue {
  text-shadow: 0 0 40px rgba(14, 165, 233, 0.3);
}

/* ========================================
   HERO COM PARALLAX E EFEITOS
   ======================================== */

/* Garantir visibilidade permanente dos elementos do hero */
.hero .badge,
.hero h1,
.hero p,
.hero .btn-primary,
.hero .btn-outline,
.hero .trust-badge,
.hero-image-container,
.hero-floating-badge {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.hero-bg-parallax {
  overflow: hidden;
}

.hero-bg-img {
  transform: scale(1.1);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.hero-bg-mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-bg-desktop {
    display: none;
  }

  .hero-bg-mobile {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-bg-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .logo-img {
    height: 56px !important;
  }
}

/* Container da imagem de pessoa */
.hero-image-container {
  position: absolute;
  bottom: 0;
  right: 5%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  z-index: 5;
}

/* Área de hover - não mais utilizada */
.hero-image-hover-area {
  display: none;
}

.hero-person-img {
  max-height: 80vh;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: heroPersonEntry 1.2s ease-out forwards, heroPulseGlow 6s ease-in-out 1.5s infinite;
  transform-origin: bottom center;
  position: relative;
  z-index: 5;
  will-change: filter;
  contain: layout style paint;
}

/* Animação de entrada - executa apenas uma vez */
@keyframes heroPersonEntry {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.95);
  }

  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Pulsação suave constante do glow azul - OTIMIZADO */
@keyframes heroPulseGlow {

  0%,
  100% {
    filter:
      drop-shadow(0 0 25px rgba(59, 130, 246, 0.25)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
  }

  50% {
    filter:
      drop-shadow(0 0 40px rgba(59, 130, 246, 0.4)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
  }
}

/* Badges flutuantes */
.hero-floating-badge {
  position: absolute;
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero-badge-1 {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}

.hero-badge-2 {
  bottom: 15%;
  left: 0;
  animation-delay: 2s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Partículas elétricas */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--brand-blue-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand-blue-light), 0 0 20px var(--brand-blue);
  animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  10% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }

  90% {
    opacity: 1;
    transform: translateY(-80px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-100px) scale(0);
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  color: var(--gray-300);
  background: var(--navy-950);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

/* Glassmorphism Card */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-dark {
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gradient Text - Laranja sólido para claro */
/* Glow Effects */
.glow-blue {
  box-shadow: 0 0 60px rgba(14, 165, 233, 0.4), 0 0 100px rgba(14, 165, 233, 0.2);
}

.glow-text {
  text-shadow: 0 0 40px rgba(14, 165, 233, 0.6);
}

/* Premium Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 69, 135, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: var(--electric);
  color: var(--electric);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.3);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.4);
}

/* Header Premium - Liquid Glass Dark Mode */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.header::before,
.header::after {
  display: none;
}

.header.scrolled {
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.85) 0%, rgba(10, 22, 40, 0.9) 50%, rgba(15, 39, 68, 0.85) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 69, 135, 0.15);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(0, 69, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 0.75rem 0;
}

.header.scrolled::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 69, 135, 0.03) 25%,
      rgba(0, 69, 135, 0.05) 50%,
      rgba(0, 69, 135, 0.03) 75%,
      transparent 100%);
  pointer-events: none;
}

.header.scrolled::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 69, 135, 0.4), transparent);
  animation: headerGlow 3s ease-in-out infinite;
}

@keyframes headerGlow {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-blue-light);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-blue-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: rgba(10, 15, 30, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(14, 165, 233, 0.15);
  color: var(--brand-blue-light);
  padding-left: 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(10, 22, 40, 0.85) 50%, rgba(30, 58, 95, 0.75) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--brand-blue-light);
  border-radius: 50%;
  opacity: 0.5;
  animation: float 15s infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.5;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Hero Animations - Entrada Sequencial */
.hero-animate-1 {
  animation: slideUp 0.6s ease-out 0.1s both;
}

.hero-animate-2 {
  animation: slideUp 0.6s ease-out 0.25s both;
}

.hero-animate-3 {
  animation: slideUp 0.6s ease-out 0.4s both;
}

.hero-animate-4 {
  animation: slideUp 0.6s ease-out 0.55s both;
}

.hero-animate-5 {
  animation: slideUp 0.6s ease-out 0.7s both;
}

.hero-animate-image {
  animation: slideInRight 0.8s ease-out 0.3s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

  .hero-animate-1,
  .hero-animate-2,
  .hero-animate-3,
  .hero-animate-4,
  .hero-animate-5,
  .hero-animate-image {
    animation: none;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gray-300);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Floating Badge */
/* Floating Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50px;
  color: var(--gold-400);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Section Styling */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: var(--navy-900);
}

.section-gradient {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}

/* Premium Cards */
.card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-blue-light), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 100px rgba(14, 165, 233, 0.2);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--gray-400);
  line-height: 1.7;
}

/* Service Cards Premium */
.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(14, 165, 233, 0.1);
}

.service-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy-900) 0%, transparent 50%);
}

.service-card-body {
  padding: 1.5rem 2rem 2rem;
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.service-card:hover .service-card-title {
  color: var(--brand-blue-light);
}

.service-card-text {
  color: var(--gray-400);
  font-size: 0.95rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-blue-light);
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
}

.service-card-link svg {
  transition: var(--transition);
}

.service-card:hover .service-card-link svg {
  transform: translateX(5px);
}

/* Service Mini Cards (6 em grid 3x2) */
.service-mini {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  text-decoration: none;
}

.service-mini:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.2);
}

.service-mini-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.service-mini:hover .service-mini-img img {
  transform: scale(1.1);
}

.service-mini-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 30, 0.9) 0%, transparent 60%);
}

.service-mini-content {
  padding: 1rem 1.25rem 1.25rem;
}

.service-mini-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.service-mini-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.service-mini-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-blue-light);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-mini:hover .service-mini-link {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .service-mini-content {
    padding: 0.75rem 1rem;
  }

  .service-mini-title {
    font-size: 0.95rem;
  }

  .service-mini-desc {
    font-size: 0.8rem;
  }
}

/* Serviço Mini Destaque (EPIs) */
.service-mini-featured {
  position: relative;
  border: 1px solid rgba(14, 165, 233, 0.4);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
}

.service-mini-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

.service-mini-featured:hover::before {
  opacity: 1;
}

.service-mini-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

/* Hero Interno (Páginas internas) */
.hero-interno {
  position: relative;
  padding: 140px 0 60px;
  overflow: hidden;
  min-height: 280px;
}

.hero-interno-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-interno-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-interno-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 15, 30, 0.92) 0%,
      rgba(10, 15, 30, 0.85) 40%,
      rgba(10, 20, 40, 0.75) 100%);
}

@media (max-width: 768px) {
  .hero-interno {
    padding: 120px 0 40px;
    min-height: 220px;
  }
}

/* Stats Premium Section */
.stats-premium {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 35px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.3);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.02) 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
  border-radius: 16px;
  color: white;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.stat-name {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .stat-card {
    padding: 20px 25px;
    flex-direction: column;
    text-align: center;
  }

  .stat-value {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .stats-premium {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-card {
    flex-direction: row;
    text-align: left;
  }
}

/* Stats Section (legacy) */
.stats {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 69, 135, 0.1) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-300);
  font-size: 1rem;
  font-weight: 500;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23004587' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Footer Premium */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: var(--brand-blue-light);
  transform: translateX(5px);
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--gray-400);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
  transform: translateY(-3px);
}

/* Mobile Menu - Premium Design */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, rgba(10, 15, 30, 0.99) 0%, rgba(5, 10, 25, 0.99) 100%);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: none;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.25rem;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
}

.mobile-menu-nav {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  width: 100%;
  cursor: pointer;
  min-height: 56px;
}

.mobile-menu-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.mobile-menu-link.active {
  background: rgba(14, 165, 233, 0.1);
  color: var(--brand-blue-light);
}

.mobile-menu-link svg:first-child {
  color: var(--brand-blue-light);
  flex-shrink: 0;
}

.mobile-menu-toggle {
  justify-content: flex-start;
}

.mobile-menu-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.4);
}

.mobile-menu-dropdown.open .mobile-menu-arrow {
  transform: rotate(180deg);
}

.mobile-menu-submenu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 8px 20px;
  margin-left: 20px;
  border-left: 2px solid rgba(14, 165, 233, 0.2);
}

.mobile-menu-dropdown.open .mobile-menu-submenu {
  display: flex;
}

.mobile-submenu-link {
  display: block;
  padding: 14px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  min-height: 48px;
}

.mobile-submenu-link:hover {
  background: rgba(14, 165, 233, 0.1);
  color: var(--brand-blue-light);
}

.mobile-menu-cta {
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.mobile-menu-emergency {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-emergency-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-emergency-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-blue-light);
  text-decoration: none;
}

.mobile-emergency-phone:hover {
  color: var(--gold-300);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  background: transparent;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 69, 135, 0.4);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 998;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Form Styling */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gray-300);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-blue-light);
  box-shadow: 0 0 0 3px rgba(0, 69, 135, 0.2);
}

.form-input::placeholder {
  color: var(--gray-400);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* Responsive */
@media (max-width: 1024px) {
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .card {
    padding: 1.5rem;
  }
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--brand-blue);
  color: white;
  padding: 1rem;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

/* Print */
@media print {
  .no-print {
    display: none !important;
  }
}

/* ========================================
   EFEITOS ELÉTRICOS AVANÇADOS
   ======================================== */

/* Efeito Glow no Cursor - acompanha o mouse */
.electric-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--brand-blue-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, border-color 0.2s ease, width 0.2s ease, height 0.2s ease;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.6), inset 0 0 10px rgba(14, 165, 233, 0.2);
}

.electric-cursor.active {
  width: 50px;
  height: 50px;
  border-color: rgba(14, 165, 233, 0.5);
  background: rgba(14, 165, 233, 0.1);
}

/* Glow ao redor do cursor */
.electric-cursor-glow {
  position: fixed;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, rgba(14, 165, 233, 0.1) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: cursorPulse 2s ease-in-out infinite;
}

@keyframes cursorPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
}

/* Trail de energia */
.electric-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, var(--brand-blue-light) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

/* Canvas para sparks */
.electric-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* Ondas de energia - REMOVIDO */

/* Linhas de energia SVG - REMOVIDO */

/* Flash elétrico em hover */
.electric-flash {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: inherit;
}

/* Hero Clean com efeitos elétricos */
.hero-electric {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-800) 100%);
}

/* Garantir visibilidade de todos elementos do hero */
.hero-electric .max-w-2xl {
  overflow: visible;
}

.hero-electric .btn-primary,
.hero-electric .btn-outline {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
  z-index: 10;
}

.hero-electric .trust-badge {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  z-index: 10;
}

.hero-electric .badge,
.hero-electric h1,
.hero-electric p {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 5;
}

.hero-electric::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(0, 69, 135, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-electric::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(30, 58, 95, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid elétrico interativo */
.electric-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 10;
}

.electric-grid canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Faísca individual */
.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: sparkBurst 0.8s ease-out forwards;
}

.spark-blue {
  background: var(--brand-blue-light);
  box-shadow: 0 0 6px var(--brand-blue-light), 0 0 12px var(--brand-blue);
}

.spark-blue {
  background: #60a5fa;
  box-shadow: 0 0 6px #60a5fa, 0 0 12px #3b82f6;
}

@keyframes sparkBurst {
  0% {
    opacity: 1;
    transform: scale(1) translate(0, 0);
  }

  100% {
    opacity: 0;
    transform: scale(0.5) translate(var(--tx), var(--ty));
  }
}

/* Efeito de pulso no título */
.electric-title {
  position: relative;
}

.electric-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue-light), transparent);
  animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {

  0%,
  100% {
    width: 120px;
    opacity: 1;
  }

  50% {
    width: 200px;
    opacity: 0.7;
  }
}

/* Trust badges com glow */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-2px);
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0.1) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue-light);
}

@media (max-width: 640px) {
  .trust-badge {
    gap: 0.4rem;
    padding: 0.5rem 0.65rem;
    font-size: 0.75rem;
  }

  .trust-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  .trust-badge-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* Botão com efeito elétrico */
.btn-electric {
  position: relative;
  overflow: hidden;
}

.btn-electric::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: none;
}

.btn-electric:hover::before {
  animation: electricShine 0.6s ease;
}

@keyframes electricShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Cursor nativo permanece visível - efeitos elétricos são adicionais */

/* ========================================
   LIGHTBOX PREMIUM
   ======================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 120px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-nav:hover {
  background: rgba(14, 165, 233, 0.2);
  border-color: var(--brand-blue);
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.3);
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(14, 165, 233, 0.1);
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-loader {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-loader.active {
  display: flex;
}

.electric-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(14, 165, 233, 0.2);
  border-top-color: var(--brand-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.lightbox-caption {
  margin-top: 20px;
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}

.lightbox-counter {
  display: none;
}

.lightbox-thumbnails {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  max-width: 90%;
  overflow-x: auto;
  padding: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-blue) transparent;
}

.lightbox-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-thumb:hover {
  opacity: 0.8;
}

.lightbox-thumb.active {
  border-color: var(--brand-blue);
  opacity: 1;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

/* Gallery Items com efeito elétrico */
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(14, 165, 233, 0.1);
  transform: translateY(-5px);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
  pointer-events: none;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* Ícone de zoom */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: rgba(14, 165, 233, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0zM10 7v3m0 0v3m0-3h3m-3 0H7'/%3E%3C/svg%3E");
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Responsivo Lightbox */
@media (max-width: 768px) {
  .lightbox-container {
    padding: 60px 20px 140px;
  }

  .lightbox-nav {
    width: 45px;
    height: 45px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-thumb {
    width: 50px;
    height: 50px;
  }

  .lightbox-image {
    max-height: 60vh;
  }
}

/* ========================================
   FOOTER PREMIUM COM PARALLAX
   ======================================== */

.footer-premium {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Background Parallax */
.footer-parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-parallax-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-10%);
  transition: transform 0.1s linear;
}

.footer-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 15, 30, 0.97) 0%,
      rgba(15, 25, 45, 0.95) 25%,
      rgba(10, 20, 40, 0.96) 50%,
      rgba(8, 15, 35, 0.95) 75%,
      rgba(10, 15, 30, 0.97) 100%);
  background-size: 400% 400%;
  animation: footerGradientShift 15s ease infinite;
  transition: all 0.6s ease;
}

@keyframes footerGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Spotlight do mouse no footer */
.footer-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.footer-premium:hover .footer-spotlight {
  opacity: 1;
}

/* Linha elétrica animada */
.footer-electric-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--brand-blue) 20%,
      var(--brand-blue-light) 50%,
      var(--brand-blue) 80%,
      transparent 100%);
  z-index: 2;
  animation: electricPulse 3s ease-in-out infinite;
}

.footer-electric-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(10px);
  opacity: 0.7;
}

.footer-electric-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: electricSweep 2s ease-in-out infinite;
}

@keyframes electricPulse {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
  }
}

@keyframes electricSweep {
  0% {
    left: -50%;
  }

  100% {
    left: 150%;
  }
}

/* Conteúdo do Footer */
.footer-content {
  position: relative;
  z-index: 1;
  padding: 50px 5% 20px;
  width: 100%;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.footer-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.footer-col {
  display: flex;
  align-items: center;
}

.footer-col-left {
  justify-content: flex-start;
  text-align: left;
}

.footer-col-center {
  justify-content: center;
  min-width: 0;
}

.footer-col-left .footer-brand {
  text-align: left;
}

.footer-col-left .footer-tagline {
  text-align: left;
}

/* Logo e Tagline */
.footer-brand {
  opacity: 0;
  transform: translateY(30px);
}

.footer-brand.animate {
  animation: footerSlideUp 0.8s ease forwards;
}

.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.footer-logo-text:hover .brand-manutencao {
  filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.8));
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 300px;
  transition: all 0.3s ease;
  cursor: default;
}

.footer-tagline:hover {
  color: var(--brand-blue-light);
  text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

/* Contatos */
.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(30px);
}

.footer-contacts.animate {
  animation: footerSlideUp 0.8s ease 0.2s forwards;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  overflow: hidden;
}

.footer-contact-item .footer-contact-label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact-item:hover {
  gap: 12px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  border-color: var(--brand-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(255, 255, 255, 0.2);
}

.footer-contact-item:hover .footer-contact-label {
  max-width: 300px;
  opacity: 1;
}

/* Botão Como Chegar */
.footer-directions {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
}

.footer-directions:hover {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  border-color: var(--brand-blue);
  color: white;
}

.footer-directions:hover .footer-contact-icon {
  background: rgba(255, 255, 255, 0.2);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Redes Sociais */
.footer-social {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  justify-content: flex-end;
}

.footer-social.animate {
  animation: footerSlideUp 0.8s ease 0.4s forwards;
}

.footer-social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.footer-social-link:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: var(--brand-blue);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4), 0 0 20px rgba(14, 165, 233, 0.3);
}

.footer-social-link:hover::before {
  opacity: 1;
}

.footer-social-link svg {
  position: relative;
  z-index: 1;
}

/* Rodapé Final - Barra inferior */
.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 0 10px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.footer-dev-credits {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
}

.vibe-coding {
  background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #ff6b6b);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: vibeGradient 3s ease infinite;
  font-weight: 600;
}

@keyframes vibeGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.dev-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
  position: relative;
  padding: 2px 6px;
  border-radius: 4px;
}

.dev-link:hover {
  color: white;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.footer-dev a:hover {
  color: var(--gold-300);
  text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.footer-dev a:hover::after {
  width: 100%;
}

/* Animação de entrada */
@keyframes footerSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo Footer */
@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {

  /* Footer Mobile - Layout compacto e elegante */
  .footer-content {
    padding: 40px 20px 30px;
  }

  .footer-main {
    gap: 24px;
  }

  .footer-grid-3 {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-col {
    width: 100%;
    justify-content: center;
  }

  .footer-col-left {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand {
    text-align: center;
    align-items: center;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
  }

  .footer-brand .footer-logo {
    height: 48px;
  }

  .footer-logo-text {
    font-size: 1.8rem;
    justify-content: center;
  }

  .footer-tagline {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 4px;
  }

  /* 3 colunas: ícone tel, ícone email, Como Chegar */
  .footer-contacts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .footer-contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 12px;
    justify-content: center;
    gap: 8px;
  }

  /* Telefone e Email: só ícone no mobile */
  .footer-contact-icon-only {
    padding: 12px;
  }

  .footer-contact-icon-only .footer-contact-label {
    display: none;
  }

  /* Como Chegar também só ícone no mobile */
  .footer-directions {
    padding: 12px;
  }

  .footer-directions .footer-contact-label {
    display: none;
  }

  .footer-contact-item:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
  }

  .footer-contact-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    border: none;
  }

  .footer-contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer-social {
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
  }

  .footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom-bar {
    padding: 16px 0;
    gap: 4px;
  }

  .footer-copyright {
    font-size: 0.7rem;
  }

  .footer-dev-credits {
    font-size: 0.65rem;
  }
}

/* Hero Mobile - Melhorias */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-content {
    text-align: left;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: auto;
    min-width: 220px;
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-stats {
    margin-top: 32px;
    gap: 8px;
  }

  .hero-stat-item {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .hero-image-container {
    display: flex;
    right: -15%;
    height: 60%;
    bottom: 0;
    opacity: 0.4;
    z-index: 2;
  }

  .hero-person-img {
    max-height: 50vh;
  }

  .hero-floating-badge {
    display: none;
  }

  .hero-bg-img {
    object-position: center bottom;
  }
}

/* ========================================
   MAPA GOOGLE MAPS DARK MODE
   ======================================== */

.map-section {
  position: relative;
  width: 100%;
  margin-top: 60px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.map-iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg) brightness(0.95) contrast(0.9) saturate(0.3);
}

/* Overlays de gradiente */
.map-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--navy-950) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.map-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--navy-950) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Card flutuante */
.map-floating-card {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: floatCard 3s ease-in-out infinite;
}

.map-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Overlay para clique */
.map-click-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 30, 0.3);
  backdrop-filter: blur(1px);
  cursor: pointer;
  transition: all 0.4s ease;
}

.map-click-overlay:hover {
  background: rgba(10, 15, 30, 0.1);
  backdrop-filter: blur(0);
}

.map-click-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.map-click-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.map-click-overlay:hover .map-click-hint {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: scale(1.05);
}

/* Linha elétrica animada no mapa */
.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
  z-index: 10;
  animation: mapElectricLine 3s ease-in-out infinite;
}

@keyframes mapElectricLine {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .map-container {
    height: 400px;
  }

  .map-floating-card {
    top: 20px;
    left: 20px;
    right: 20px;
    padding: 12px 16px;
  }

  .map-card-icon {
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   COOKIE CONSENT BANNER (LGPD)
   ======================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 15, 30, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(14, 165, 233, 0.3);
  padding: 16px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-content p {
  flex: 1;
  min-width: 300px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

.cookie-link {
  color: var(--brand-blue-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cookie-link:hover {
  color: var(--gold-300);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--brand-blue);
  color: white;
}

.cookie-btn-accept:hover {
  background: var(--brand-blue-light);
  transform: translateY(-1px);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
  .cookie-consent {
    padding: 16px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    min-width: auto;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   PROSE LEGAL (PÁGINAS JURÍDICAS)
   ======================================== */
.prose-legal {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.prose-legal h2 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prose-legal h2:first-child {
  margin-top: 0;
}

.prose-legal p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.prose-legal ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose-legal li {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.prose-legal li::marker {
  color: var(--brand-blue-light);
}

.prose-legal strong {
  color: white;
}

.prose-legal a {
  color: var(--brand-blue-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.prose-legal a:hover {
  color: var(--gold-300);
  text-decoration: underline;
}

/* Botão Flutuante LGPD */
.cookie-float-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: rgba(10, 15, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cookie-float-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.cookie-float-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
  transform: scale(1.1);
}

.cookie-float-btn svg {
  width: 18px;
  height: 18px;
}

/* Carrossel de Serviços */
.service-carousel {
  position: relative;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 50%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.carousel-slide img:hover {
  transform: scale(1.02);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(10, 15, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--brand-blue);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .carousel-slide {
    min-width: 100%;
  }

  .carousel-slide img {
    height: 200px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .carousel-prev {
    left: 0.5rem;
  }

  .carousel-next {
    right: 0.5rem;
  }
}

/* ========================================
   CARD CTA GALERIA - FULL IMAGE + HOVER
   ======================================== */
.service-mini-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-mini-gallery:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
}

.service-mini-gallery .gallery-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-mini-gallery .gallery-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.service-mini-gallery:hover .gallery-bg {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.gallery-cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.75) 0%, rgba(10, 22, 40, 0.85) 100%);
  z-index: 2;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.service-mini-gallery:hover .gallery-cta-overlay {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.4) 0%, rgba(10, 22, 40, 0.7) 100%);
}

.gallery-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.service-mini-gallery:hover .gallery-cta-title {
  transform: translateY(-5px);
  text-shadow: 0 4px 20px rgba(14, 165, 233, 0.5);
}

.gallery-cta-btn {
  display: inline-block;
  background: var(--brand-blue);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.service-mini:hover .gallery-cta-btn {
  transform: scale(1.05);
}

/* Efeito de brilho no hover */
.service-mini-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: 3;
  transition: left 0.6s ease;
  pointer-events: none;
}

.service-mini-gallery:hover::before {
  left: 100%;
}

/* Borda animada */
.service-mini-gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 4;
}

.service-mini-gallery:hover::after {
  border-color: var(--brand-blue);
  box-shadow: inset 0 0 20px rgba(14, 165, 233, 0.3);
}

/* Card Galeria Full - apenas foto + overlay + título + botão */
.gallery-card-full {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
  transition: all 0.4s ease;
}

.gallery-card-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-card-full:hover .gallery-card-bg {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.85) 100%);
  padding: 2rem;
  text-align: center;
}

.gallery-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-card-btn {
  display: inline-block;
  background: var(--brand-blue);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.gallery-card-full:hover .gallery-card-btn {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}