/* =============================================
   PROTECT INSECT – PREMIUM STYLESHEET v2
   Color Palette: Olive Green, White, Dark
   ============================================= */

:root {
  --primary:        #FF5500; /* Laranja bem chamativo */
  --primary-dark:   #CC4400;
  --primary-light:  #FF7700;
  --primary-glow:   rgba(255, 85, 0, 0.5);
  --accent:         #8dc641;
  --accent-light:   #b8e05c;
  --dark:           #0a1405; /* Unified dark green background */
  --dark-2:         #101f08;
  --dark-3:         #172c0b;
  --text-light:     #ffffff; /* All text white */
  --text-muted:     #ffffff; /* All text white */
  --white:          #ffffff;
  --whatsapp:       #25D366;
  --whatsapp-dark:  #128C7E;
  --danger:         #e05555;
  --warning:        #e0a840;
  --card-bg:        rgba(26, 45, 15, 0.85);
  --glass:          rgba(255, 255, 255, 0.06);
  --border:         rgba(141, 198, 65, 0.2);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.5);
  --shadow-card:    0 8px 32px rgba(0,0,0,0.3);
  --radius-lg:      20px;
  --radius-md:      12px;
  --radius-sm:      8px;
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:      'Inter', sans-serif;
  --font-display:   'Oswald', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* =============================================
   PARTICLES BACKGROUND
   ============================================= */
#particles-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#particles-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(74,107,42,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(45,69,24,0.18) 0%, transparent 55%);
  animation: bgPulse 9s ease-in-out infinite alternate;
}
@keyframes bgPulse {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}
nav, section, footer { position: relative; z-index: 1; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

/* --- Base hidden state --- */
.scroll-reveal,
.scroll-reveal-up,
.scroll-reveal-left,
.scroll-reveal-right {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal       { transform: translateY(24px); }
.scroll-reveal-up    { transform: translateY(40px); }
.scroll-reveal-left  { transform: translateX(-50px); }
.scroll-reveal-right { transform: translateX(50px); }

/* --- Visible state --- */
.scroll-reveal.in-view,
.scroll-reveal-up.in-view,
.scroll-reveal-left.in-view,
.scroll-reveal-right.in-view {
  opacity: 1;
  transform: none;
}

/* --- Stagger delays --- */
[data-delay="0"]   { transition-delay: 0ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="500"] { transition-delay: 500ms; }

/* Hero entrance */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
@keyframes slideInLeft {
  to { opacity: 1; transform: none; }
}
@keyframes slideInRight {
  to { opacity: 1; transform: none; }
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 62px; height: 62px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 22px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float svg { width: 34px; height: 34px; fill: white; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.7);
}
.whatsapp-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 3px solid var(--whatsapp);
  animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  background: rgba(10, 18, 5, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 14, 4, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 52px;
  width: auto;
  /* Remove white background – show transparent PNG */
  filter: drop-shadow(0 0 12px rgba(141,198,65,0.35));
  transition: filter var(--transition);
}
.logo-img:hover { filter: drop-shadow(0 0 22px rgba(141,198,65,0.65)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  border: none;
  background: none;
  white-space: nowrap;
  font-family: var(--font-main);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(141,198,65,0.09);
}
.nav-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(141,198,65,0.3);
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(141,198,65,0.5);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-btn {
  display: flex; align-items: center; gap: 5px;
  cursor: pointer;
}
.arrow { font-size: 0.6rem; transition: transform 0.25s; display: inline-block; }
.dropdown.open .arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 270px;
  background: rgba(16, 28, 8, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  color: var(--text-light);
  transition: background var(--transition), color var(--transition);
  border-bottom: 1px solid var(--border);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover {
  background: rgba(141,198,65,0.09);
  color: var(--white);
}
.dropdown-icon-box {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.dropdown-icon-box svg { width: 20px; height: 20px; }
.dropdown-item strong { display: block; font-size: 0.88rem; font-weight: 600; }
.dropdown-item small  { font-size: 0.74rem; color: var(--text-muted); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none; border: none; cursor: pointer; z-index: 1001;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10% 70px;
  gap: 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 0% 55%, rgba(74,107,42,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 20%, rgba(45,69,24,0.14) 0%, transparent 50%),
    linear-gradient(180deg, #090f05 0%, #0f1a08 100%);
}

/* Animated line grid */
.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(141,198,65,0.06) 50%, transparent 100%);
  animation: linePulse 5s ease-in-out infinite;
}
.bg-line:nth-child(1) { left: 20%; animation-delay: 0s; }
.bg-line:nth-child(2) { left: 40%; animation-delay: 1s; }
.bg-line:nth-child(3) { left: 60%; animation-delay: 2s; }
.bg-line:nth-child(4) { left: 80%; animation-delay: 3s; }
.bg-line:nth-child(5) { left: 10%; animation-delay: 4s; }
@keyframes linePulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

.hero-content { flex: 1; max-width: 640px; }

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(141,198,65,0.1);
  border: 1px solid rgba(141,198,65,0.25);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.highlight-text {
  color: var(--white);
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-subtitle strong { color: var(--white); }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-number, .stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
}
.stat-divider { width: 1px; height: 42px; background: var(--border); }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero shield */
.hero-image { display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.hero-shield {
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.shield-outer {
  width: 230px; height: 230px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74,107,42,0.2), rgba(36,61,20,0.4));
  border: 2px solid rgba(141,198,65,0.25);
  display: flex; align-items: center; justify-content: center;
  animation: shieldPulse 4.5s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes shieldPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(74,107,42,0.25); }
  50%       { transform: scale(1.03); box-shadow: 0 0 70px rgba(141,198,65,0.35); }
}
.shield-inner {
  width: 170px; height: 170px;
  border-radius: 50%;
  background: rgba(10, 18, 5, 0.85);
  border: 1px solid rgba(141,198,65,0.3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 16px;
}
/* Logo sem fundo branco */
.shield-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(141,198,65,0.4));
}

/* Orbit rings */
.orbit {
  position: absolute;
  border-radius: 50%;
  animation: orbitRotate linear infinite;
  display: flex; align-items: flex-start; justify-content: center;
}
.orbit-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(141,198,65,0.7);
  display: block;
  margin-top: 0;
}
.orbit-1 { width: 290px; height: 290px; top: 50%; left: 50%; margin: -145px 0 0 -145px; animation-duration: 8s; border: 1px dashed rgba(141,198,65,0.15); }
.orbit-2 { width: 316px; height: 316px; top: 50%; left: 50%; margin: -158px 0 0 -158px; animation-duration: 14s; animation-direction: reverse; border: 1px dashed rgba(141,198,65,0.1); }
.orbit-3 { width: 340px; height: 340px; top: 50%; left: 50%; margin: -170px 0 0 -170px; animation-duration: 20s; border: 1px dashed rgba(141,198,65,0.07); }
@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px var(--primary-glow);
}
.btn-secondary {
  background: var(--glass);
  color: var(--text-light);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--white);
  color: var(--white);
}
.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.5);
}
.btn-glow { animation: glowBtn 3.5s ease-in-out infinite; }
@keyframes glowBtn {
  0%, 100% { box-shadow: 0 4px 20px rgba(74,107,42,0.4); }
  50%       { box-shadow: 0 6px 36px rgba(141,198,65,0.65); }
}
.btn-pulse { animation: waPulse 2.8s ease-in-out infinite; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 6px 38px rgba(37,211,102,0.65); }
}
.btn-large { padding: 18px 38px; font-size: 1rem; }
.btn-full  { width: 100%; justify-content: center; }

/* =============================================
   SECTION COMMONS
   ============================================= */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 5%;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--white);
  background: rgba(141,198,65,0.09);
  border: 1px solid rgba(141,198,65,0.22);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span {
  color: var(--white);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-overview {
  background: var(--dark);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 28px 30px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(10px);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(141,198,65,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(141,198,65,0.38);
  box-shadow: 0 22px 50px rgba(74,107,42,0.28);
}
.service-card-glow {
  position: absolute; top: -30%; left: -30%;
  width: 160%; height: 160%;
  background: radial-gradient(ellipse, rgba(141,198,65,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover .service-card-glow { opacity: 1; }

.service-card-icon-wrap {
  width: 60px; height: 60px;
  background: rgba(141,198,65,0.1);
  border: 1px solid rgba(141,198,65,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform var(--transition), background var(--transition);
}
.service-card:hover .service-card-icon-wrap {
  transform: scale(1.1);
  background: rgba(141,198,65,0.18);
}
.service-card-icon-wrap svg {
  width: 28px; height: 28px;
  stroke: var(--accent);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}
.service-card-link {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: letter-spacing var(--transition);
}
.service-card:hover .service-card-link { letter-spacing: 0.08em; }

/* =============================================
   PEST DETAILS & MODALS
   ============================================= */
.pest-section { background: var(--dark); display: none; } /* Hidden initially, used as template */
.pest-section.alt-bg { background: var(--dark); }

/* Fullscreen Modal Styles */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content-wrapper {
  background: var(--dark);
  width: 95%; max-width: 1200px; height: 90vh;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow-y: auto; overflow-x: hidden;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal-content-wrapper { transform: translateY(0) scale(1); }

.modal-close-btn {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  display: flex; justify-content: center; align-items: center;
  cursor: pointer; z-index: 100;
  transition: all 0.3s ease;
}
.modal-close-btn:hover { background: var(--danger); border-color: var(--danger); transform: rotate(90deg); }

.modal-body { padding: 40px 20px; }

/* Image Carousel inside Cards */
.card-carousel {
  width: 100%; height: 200px;
  position: relative; overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -32px -32px 20px -32px; /* Pull into padding of .service-card */
  width: calc(100% + 64px);
}
.carousel-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.8s ease;
  object-fit: cover;
}
.carousel-slide.active { opacity: 1; }

.pest-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 52px;
}
.pest-info-grid.reverse { direction: rtl; }
.pest-info-grid.reverse > * { direction: ltr; }

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.info-badge.danger {
  background: rgba(224,85,85,0.12);
  border: 1px solid rgba(224,85,85,0.3);
  color: #ff8a8a;
}
.info-badge.critical {
  background: rgba(224,85,85,0.18);
  border: 1px solid rgba(224,85,85,0.45);
  color: #ff6b6b;
  animation: critBlink 2.2s ease-in-out infinite;
}
@keyframes critBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.65; }
}

.pest-info-text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.pest-info-text p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.pest-info-text strong { color: var(--white); }

.damage-list {
  background: rgba(74,107,42,0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-top: 22px;
}
.damage-list h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.damage-list ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.damage-list li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.damage-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Photo grid */
.pest-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pest-photo {
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.pest-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.pest-photo:hover img {
  transform: scale(1.08);
}
.pest-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
  transition: background var(--transition);
}
.pest-photo:hover::before { background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%); }
.pest-photo:hover { transform: scale(1.03); box-shadow: 0 12px 36px rgba(0,0,0,0.5); }
.pest-photo-label {
  position: relative; z-index: 2;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-align: center;
  background: rgba(74,107,42,0.75);
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.03em;
}

/* Solo visual */
.solo-visual { display: flex; justify-content: center; align-items: center; }

.solo-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.solo-img-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.solo-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.solo-img-wrap:hover .solo-real-img { transform: scale(1.06); }

.solo-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 22px;
  gap: 10px;
}

.termite-colony {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}
.tc {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
  animation: tcBounce 0.9s ease-in-out infinite alternate;
}
.tc:nth-child(1) { animation-delay: 0s; }
.tc:nth-child(2) { animation-delay: 0.15s; }
.tc:nth-child(3) { animation-delay: 0.3s; }
.tc:nth-child(4) { animation-delay: 0.45s; }
.tc:nth-child(5) { animation-delay: 0.6s; }
@keyframes tcBounce {
  from { transform: translateY(0); opacity: 0.5; }
  to   { transform: translateY(-8px); opacity: 1; }
}
.ground-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* Treatment Card */
.treatment-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: rgba(74,107,42,0.08);
  border: 1px solid rgba(141,198,65,0.18);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  margin-bottom: 44px;
  transition: transform var(--transition), border-color var(--transition);
}
.treatment-card.green {
  background: rgba(74,107,42,0.11);
  border-color: rgba(141,198,65,0.23);
}
.treatment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(141,198,65,0.38);
}
.treatment-icon {
  width: 58px; height: 58px; flex-shrink: 0;
  background: rgba(141,198,65,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.treatment-icon svg { width: 28px; height: 28px; stroke: var(--accent); }
.treatment-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.treatment-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.treatment-content strong { color: var(--white); }

/* CTA section */
.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(74,107,42,0.18), rgba(36,61,20,0.28));
  border: 1px solid rgba(141,198,65,0.22);
  border-radius: var(--radius-lg);
  padding: 38px 46px;
  flex-wrap: wrap;
}
.cta-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 400px;
}

/* =============================================
   DESRATIZAÇÃO
   ============================================= */
.rat-control-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 44px;
}
.rat-info h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--white);
  margin-bottom: 18px;
}
.rat-info > p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 34px;
}
.rat-info p strong { color: var(--white); }

.process-steps { display: flex; flex-direction: column; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(141,198,65,0.09);
  border: 1px solid rgba(141,198,65,0.2);
  border-radius: var(--radius-sm);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.step-info p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Bait station demo */
.rat-visual { display: flex; justify-content: center; }
.bait-station-demo {
  background: rgba(26,45,15,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  min-width: 250px;
}
.bait-station-icon {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 8px 24px rgba(141,198,65,0.25);
  animation: stationFloat 3.5s ease-in-out infinite;
}
.bait-station-icon .real-icon-img { width: 100%; height: 100%; object-fit: cover; }
@keyframes stationFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.bait-description h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 14px;
  text-align: center;
}
.bait-description ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.bait-description li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.bait-description li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Warning banner */
.warning-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(224,168,64,0.09);
  border: 1px solid rgba(224,168,64,0.28);
  border-radius: var(--radius-md);
  padding: 22px 30px;
  margin-bottom: 44px;
}
.warning-icon { flex-shrink: 0; width: 36px; height: 36px; }
.warning-icon svg { width: 100%; height: 100%; stroke: #e0a840; }
.warning-banner p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.warning-banner strong { color: #e0a840; }

/* =============================================
   DEDETIZAÇÃO – PEST CARDS
   ============================================= */
.pests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 52px;
}
.pest-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(10px);
}
.pest-card:hover {
  transform: translateY(-7px);
  border-color: rgba(141,198,65,0.38);
  box-shadow: 0 18px 46px rgba(74,107,42,0.22);
}
.pest-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(74,107,42,0.07);
}
.pest-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(141,198,65,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.pest-icon .real-icon-img { width: 100%; height: 100%; object-fit: cover; }
.pest-card:hover .pest-icon { transform: scale(1.15) rotate(5deg); box-shadow: 0 4px 12px rgba(141,198,65,0.2); }
.pest-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}
.pest-card-body { padding: 20px 24px; }
.pest-card-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.pest-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.pest-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(141,198,65,0.09);
  border: 1px solid rgba(141,198,65,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* Guarantee */
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 26px;
  background: linear-gradient(135deg, rgba(74,107,42,0.16), rgba(26,45,15,0.36));
  border: 1px solid rgba(141,198,65,0.25);
  border-radius: var(--radius-lg);
  padding: 30px 42px;
  margin-bottom: 44px;
}
.guarantee-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(141,198,65,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: guaranteePulse 3.5s ease-in-out infinite;
}
@keyframes guaranteePulse {
  0%, 100% { box-shadow: 0 0 0 rgba(141,198,65,0); transform: scale(1); }
  50%       { box-shadow: 0 0 20px rgba(141,198,65,0.35); transform: scale(1.06); }
}
.guarantee-icon svg { width: 28px; height: 28px; stroke: var(--accent); }
.guarantee-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}
.guarantee-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.guarantee-content strong { color: var(--white); }

/* =============================================
   CONTACT & FOOTER
   ============================================= */
.contact-section { background: var(--dark); }
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px;
  backdrop-filter: blur(10px);
}
.contact-form .form-group { margin-bottom: 22px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 0.92rem;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238dc641' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
}
.contact-form select option { background: #1a2d0f; color: var(--text-light); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--white);
  background: rgba(141,198,65,0.04);
  box-shadow: 0 0 0 3px rgba(141,198,65,0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(168,191,136,0.35); }
.contact-form textarea { resize: vertical; min-height: 110px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  transition: transform var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(141,198,65,0.28);
}
.contact-card-icon {
  width: 40px; height: 40px;
  background: rgba(141,198,65,0.09);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.contact-card-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.contact-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
.contact-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
  display: inline-block;
  transition: letter-spacing var(--transition);
  cursor: pointer;
}
.contact-link:hover { letter-spacing: 0.04em; }
.emergency {
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ff8a8a !important;
}
.highlight-card {
  background: linear-gradient(135deg, rgba(74,107,42,0.14), rgba(26,45,15,0.46)) !important;
  border-color: rgba(141,198,65,0.23) !important;
}
.reasons-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-top: 8px; }
.reasons-list li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.reasons-list li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 20px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 5% 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
}
.footer-logo {
  height: 56px; width: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 10px rgba(141,198,65,0.3));
}
.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.social-link.whatsapp:hover  { background: var(--whatsapp); color: white; border-color: var(--whatsapp); }
.social-link.instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743); color: white; border-color: transparent; }
.social-link.facebook:hover  { background: #1877f2; color: white; border-color: #1877f2; }

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }

.footer-cta h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-cta p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 20px 5%;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(168,191,136,0.45); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero { padding: 100px 6% 70px; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 110px 6% 80px;
    gap: 44px;
  }
  .hero-content { max-width: 100%; }
  .hero-subtitle { max-width: 100%; margin: 0 auto 36px; }
  .hero-stats  { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-image  { order: -1; }
  .hero-shield { width: 260px; height: 260px; }
  .shield-outer { width: 170px; height: 170px; }
  .shield-inner { width: 120px; height: 120px; }
  .orbit-1 { width: 210px; height: 210px; margin: -105px 0 0 -105px; }
  .orbit-2 { width: 234px; height: 234px; margin: -117px 0 0 -117px; }
  .orbit-3 { width: 260px; height: 260px; margin: -130px 0 0 -130px; }

  .pest-info-grid, .rat-control-layout { grid-template-columns: 1fr; }
  .pest-info-grid.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-section { flex-direction: column; text-align: center; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8,14,4,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open { max-height: 640px; padding: 20px; }

  .dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    max-height: 0; overflow: hidden; display: none;
  }
  .dropdown.open .dropdown-menu { max-height: 400px; display: block; }
  .nav-cta { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pest-photo-grid { grid-template-columns: 1fr 1fr; }
  .pests-grid { grid-template-columns: 1fr; }
  .guarantee-banner { flex-direction: column; text-align: center; }
  .footer-container { grid-template-columns: 1fr; gap: 28px; }
  .footer-cta { text-align: center; }
  .cta-section { padding: 28px 24px; }
  .contact-form-wrapper { padding: 24px; }
  .hero-stats { gap: 18px; }
}

/* ==========================================================================
   SPLASH SCREEN (PRELOADER)
   ========================================================================== */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: 999999;
  background: #080e04;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.splash-screen.fade-out {
  transform: translateY(-100%);
}
.splash-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* LASER SHIELD */
.splash-laser-shield {
  position: absolute;
  width: 200px;
  height: 240px;
  z-index: 1;
  animation: hideLaser 0.1s 1.8s forwards;
}
.laser-path {
  fill: none;
  stroke: #8dc641;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  filter: drop-shadow(0 0 8px #8dc641) drop-shadow(0 0 16px #8dc641);
  animation: drawShield 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* GLOW FLASH */
.splash-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #8dc641;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  z-index: 2;
  animation: flashGlow 2s ease-in-out 0.2s forwards;
}

/* FINAL LOGO */
.splash-logo {
  position: relative;
  z-index: 3;
  width: 260px;
  max-width: 75vw;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: invert(1) grayscale(1) brightness(2) drop-shadow(0 0 10px rgba(255,255,255,0.2));
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(0.8) translateY(-18%);
  animation: revealLogo 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

@keyframes drawShield {
  0% { stroke-dashoffset: 300; }
  100% { stroke-dashoffset: 0; }
}

@keyframes hideLaser {
  to { opacity: 0; }
}

@keyframes flashGlow {
  0% { opacity: 0; transform: scale(0.5) translateY(0); }
  30% { opacity: 0.8; transform: scale(2) translateY(0); filter: blur(60px); }
  100% { opacity: 0; transform: scale(3) translateY(0); filter: blur(80px); }
}

@keyframes revealLogo {
  0% { opacity: 0; transform: scale(0.8) translateY(-18%); filter: invert(1) grayscale(1) brightness(2) drop-shadow(0 0 0 rgba(255,255,255,0)); }
  40% { opacity: 1; transform: scale(1.1) translateY(-18%); filter: invert(1) grayscale(1) brightness(2) drop-shadow(0 0 15px rgba(141,198,65,0.3)); }
  80% { opacity: 1; transform: scale(1.1) translateY(-18%); filter: invert(1) grayscale(1) brightness(2) drop-shadow(0 0 15px rgba(141,198,65,0.3)); }
  90% { opacity: 1; transform: scale(1.15) translateY(-18%); filter: invert(1) grayscale(1) brightness(2) drop-shadow(0 0 40px rgba(141,198,65,0.9)); }
  100% { opacity: 1; transform: scale(1.1) translateY(-18%); filter: invert(1) grayscale(1) brightness(2) drop-shadow(0 0 15px rgba(141,198,65,0.3)); }
}
