/* (Estilos antigos de mobile-menu e hero-slider removidos — agora controlados
   por style.css. As regras usavam variáveis antigas (--color-primary) que
   deixavam o menu mobile transparente.) */

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2a3080 100%);
  overflow: hidden;
  position: relative;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.cta-text {
  text-align: center;
  padding: 40px 0;
}

.cta-text h2 {
  color: var(--color-white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-esfera {
  width: 100%;
  max-width: 180px;
  opacity: 0.85;
}

.cta-esfera--left {
  justify-self: start;
  animation: floatLeft 6s ease-in-out infinite;
}

.cta-esfera--right {
  justify-self: end;
  animation: floatRight 6s ease-in-out infinite;
}

@keyframes floatLeft {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-16px) rotate(5deg); }
}

@keyframes floatRight {
  0%, 100% { transform: translateY(-8px) rotate(3deg); }
  50%       { transform: translateY(8px) rotate(-3deg); }
}

/* =========================================
   BANNER SLAI (decorativo)
   ========================================= */
.banner-slai-decoration {
  position: absolute;
  bottom: -40px;
  right: -80px;
  width: 400px;
  opacity: 0.3;
  pointer-events: none;
}

/* =========================================
   ANIMAÇÕES DE ENTRADA
   ========================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* =========================================
   SCROLL TO TOP
   ========================================= */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background-color: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(222, 106, 110, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 99;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-4px);
}

/* =========================================
   RESPONSIVO EXTRAS
   ========================================= */
@media (max-width: 768px) {
  .cta-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-esfera {
    display: none;
  }

  .cta-text {
    padding: 0;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}
