/* =====================================================
   CELESTIAL SERVIÇOS - Site Institucional
   ===================================================== */

:root {
  /* Cores de Destaque - Paleta Oficial Celestial Serviços */
  --amarelo-destaque: #F2C200;
  --preto-base: #0D0D0D;
  --branco-limpeza: #FFFFFF;
  
  /* Cores Institucionais */
  --azul-profundo: #1F4E79;
  --verde-limpeza: #12A05C;
  --azul-claro-brilho: #1BB3B3;
  
  /* Cinzas de Apoio */
  --cinza-claro: #E6E6E6;
  --cinza-medio: #BFBFBF;
  --cinza-escuro: #4D4D4D;
  
  /* Aliases para compatibilidade */
  --roxo-escuro: var(--preto-base);
  --verde-principal: var(--verde-limpeza);
  --verde-escuro: #0F8A4D;
  --amarelo: var(--amarelo-destaque);
  --texto-escuro: var(--preto-base);
  --texto-claro: var(--cinza-escuro);
  --branco: var(--branco-limpeza);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--texto-escuro);
  background: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Esconde qualquer texto que possa vazar entre header e hero */
body > *:not(nav):not(main):not(footer):not(script):not(style) {
  display: none !important;
}

/* =====================================================
   HEADER / NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--branco-limpeza);
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-top {
  background: var(--preto-base);
  padding: 0.86rem 0;
  font-size: 0.98rem;
  overflow: hidden;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(242,194,0,0.2);
}

.navbar-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.15rem;
}

.navbar-contact {
  display: flex;
  gap: 2.3rem;
  align-items: center;
  flex-wrap: wrap;
}

.navbar-contact-item {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.navbar-contact-item i {
  font-size: 1.15rem;
  color: var(--amarelo-destaque);
  transition: transform 0.3s;
}

.navbar-contact-item:hover {
  color: var(--amarelo-destaque);
}

.navbar-contact-item:hover i {
  transform: scale(1.2);
}

.navbar-hours {
  cursor: default;
}

.navbar-hours:hover {
  color: rgba(255,255,255,0.9);
}

.navbar-social {
  display: flex;
  gap: 0.86rem;
  align-items: center;
  flex-shrink: 0;
}

.navbar-social-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.98rem;
  margin-right: 0.58rem;
  font-weight: 600;
}

.navbar-social-link {
  width: 37px;
  height: 37px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 1.09rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.navbar-social-link:hover {
  background: var(--amarelo-destaque);
  color: var(--preto-base);
  border-color: var(--amarelo-destaque);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242,194,0,0.3);
}

.nav-main {
  padding: 1.15rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 57.5px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.3rem;
  margin: 0;
}

.nav-menu a {
  color: var(--preto-base);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.09rem;
  transition: color 0.3s;
  text-transform: uppercase;
}

.nav-menu a:hover {
  color: var(--amarelo-destaque);
}

.nav-actions {
  display: flex;
  gap: 1.15rem;
  align-items: center;
}

.btn-whatsapp-nav {
  background: var(--verde-limpeza);
  color: white;
  padding: 0.69rem 1.73rem;
  border-radius: 28.75px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.09rem;
  display: flex;
  align-items: center;
  gap: 0.58rem;
  transition: all 0.3s;
}

.btn-whatsapp-nav:hover {
  background: #0F8A4D;
  transform: translateY(-2px);
}

/* =====================================================
   MENU MOBILE
   ===================================================== */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

/* Mobile: mostrar menu mobile apenas em telas pequenas */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* Desktop: esconder botão hamburger */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--preto-base);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
  background: var(--verde-limpeza);
}

/* Overlay */
.mobile-menu-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0,0,0,0.7) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  z-index: 9998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
}

.mobile-menu-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Menu Mobile */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 320px !important;
  max-width: 85% !important;
  height: 100vh !important;
  background: var(--branco-limpeza) !important;
  z-index: 9999 !important;
  transform: translateX(-100%) !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 5px 0 30px rgba(0,0,0,0.3) !important;
  overflow-y: auto !important;
}

.mobile-menu.active {
  transform: translateX(0) !important;
}

body.menu-open {
  overflow: hidden;
}

/* Header do Menu */
.mobile-menu-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 1.2rem 1rem !important;
  background: var(--preto-base) !important;
  border-bottom: 2px solid var(--amarelo-destaque) !important;
  flex-shrink: 0 !important;
  min-height: 70px !important;
}

.mobile-menu-logo img {
  height: 45px !important;
  width: auto !important;
}

.mobile-menu-close {
  width: 38px !important;
  height: 38px !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
}

.mobile-menu-close:hover {
  background: var(--amarelo-destaque) !important;
  color: var(--preto-base) !important;
  border-color: var(--amarelo-destaque) !important;
  transform: rotate(90deg) !important;
}

/* Conteúdo do Menu */
.mobile-menu-content {
  flex: 1 !important;
  padding: 1rem !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

/* Navegação */
.mobile-menu-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
  margin-bottom: 0 !important;
}

.mobile-menu-link {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.6rem 0.75rem !important;
  background: transparent !important;
  border: none !important;
  border-radius: 8px !important;
  color: var(--preto-base) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.mobile-menu-link::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 3px !important;
  height: 100% !important;
  background: var(--amarelo-destaque) !important;
  transform: scaleY(0) !important;
  transition: transform 0.3s ease !important;
}

.mobile-menu-link:hover::before,
.mobile-menu-link:active::before {
  transform: scaleY(1) !important;
}

.mobile-menu-link i:first-child {
  font-size: 1.1rem !important;
  color: var(--verde-limpeza) !important;
  transition: all 0.3s !important;
}

.mobile-menu-link span {
  flex: 1 !important;
}

.mobile-menu-link i:last-child {
  font-size: 0.85rem !important;
  color: var(--texto-claro) !important;
  transition: transform 0.3s !important;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
  background: rgba(242,194,0,0.1) !important;
  transform: translateX(5px) !important;
}

.mobile-menu-link:hover i:first-child {
  color: var(--amarelo-destaque) !important;
  transform: scale(1.15) !important;
}

.mobile-menu-link:hover i:last-child {
  transform: translateX(5px) !important;
}

/* Contato */
.mobile-menu-contact {
  background: rgba(255,255,255,0.5) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.75rem !important;
  margin-bottom: 0 !important;
}

.mobile-menu-contact h4 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--preto-base) !important;
  margin-bottom: 0.6rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.mobile-menu-contact h4::before {
  content: '' !important;
  width: 3px !important;
  height: 14px !important;
  background: var(--amarelo-destaque) !important;
  border-radius: 2px !important;
}

.mobile-contact-item {
  display: flex !important;
  gap: 0.6rem !important;
  padding: 0.45rem 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.05) !important;
  text-decoration: none !important;
  color: var(--preto-base) !important;
  transition: all 0.3s !important;
}

.mobile-contact-item:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.mobile-contact-item i {
  font-size: 0.95rem !important;
  color: var(--verde-limpeza) !important;
  flex-shrink: 0 !important;
  margin-top: 0.1rem !important;
}

.mobile-contact-item div {
  flex: 1 !important;
}

.mobile-contact-label {
  display: block !important;
  font-size: 0.75rem !important;
  color: var(--texto-claro) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-weight: 600 !important;
  margin-bottom: 0.1rem !important;
}

.mobile-contact-value {
  display: block !important;
  font-size: 0.88rem !important;
  color: var(--preto-base) !important;
  font-weight: 500 !important;
}

.mobile-contact-item:hover {
  padding-left: 0.5rem !important;
}

.mobile-contact-item:hover i {
  color: var(--amarelo-destaque) !important;
  transform: scale(1.15) !important;
}

/* Botão WhatsApp */
.mobile-menu-whatsapp {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.6rem !important;
  background: linear-gradient(135deg, var(--verde-limpeza) 0%, #0F8A4D 100%) !important;
  color: white !important;
  padding: 0.75rem !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  margin-bottom: 0 !important;
  box-shadow: 0 6px 20px rgba(18,160,92,0.3) !important;
  transition: all 0.3s ease !important;
}

.mobile-menu-whatsapp i {
  font-size: 1.3rem !important;
}

.mobile-menu-whatsapp:hover,
.mobile-menu-whatsapp:active {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(18,160,92,0.4) !important;
}

/* Redes Sociais */
.mobile-menu-social {
  text-align: center !important;
  padding: 0.75rem 0 0 0 !important;
  border-top: 1px solid rgba(0,0,0,0.05) !important;
}

.mobile-social-label {
  display: block !important;
  font-size: 0.8rem !important;
  color: var(--texto-claro) !important;
  margin-bottom: 0.6rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.mobile-social-links {
  display: flex !important;
  justify-content: center !important;
  gap: 0.65rem !important;
}

.mobile-social-links a {
  width: 36px !important;
  height: 36px !important;
  background: rgba(255,255,255,0.5) !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--preto-base) !important;
  font-size: 1.05rem !important;
  transition: all 0.3s ease !important;
}

.mobile-social-links a:hover,
.mobile-social-links a:active {
  background: var(--amarelo-destaque) !important;
  color: var(--preto-base) !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 6px 15px rgba(242,194,0,0.3) !important;
}

/* Footer do Menu */
.mobile-menu-footer {
  padding: 0.85rem !important;
  background: var(--cinza-claro) !important;
  text-align: center !important;
  border-top: 2px solid var(--cinza-medio) !important;
  flex-shrink: 0 !important;
}

.mobile-menu-footer p {
  margin: 0 !important;
  font-size: 0.85rem !important;
  color: var(--texto-claro) !important;
}

.mobile-menu-footer p:first-child {
  margin-bottom: 0.35rem !important;
  font-weight: 600 !important;
  color: var(--preto-base) !important;
}

.mobile-menu-dev {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
}

.mobile-menu-dev span {
  color: var(--texto-claro) !important;
}

.mobile-menu-feyth-logo {
  height: 18px !important;
  width: auto !important;
  transition: all 0.3s ease !important;
  filter: brightness(0.8) !important;
}

.mobile-menu-dev:hover .mobile-menu-feyth-logo {
  filter: brightness(1.2) !important;
  transform: scale(1.1) !important;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  margin-top: 0;
  padding-top: 250px;
  padding-bottom: 100px;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--preto-base) 0%, #1a1a1a 100%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.4) 50%, rgba(13,13,13,0.45) 100%);
  z-index: 1;
}

/* Elementos decorativos */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242,194,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27,179,179,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.hero-content {
  max-width: 800px;
  text-align: left;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Título */
.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
  text-align: left;
}

.hero-title-highlight {
  color: var(--amarelo-destaque);
  display: block;
  margin-top: 0.5rem;
  position: relative;
  text-align: left;
}

/* Descrição */
.hero-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  max-width: 700px;
  text-align: left;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(18,160,92,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(18,160,92,0.3);
  color: var(--amarelo-destaque);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge i {
  font-size: 1.2rem;
  color: var(--verde-limpeza);
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #E6B000 100%);
  color: var(--preto-base);
  box-shadow: 0 8px 25px rgba(242,194,0,0.4);
}

.btn-hero-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: left 0.5s;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(242,194,0,0.5);
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-hero-secondary:hover {
  background: var(--verde-limpeza);
  border-color: var(--verde-limpeza);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(18,160,92,0.4);
}

.btn-hero-primary i,
.btn-hero-secondary i {
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.btn-hero-primary:hover i,
.btn-hero-secondary:hover i {
  transform: scale(1.1);
}

/* Features rápidas */
.hero-features {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.3s both;
  justify-content: flex-start;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
}

.hero-feature i {
  font-size: 1.5rem;
  color: var(--azul-claro-brilho);
  background: rgba(27,179,179,0.15);
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(27,179,179,0.3);
}

/* Partículas decorativas */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--amarelo-destaque);
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; }

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* =====================================================
   BARRA DE SERVIÇOS ANIMADA
   ===================================================== */
.services-bar {
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #FFD700 100%);
  color: var(--preto-base);
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(242, 194, 0, 0.3);
}

.services-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(13, 13, 13, 0.2) 50%, 
    transparent 100%);
}

.services-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(13, 13, 13, 0.2) 50%, 
    transparent 100%);
}

.services-scroll {
  display: flex;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}

.services-scroll span {
  padding: 0 4rem;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.services-scroll span::before {
  content: '✦';
  color: var(--preto-base);
  font-size: 1.5rem;
  opacity: 0.6;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { 
    opacity: 0.6;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.2);
  }
}

/* =====================================================
   SEÇÃO SERVIÇOS
   ===================================================== */
.section-py {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--verde-principal);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--texto-escuro);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--texto-claro);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border: 1px solid var(--cinza-medio);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: var(--verde-limpeza);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #E6B000 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--preto-base);
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--texto-escuro);
  min-height: 60px;
}

.service-card p {
  color: var(--texto-claro);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--verde-limpeza);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: auto;
}

.btn-service:hover {
  color: var(--amarelo-destaque);
  gap: 0.75rem;
}

.btn-service i {
  transition: transform 0.3s;
}

.btn-service:hover i {
  transform: translateX(5px);
}

/* =====================================================
   ESTATÍSTICAS
   ===================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--preto-base) 0%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242,194,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(18,160,92,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite reverse;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 3rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--amarelo-destaque) 0%, var(--verde-limpeza) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.08);
  border-color: var(--amarelo-destaque);
  box-shadow: 0 20px 40px rgba(242,194,0,0.2);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #E6B000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--preto-base);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(242,194,0,0.3);
}

.stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 15px 40px rgba(242,194,0,0.5);
}

.stat-item h2 {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  text-shadow: 0 4px 20px rgba(242,194,0,0.3);
}

.stat-plus {
  font-size: 3rem;
  font-weight: 800;
  color: var(--amarelo-destaque);
  margin-left: 0.25rem;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.stat-item p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.stat-bar {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde-limpeza) 0%, var(--azul-claro-brilho) 100%);
  margin-top: 1.5rem;
  border-radius: 2px;
  transition: width 1.5s ease-out;
  box-shadow: 0 0 10px var(--verde-limpeza);
}

/* =====================================================
   SEÇÃO POR QUE TERCEIRIZAR
   ===================================================== */
.why-section {
  background: var(--branco-limpeza);
  color: var(--texto-escuro);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242,194,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(18,160,92,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite reverse;
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.why-section .section-title {
  color: var(--preto-base);
}

.why-section .section-description {
  color: var(--texto-claro);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  border: 2px solid var(--cinza-claro);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--amarelo-destaque) 0%, var(--verde-limpeza) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--amarelo-destaque);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--verde-limpeza) 0%, #0F8A4D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(18,160,92,0.3);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 15px 40px rgba(18,160,92,0.5);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--preto-base);
  font-weight: 700;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--texto-claro);
}

/* =====================================================
   SEÇÃO DE NOTÍCIAS
   ===================================================== */
.news-section {
  background: var(--cinza-claro);
  position: relative;
  overflow: hidden;
}

.news-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(27,179,179,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #E6B000 100%);
  color: var(--preto-base);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(242,194,0,0.4);
  z-index: 2;
}

.news-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.news-date,
.news-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--texto-claro);
  font-size: 0.9rem;
}

.news-date i,
.news-author i {
  color: var(--verde-limpeza);
  font-size: 1rem;
}

.news-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.5rem;
}

.news-excerpt {
  color: var(--texto-claro);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--verde-limpeza);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.news-link:hover {
  color: var(--amarelo-destaque);
  gap: 0.75rem;
}

.news-link i {
  transition: transform 0.3s ease;
}

.news-link:hover i {
  transform: translateX(5px);
}

/* Botão primário */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--verde-limpeza) 0%, #0F8A4D 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(18,160,92,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(18,160,92,0.4);
  background: linear-gradient(135deg, #0F8A4D 0%, var(--verde-limpeza) 100%);
}

/* =====================================================
   SEÇÃO DE DEPOIMENTOS
   ===================================================== */
.testimonials-section {
  background: var(--branco-limpeza);
  position: relative;
  overflow: hidden;
}

/* =====================================================
   BOTÃO WHATSAPP FLUTUANTE
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float i {
  font-size: 2rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.6);
  color: white;
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--preto-base);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  font-size: 0.9rem;
  font-weight: 600;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* =====================================================
   SEÇÃO DE DEPOIMENTOS
   ===================================================== */
.testimonials-section {
  background: var(--branco-limpeza);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242,194,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 60px;
  overflow: visible;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  overflow: visible;
  padding-top: 30px;
}

.testimonial-card {
  min-width: 100%;
  width: 100%;
  background: white;
  border: 2px solid var(--cinza-claro);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-card:not(:last-child) {
  margin-right: 30px;
}

/* Máscara para esconder os cards laterais mas mostrar um pedaço */
.testimonials-slider-wrapper::before,
.testimonials-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.testimonials-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--branco-limpeza) 0%, transparent 100%);
}

.testimonials-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--branco-limpeza) 0%, transparent 100%);
}

.testimonial-card:hover {
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  border-color: var(--amarelo-destaque);
}

.testimonial-quote {
  position: absolute;
  top: -20px;
  left: 3rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #E6B000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--preto-base);
  box-shadow: 0 8px 25px rgba(242,194,0,0.4);
}

.testimonial-stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--amarelo-destaque);
}

.testimonial-stars i {
  transition: transform 0.2s;
}

.testimonial-card:hover .testimonial-stars i {
  transform: scale(1.1);
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--texto-escuro);
  margin-bottom: 2rem;
  font-style: italic;
  min-height: 120px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--cinza-claro);
}

.author-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--verde-limpeza) 0%, #0F8A4D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(18,160,92,0.3);
  transition: transform 0.3s;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
}

.author-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 1rem;
  color: var(--texto-claro);
  margin: 0;
}

/* Botões do slider */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--cinza-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--preto-base);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-btn:hover {
  background: var(--verde-limpeza);
  color: white;
  border-color: var(--verde-limpeza);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(18,160,92,0.3);
}

.slider-btn-prev {
  left: 0;
}

.slider-btn-next {
  right: 0;
}

/* Indicadores */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background: var(--cinza-medio);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: var(--verde-limpeza);
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--verde-limpeza);
  width: 30px;
  border-radius: 6px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--preto-base);
  color: white;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242,194,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.footer-main {
  padding-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

/* Logo e Sobre */
.footer-about {
  max-width: 350px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo-img {
  height: 60px;
  width: auto;
}

.footer-description {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Redes Sociais */
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
  background: var(--amarelo-destaque);
  color: var(--preto-base);
  border-color: var(--amarelo-destaque);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(242,194,0,0.3);
}

/* Títulos das Colunas */
.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--amarelo-destaque) 0%, var(--verde-limpeza) 100%);
  border-radius: 2px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--amarelo-destaque);
  padding-left: 0.5rem;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contato */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.footer-contact-item i {
  font-size: 1.3rem;
  color: var(--amarelo-destaque);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact-item div {
  flex-grow: 1;
}

.footer-contact-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-contact-item a:hover {
  color: var(--amarelo-destaque);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copyright {
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-size: 0.9rem;
}

.footer-copyright strong {
  color: var(--amarelo-destaque);
  font-weight: 700;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--amarelo-destaque);
}

.footer-divider {
  color: rgba(255,255,255,0.3);
}

.footer-dev {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-dev span {
  color: rgba(255,255,255,0.6);
}

.footer-feyth-logo {
  height: 20px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(0.8);
}

.footer-dev:hover .footer-feyth-logo {
  filter: brightness(1.2);
  transform: scale(1.1);
}

/* =====================================================
   UTILITÁRIOS
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 768px) {
  /* Header Mobile - Esconder barra superior */
  .navbar-top {
    display: none !important;
  }
  
  /* Esconder menu desktop no mobile */
  .nav-menu {
    display: none !important;
  }
  
  .btn-whatsapp-nav {
    display: none !important;
  }
  
  /* Mostrar botão hamburger no mobile */
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  /* Ajustar logo no mobile */
  .nav-logo img {
    height: 45px;
  }
  
  /* Ajustar padding do nav-main */
  .nav-main {
    padding: 1rem 0;
  }
  
  .hero {
    min-height: 700px;
    padding-top: 220px;
    padding-bottom: 80px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-badge {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }
  
  /* Ticker Mobile - Ajustar espaçamento */
  .services-bar {
    padding: 1.5rem 0;
  }
  
  .services-scroll span {
    padding: 0 2.5rem;
    font-size: 1rem;
    gap: 1rem;
  }
  
  .services-scroll span::before {
    font-size: 1.2rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 1.1rem 2rem;
    font-size: 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero::before,
  .hero::after {
    width: 300px;
    height: 300px;
  }
  
  .hero-particles {
    display: none;
  }
  
  .stats-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .news-image {
    height: 200px;
  }
  
  .news-title {
    font-size: 1.2rem;
  }
  
  .testimonials-slider-wrapper {
    padding: 0 50px;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
    min-height: auto;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .author-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-about {
    max-width: 100%;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .nav-menu {
    display: none;
  }
}

/* =====================================================
   CLASSES UTILITÁRIAS
   ===================================================== */

/* Seção Subtitle (usado em várias páginas) */
.section-subtitle-blue {
  color: var(--blue-light);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

/* Breadcrumb Span */
.breadcrumb-current {
  color: rgba(255,255,255,0.8);
}

/* Botão Outline Claro */
.btn-outline-light {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}

/* Botão Branco com Texto Azul */
.btn-white-blue {
  background: white;
  color: var(--blue-mid);
}

/* Portfolio Placeholder */
.portfolio-placeholder-gradient {
  background: linear-gradient(135deg, #0A1628, #1B3A6B);
}

/* Portfolio Icon */
.portfolio-icon-white {
  color: rgba(255,255,255,0.9);
}

/* Blog Card Link */
.blog-card-link {
  text-decoration: none;
}

/* Blog Image Gradient */
.blog-img-gradient {
  background: linear-gradient(135deg, var(--blue-pale), #d0e8ff);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
}

/* Blog Image com Background */
.blog-img-bg {
  background-size: cover;
  background-position: center;
  height: 180px;
}

/* Blog Body */
.blog-body-text {
  color: var(--color-text);
}

/* Blog Category */
.blog-category-style {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
}

/* Blog Title */
.blog-title-style {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: var(--color-heading);
}

/* Blog Description */
.blog-desc-style {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Blog Meta */
.blog-meta-style {
  font-size: 0.8rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Blog Meta Dot */
.blog-meta-dot-style {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

/* Empty State */
.empty-state-text {
  color: var(--texto-claro);
  font-size: 1.1rem;
}

/* Margin Top 3rem */
.mt-3rem {
  margin-top: 3rem;
}

/* Grid Column Span All */
.grid-col-span-all {
  grid-column: 1 / -1;
}


/* =====================================================
   PÁGINA DE CONTATO - ESTILO CELESTIAL
   ===================================================== */

/* Hero Contato Simples */
.hero-contato-simple {
  background: linear-gradient(135deg, var(--preto-base) 0%, #1a1a1a 100%);
  padding: 250px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-contato-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(242, 194, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(18, 160, 92, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-contato-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge-simple {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(242, 194, 0, 0.15);
  border: 1px solid rgba(242, 194, 0, 0.3);
  border-radius: 50px;
  color: var(--amarelo-destaque);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title-simple {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-highlight-simple {
  display: block;
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description-simple {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features-simple {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-feature-simple {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.hero-feature-simple i {
  font-size: 1.5rem;
  color: var(--amarelo-destaque);
}

/* Hero Contato */
.hero-contato {
  min-height: 600px;
  padding-top: 250px;
  padding-bottom: 80px;
}

/* Grid de Contato Moderno */
.contact-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

/* Lado das Informações */
.contact-info-side {
  position: sticky;
  top: 120px;
}

/* Cards de Contato Modernos */
.contact-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-card-modern {
  background: var(--branco-limpeza);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--amarelo-destaque);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: white;
}

.email-icon {
  background: linear-gradient(135deg, var(--azul-profundo) 0%, #1a3a5c 100%);
  color: white;
}

.location-icon {
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #FFD700 100%);
  color: var(--preto-base);
}

.clock-icon {
  background: linear-gradient(135deg, var(--verde-limpeza) 0%, #0F8A4D 100%);
  color: white;
}

.contact-card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-bottom: 0.25rem;
}

.contact-card-content p {
  font-size: 0.875rem;
  color: var(--cinza-escuro);
  margin-bottom: 0.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--azul-profundo);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-link:hover {
  color: var(--amarelo-destaque);
  gap: 0.75rem;
}

.contact-text {
  color: var(--cinza-escuro);
  font-weight: 500;
}

/* CTA WhatsApp Box */
.whatsapp-cta-box {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-cta-content h4 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.whatsapp-cta-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.btn-whatsapp-cta {
  background: white;
  color: #25D366;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.btn-whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  color: #20BA5A;
}

/* Formulário Moderno */
.contact-form-side {
  position: relative;
}

.form-card-modern {
  background: var(--branco-limpeza);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 2px solid var(--cinza-claro);
}

.form-card-header {
  margin-bottom: 2rem;
}

.form-card-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-bottom: 0.5rem;
}

.form-card-header p {
  color: var(--cinza-escuro);
  font-size: 1rem;
}

/* Alertas do Formulário */
.form-alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}

.form-alert i {
  font-size: 1.5rem;
}

.form-alert-success {
  background: #D1FAE5;
  border: 2px solid #6EE7B7;
  color: #065F46;
}

.form-alert-error {
  background: #FEE2E2;
  border: 2px solid #FCA5A5;
  color: #991B1B;
}

/* Formulário */
.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-modern label {
  font-weight: 600;
  color: var(--preto-base);
  font-size: 0.95rem;
}

.required {
  color: #EF4444;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
  padding: 1rem 1.25rem;
  border: 2px solid var(--cinza-claro);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
  background: var(--branco-limpeza);
  color: var(--preto-base);
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: var(--amarelo-destaque);
  box-shadow: 0 0 0 4px rgba(242, 194, 0, 0.1);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
  color: var(--cinza-medio);
}

.form-group-modern textarea {
  resize: vertical;
  min-height: 120px;
}

/* Botão Submit */
.btn-submit-modern {
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #FFD700 100%);
  color: var(--preto-base);
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(242, 194, 0, 0.3);
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(242, 194, 0, 0.4);
}

.btn-submit-modern:active {
  transform: translateY(0);
}

/* Nota do Formulário */
.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cinza-escuro);
  font-size: 0.875rem;
  margin-top: -0.5rem;
}

.form-note i {
  color: var(--azul-profundo);
}

/* Responsivo */
@media (max-width: 968px) {
  .hero-contato-simple {
    padding: 200px 0 60px 0;
  }

  .hero-title-simple {
    font-size: 2.5rem;
  }

  .hero-description-simple {
    font-size: 1.1rem;
  }

  .hero-features-simple {
    gap: 1.5rem;
  }

  .hero-feature-simple {
    font-size: 0.9rem;
  }

  .contact-grid-modern {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info-side {
    position: static;
  }

  .form-row-modern {
    grid-template-columns: 1fr;
  }

  .form-card-modern {
    padding: 2rem;
  }

  .whatsapp-cta-box {
    padding: 1.5rem;
  }
}


/* =====================================================
   PÁGINA DE BLOG - ESTILO CELESTIAL
   ===================================================== */

/* Hero Blog Simples */
.hero-blog-simple {
  background: linear-gradient(135deg, var(--preto-base) 0%, #1a1a1a 100%);
  padding: 250px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-blog-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(242, 194, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(18, 160, 92, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-blog-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Artigo em Destaque */
.blog-featured-modern {
  background: var(--branco-limpeza);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 2px solid var(--cinza-claro);
  position: relative;
  overflow: hidden;
}

.blog-featured-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--amarelo-destaque) 0%, var(--verde-limpeza) 100%);
}

.blog-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #FFD700 100%);
  color: var(--preto-base);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(242, 194, 0, 0.3);
}

.blog-featured-badge i {
  font-size: 1.2rem;
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.blog-featured-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-featured-modern:hover .blog-featured-image img {
  transform: scale(1.05);
}

.blog-featured-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #FFD700 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--preto-base);
}

.blog-featured-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-featured-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.blog-featured-category,
.blog-featured-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cinza-escuro);
  font-size: 0.95rem;
  font-weight: 600;
}

.blog-featured-category i {
  color: var(--verde-limpeza);
  font-size: 1.1rem;
}

.blog-featured-date i {
  color: var(--azul-profundo);
  font-size: 1.1rem;
}

.blog-featured-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--preto-base);
  line-height: 1.3;
  margin: 0;
}

.blog-featured-excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--cinza-escuro);
  margin: 0;
}

.btn-blog-featured {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--verde-limpeza) 0%, #0F8A4D 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(18, 160, 92, 0.3);
  align-self: flex-start;
}

.btn-blog-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(18, 160, 92, 0.4);
}

.btn-blog-featured i {
  transition: transform 0.3s ease;
}

.btn-blog-featured:hover i {
  transform: translateX(5px);
}

/* Seção de Artigos */
.blog-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.blog-section-header h2 i {
  color: var(--amarelo-destaque);
  font-size: 1.8rem;
}

.blog-section-header p {
  color: var(--cinza-escuro);
  font-size: 1.1rem;
}

/* Grid de Artigos Moderno */
.blog-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.blog-card-modern {
  background: var(--branco-limpeza);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid transparent;
}

.blog-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  border-color: var(--amarelo-destaque);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-modern:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--azul-profundo) 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #FFD700 100%);
  color: var(--preto-base);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(242, 194, 0, 0.4);
  z-index: 2;
}

.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-card-date,
.blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cinza-escuro);
  font-size: 0.9rem;
}

.blog-card-date i {
  color: var(--azul-profundo);
  font-size: 1rem;
}

.blog-card-author i {
  color: var(--verde-limpeza);
  font-size: 1rem;
}

.blog-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.5rem;
}

.blog-card-excerpt {
  color: var(--cinza-escuro);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--verde-limpeza);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-card-link:hover {
  color: var(--amarelo-destaque);
  gap: 0.75rem;
}

.blog-card-link i {
  transition: transform 0.3s ease;
}

.blog-card-link:hover i {
  transform: translateX(5px);
}

/* Estado Vazio */
.blog-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--cinza-claro);
  border-radius: 20px;
}

.blog-empty-state i {
  font-size: 4rem;
  color: var(--cinza-medio);
  margin-bottom: 1.5rem;
}

.blog-empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-bottom: 0.5rem;
}

.blog-empty-state p {
  color: var(--cinza-escuro);
  font-size: 1.1rem;
}

/* Paginação Moderna */
.blog-pagination-modern {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.blog-pagination-modern .pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination-modern .page-item {
  display: inline-block;
}

.blog-pagination-modern .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  padding: 0.5rem 1rem;
  background: var(--branco-limpeza);
  border: 2px solid var(--cinza-claro);
  border-radius: 10px;
  color: var(--preto-base);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-pagination-modern .page-link:hover {
  background: var(--amarelo-destaque);
  border-color: var(--amarelo-destaque);
  color: var(--preto-base);
  transform: translateY(-2px);
}

.blog-pagination-modern .page-item.active .page-link {
  background: var(--verde-limpeza);
  border-color: var(--verde-limpeza);
  color: white;
}

.blog-pagination-modern .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}

/* CTA Final */
.blog-cta-section {
  background: var(--cinza-claro);
  padding: 80px 0;
}

.blog-cta-card {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
}

.blog-cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.blog-cta-content {
  flex-grow: 1;
}

.blog-cta-content h3 {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-cta-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin: 0;
}

.btn-blog-cta {
  background: white;
  color: #25D366;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.btn-blog-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  color: #20BA5A;
}

/* Responsivo */
@media (max-width: 968px) {
  .hero-blog-simple {
    padding: 200px 0 60px 0;
  }

  .blog-featured-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-featured-image {
    aspect-ratio: 16/9;
  }

  .blog-featured-title {
    font-size: 1.5rem;
  }

  .blog-grid-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .blog-cta-content h3 {
    font-size: 1.5rem;
  }
}


/* =====================================================
   PÁGINA DE SERVIÇOS - ESTILO CELESTIAL
   ===================================================== */

/* Hero Serviços */
.hero-servicos-simple {
  background: linear-gradient(135deg, var(--preto-base) 0%, #1a1a1a 100%);
  padding: 250px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-servicos-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(242, 194, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(18, 160, 92, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-servicos-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Navegação Rápida */
.servicos-nav-section {
  background: var(--branco-limpeza);
  padding: 3rem 0;
  border-bottom: 2px solid var(--cinza-claro);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.servicos-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.servicos-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  background: var(--branco-limpeza);
  border: 2px solid var(--cinza-claro);
  border-radius: 12px;
  text-decoration: none;
  color: var(--preto-base);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.3s ease;
}

.servicos-nav-card i {
  font-size: 2rem;
  color: var(--verde-limpeza);
  transition: all 0.3s ease;
}

.servicos-nav-card:hover {
  transform: translateY(-4px);
  border-color: var(--amarelo-destaque);
  box-shadow: 0 6px 20px rgba(242, 194, 0, 0.2);
}

.servicos-nav-card:hover i {
  color: var(--amarelo-destaque);
  transform: scale(1.15);
}

/* Seção de Serviço Detalhado */
.servico-detalhe {
  padding: 80px 0;
  background: var(--branco-limpeza);
  scroll-margin-top: 100px;
}

.servico-detalhe-alt {
  background: var(--cinza-claro);
}

.servico-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.servico-grid-reverse {
  direction: rtl;
}

.servico-grid-reverse > * {
  direction: ltr;
}

.servico-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.servico-icon-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #FFD700 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--preto-base);
  box-shadow: 0 8px 24px rgba(242, 194, 0, 0.3);
}

.servico-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--preto-base);
  line-height: 1.2;
  margin: 0;
}

.servico-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--cinza-escuro);
  margin: 0;
}

.servico-features {
  background: rgba(255,255,255,0.5);
  border-left: 4px solid var(--verde-limpeza);
  padding: 1.5rem;
  border-radius: 8px;
}

.servico-features h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-bottom: 1rem;
}

.servico-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.servico-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cinza-escuro);
  font-size: 1rem;
}

.servico-features li i {
  color: var(--verde-limpeza);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.btn-servico-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  align-self: flex-start;
}

.btn-servico-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.servico-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.servico-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.servico-detalhe:hover .servico-image img {
  transform: scale(1.05);
}

/* CTA Final */
.servicos-cta-final {
  background: linear-gradient(135deg, var(--preto-base) 0%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.servicos-cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(242, 194, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(18, 160, 92, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.servicos-cta-card {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.servicos-cta-content {
  margin-bottom: 2.5rem;
}

.servicos-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.servicos-cta-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 0 auto;
}

.servicos-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-servicos-primary,
.btn-servicos-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-servicos-primary {
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #FFD700 100%);
  color: var(--preto-base);
  box-shadow: 0 4px 16px rgba(242, 194, 0, 0.3);
}

.btn-servicos-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(242, 194, 0, 0.4);
}

.btn-servicos-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-servicos-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

/* Responsivo */
@media (max-width: 968px) {
  .hero-servicos-simple {
    padding: 200px 0 60px 0;
  }

  .servicos-nav-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .servicos-nav-card {
    padding: 1rem 0.75rem;
    font-size: 0.8rem;
  }

  .servicos-nav-card i {
    font-size: 1.5rem;
  }

  .servico-detalhe {
    padding: 60px 0;
    scroll-margin-top: 80px;
  }

  .servico-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .servico-grid-reverse {
    direction: ltr;
  }

  .servico-title {
    font-size: 1.75rem;
  }

  .servico-description {
    font-size: 1rem;
  }

  .servico-image {
    aspect-ratio: 16/9;
  }

  .servico-image-placeholder {
    font-size: 4rem;
  }

  .servicos-cta-content h2 {
    font-size: 1.75rem;
  }

  .servicos-cta-content p {
    font-size: 1.05rem;
  }

  .servicos-cta-buttons {
    flex-direction: column;
  }

  .btn-servicos-primary,
  .btn-servicos-whatsapp {
    width: 100%;
    justify-content: center;
  }
}


/* =====================================================
   PÁGINA ÚNICA DE ARTIGO/NOTÍCIA
   ===================================================== */

/* Hero Artigo */
.hero-artigo-simple {
  background: linear-gradient(135deg, var(--preto-base) 0%, #1a1a1a 100%);
  padding: 250px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-artigo-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(242, 194, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(18, 160, 92, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-artigo-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Breadcrumb Moderno */
.breadcrumb-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.breadcrumb-modern a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
}

.breadcrumb-modern a:hover {
  color: var(--amarelo-destaque);
}

.breadcrumb-modern i {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
  color: var(--amarelo-destaque);
  font-weight: 600;
}

/* Categoria Badge */
.artigo-categoria-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(18, 160, 92, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(18, 160, 92, 0.3);
  color: var(--amarelo-destaque);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.artigo-categoria-badge i {
  font-size: 1rem;
  color: var(--verde-limpeza);
}

/* Título do Artigo */
.artigo-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Meta Informações */
.artigo-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.artigo-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.artigo-meta-item i {
  font-size: 1.1rem;
  color: var(--azul-claro-brilho);
}

/* Container do Artigo */
.artigo-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Imagem Destaque */
.artigo-image-featured {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.artigo-image-featured img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.artigo-image-featured:hover img {
  transform: scale(1.05);
}

/* Resumo */
.artigo-resumo {
  display: flex;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(242, 194, 0, 0.08) 0%, rgba(18, 160, 92, 0.08) 100%);
  border-left: 4px solid var(--amarelo-destaque);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.artigo-resumo-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--amarelo-destaque);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--preto-base);
  font-size: 1.5rem;
}

.artigo-resumo-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-bottom: 0.75rem;
}

.artigo-resumo-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--texto-claro);
  margin: 0;
}

/* Conteúdo do Artigo */
.artigo-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--texto-escuro);
  margin-bottom: 4rem;
}

.artigo-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--amarelo-destaque);
}

.artigo-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.artigo-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--preto-base);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.artigo-content p {
  margin-bottom: 1.5rem;
}

.artigo-content ul,
.artigo-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.artigo-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.artigo-content ul li::marker {
  color: var(--verde-limpeza);
}

.artigo-content strong {
  color: var(--preto-base);
  font-weight: 700;
}

.artigo-content a {
  color: var(--verde-limpeza);
  text-decoration: underline;
  transition: color 0.3s;
}

.artigo-content a:hover {
  color: var(--amarelo-destaque);
}

.artigo-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.artigo-content blockquote {
  border-left: 4px solid var(--verde-limpeza);
  background: var(--cinza-claro);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  font-style: italic;
  color: var(--texto-claro);
}

.artigo-content code {
  background: var(--cinza-claro);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.95em;
  color: var(--preto-base);
}

.artigo-content pre {
  background: var(--preto-base);
  color: var(--branco-limpeza);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
}

.artigo-content pre code {
  background: none;
  padding: 0;
  color: var(--branco-limpeza);
}

/* Seção de Compartilhamento */
.artigo-share-section {
  background: var(--cinza-claro);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.artigo-share-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.artigo-share-header i {
  font-size: 1.8rem;
  color: var(--verde-limpeza);
}

.artigo-share-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--preto-base);
  margin: 0;
}

.artigo-share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-share-whatsapp,
.btn-share-facebook,
.btn-share-twitter,
.btn-share-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: white;
}

.btn-share-whatsapp {
  background: #25D366;
}

.btn-share-whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-share-facebook {
  background: #1877F2;
}

.btn-share-facebook:hover {
  background: #0C63D4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.btn-share-twitter {
  background: #1DA1F2;
}

.btn-share-twitter:hover {
  background: #0C8BD9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
}

.btn-share-linkedin {
  background: #0A66C2;
}

.btn-share-linkedin:hover {
  background: #004182;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.4);
}

/* Navegação do Artigo */
.artigo-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.btn-artigo-back,
.btn-artigo-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-artigo-back {
  background: var(--cinza-claro);
  color: var(--preto-base);
  border: 2px solid var(--cinza-medio);
}

.btn-artigo-back:hover {
  background: var(--preto-base);
  color: white;
  border-color: var(--preto-base);
  transform: translateX(-5px);
}

.btn-artigo-contact {
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #E6B000 100%);
  color: var(--preto-base);
  border: 2px solid var(--amarelo-destaque);
}

.btn-artigo-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 194, 0, 0.4);
}

/* CTA Final */
.artigo-cta-final {
  background: linear-gradient(135deg, var(--preto-base) 0%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.artigo-cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 194, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.artigo-cta-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.artigo-cta-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #E6B000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--preto-base);
  box-shadow: 0 10px 30px rgba(242, 194, 0, 0.3);
}

.artigo-cta-content {
  flex: 1;
}

.artigo-cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.artigo-cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.artigo-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cta-primary,
.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #E6B000 100%);
  color: var(--preto-base);
  box-shadow: 0 6px 20px rgba(242, 194, 0, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(242, 194, 0, 0.5);
}

.btn-cta-whatsapp {
  background: var(--verde-limpeza);
  color: white;
  box-shadow: 0 6px 20px rgba(18, 160, 92, 0.3);
}

.btn-cta-whatsapp:hover {
  background: #0F8A4D;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(18, 160, 92, 0.5);
}

/* Responsivo */
@media (max-width: 968px) {
  .hero-artigo-simple {
    padding: 200px 0 60px 0;
  }

  .artigo-title {
    font-size: 2rem;
  }

  .artigo-meta {
    gap: 1rem;
  }

  .artigo-resumo {
    flex-direction: column;
    padding: 1.5rem;
  }

  .artigo-content {
    font-size: 1rem;
  }

  .artigo-content h2 {
    font-size: 1.5rem;
  }

  .artigo-share-buttons {
    flex-direction: column;
  }

  .btn-share-whatsapp,
  .btn-share-facebook,
  .btn-share-twitter,
  .btn-share-linkedin {
    width: 100%;
    justify-content: center;
  }

  .artigo-navigation {
    flex-direction: column;
  }

  .btn-artigo-back,
  .btn-artigo-contact {
    width: 100%;
    justify-content: center;
  }

  .artigo-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .artigo-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }
}


/* =====================================================
   PÁGINA EMPRESA
   ===================================================== */

/* Hero Empresa */
.hero-empresa-simple {
  background: linear-gradient(135deg, var(--preto-base) 0%, #1a1a1a 100%);
  padding: 250px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-empresa-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(242, 194, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(18, 160, 92, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-empresa-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Badge Empresa */
.empresa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(18, 160, 92, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(18, 160, 92, 0.3);
  color: var(--amarelo-destaque);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.empresa-badge i {
  font-size: 1.2rem;
  color: var(--verde-limpeza);
}

/* Título Empresa */
.empresa-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.empresa-highlight {
  color: var(--amarelo-destaque);
  display: block;
  margin-top: 0.5rem;
}

/* Descrição Empresa */
.empresa-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Empresa */
.empresa-features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.empresa-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

.empresa-feature i {
  font-size: 1.5rem;
  color: var(--azul-claro-brilho);
}

/* História Grid */
.empresa-historia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.empresa-historia-content {
  padding-right: 2rem;
}

.empresa-texto p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--texto-claro);
  margin-bottom: 1.5rem;
}

.empresa-texto strong {
  color: var(--preto-base);
  font-weight: 700;
}

/* Valores Lista */
.empresa-valores-lista {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.empresa-valor-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--cinza-claro);
  border-radius: 12px;
  border-left: 4px solid var(--verde-limpeza);
  transition: all 0.3s ease;
}

.empresa-valor-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.empresa-valor-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #E6B000 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--preto-base);
  font-size: 1.8rem;
}

.empresa-valor-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-bottom: 0.5rem;
}

.empresa-valor-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--texto-claro);
  margin: 0;
}

/* História Imagem */
.empresa-historia-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.empresa-historia-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.empresa-historia-image:hover img {
  transform: scale(1.05);
}

.empresa-image-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(242, 194, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.empresa-image-badge-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--preto-base);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.empresa-image-badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--preto-base);
  line-height: 1.3;
}

/* Diferenciais Section */
.empresa-diferenciais-section {
  background: var(--cinza-claro);
  padding: 80px 0;
}

.empresa-diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.empresa-diferencial-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.empresa-diferencial-card:hover {
  transform: translateY(-10px);
  border-color: var(--amarelo-destaque);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.empresa-diferencial-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--verde-limpeza) 0%, #0F8A4D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
}

.empresa-diferencial-card:hover .empresa-diferencial-icon {
  transform: scale(1.1) rotate(360deg);
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #E6B000 100%);
  color: var(--preto-base);
}

.empresa-diferencial-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--preto-base);
  margin-bottom: 1rem;
}

.empresa-diferencial-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--texto-claro);
  margin: 0;
}

/* Números Section */
.empresa-numeros-section {
  background: linear-gradient(135deg, var(--preto-base) 0%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.empresa-numeros-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 194, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.empresa-numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.empresa-numero-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.empresa-numero-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--amarelo-destaque);
  box-shadow: 0 20px 40px rgba(242, 194, 0, 0.2);
}

.empresa-numero-icon {
  font-size: 3rem;
  color: var(--amarelo-destaque);
  margin-bottom: 1rem;
}

.empresa-numero-value {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(242, 194, 0, 0.3);
}

.empresa-numero-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* CTA Final Empresa */
.empresa-cta-final {
  background: var(--branco-limpeza);
  padding: 80px 0;
}

.empresa-cta-card {
  background: linear-gradient(135deg, var(--preto-base) 0%, #1a1a1a 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.empresa-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 194, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.empresa-cta-content {
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
}

.empresa-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.empresa-cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.empresa-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.btn-empresa-primary,
.btn-empresa-secondary,
.btn-empresa-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-empresa-primary {
  background: linear-gradient(135deg, var(--amarelo-destaque) 0%, #E6B000 100%);
  color: var(--preto-base);
  box-shadow: 0 8px 25px rgba(242, 194, 0, 0.4);
}

.btn-empresa-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(242, 194, 0, 0.5);
}

.btn-empresa-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-empresa-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--amarelo-destaque);
  transform: translateY(-3px);
}

.btn-empresa-whatsapp {
  background: var(--verde-limpeza);
  color: white;
  box-shadow: 0 8px 25px rgba(18, 160, 92, 0.4);
}

.btn-empresa-whatsapp:hover {
  background: #0F8A4D;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(18, 160, 92, 0.5);
}

/* Responsivo */
@media (max-width: 968px) {
  .hero-empresa-simple {
    padding: 200px 0 60px 0;
  }

  .empresa-title {
    font-size: 2.5rem;
  }

  .empresa-features {
    gap: 1.5rem;
  }

  .empresa-historia-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .empresa-historia-content {
    padding-right: 0;
  }

  .empresa-diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .empresa-numeros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .empresa-numero-value {
    font-size: 3rem;
  }

  .empresa-cta-card {
    padding: 3rem 2rem;
  }

  .empresa-cta-content h2 {
    font-size: 2rem;
  }

  .empresa-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-empresa-primary,
  .btn-empresa-secondary,
  .btn-empresa-whatsapp {
    width: 100%;
    justify-content: center;
  }
}
