.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
  .hero-container {
    gap: var(--spacing-xl);
    align-items: center;
  }
  
  /* Melhorando o espaçamento em telas menores */
  @media (max-width: 768px) {
    .hero-container {
      padding-top: 2rem;
    }
    
  }
  /* Parallax scroll */
  .hero-background {
    transform: translateY(0);
    transition: transform 0.3s ease-out;
  }
  
  .parallax-scroll {
    transform: translateY(var(--scroll-offset));
  }

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animações para cards de serviços */
@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: cardSlideUp 0.6s ease-out forwards;
  opacity: 0;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.service-card:hover .service-icon {
  transform: rotateY(180deg);
}

@keyframes iconRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.service-card:hover .fa-sync-alt {
  animation: iconRotate 2s linear infinite;
}

[data-component] {
    opacity: 1; /* Mudado de 0 para 1 para garantir visibilidade inicial */
}
@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-icon {
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

.icon-background {
  animation: bgPulse 4s ease-in-out infinite;
}

@keyframes featureSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-item {
  opacity: 0;
}

.service-card:hover .feature-item {
  animation: featureSlideIn 0.4s ease-out forwards;
}

.service-card:hover .feature-item:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card:hover .feature-item:nth-child(3) {
  animation-delay: 0.2s;
}

/* Animação da ilustração */
@keyframes illustrationRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.service-illustration {
  animation: illustrationRotate 20s linear infinite;
}

/* Animação de entrada dos cards */
@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

/* Animação do ícone flutuante */
@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-icon {
  animation: iconFloat 3s ease-in-out infinite;
}

/* Animação do background do ícone */
@keyframes bgPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

.icon-background {
  animation: bgPulse 4s ease-in-out infinite;
}

/* Animação das features */
@keyframes featureSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-item {
  opacity: 0;
}

.service-card:hover .feature-item {
  animation: featureSlideIn 0.4s ease-out forwards;
}

.service-card:hover .feature-item:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card:hover .feature-item:nth-child(3) {
  animation-delay: 0.2s;
}

/* Animação da ilustração */
@keyframes illustrationRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.service-illustration {
  animation: illustrationRotate 20s linear infinite;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transform: skewX(-45deg);
  animation: shimmer 4s infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::after {
  opacity: 1;
}

/* Animação do CTA */
@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(75, 123, 253, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(75, 123, 253, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(75, 123, 253, 0);
  }
}

.service-cta .btn {
  animation: ctaPulse 2s infinite;
}

/* Animação dos ícones das features */
@keyframes featureIconSpin {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.feature-item:hover i {
  animation: featureIconSpin 0.5s ease-in-out;
}

/* Animação de foco */
@keyframes focusRing {
  0% {
    outline-offset: 4px;
    outline-color: rgba(75, 123, 253, 0.6);
  }
  100% {
    outline-offset: 8px;
    outline-color: rgba(75, 123, 253, 0);
  }
}

.service-card:focus-within {
  animation: focusRing 1s ease infinite;
}

/* Animação do gradiente de fundo */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.services {
  background-size: 200% 200%;
  animation: gradientFlow 15s ease infinite;
}

.service-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: particleFade 1s ease-out forwards;
}

@keyframes particleFade {
  0% {
      transform: scale(0) translateY(0);
      opacity: 0.8;
  }
  100% {
      transform: scale(1) translateY(-20px);
      opacity: 0;
  }
}

/* Efeito de pulse ao clicar */
.service-card.pulse {
  animation: cardPulse 0.5s ease-out;
}

@keyframes cardPulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}

.service-icon i {
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.service-card:hover .service-icon i {
  transform: rotateY(180deg);
  color: var(--accent-blue);
}

/* Efeito de onda no background */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, 
                            rgba(75, 123, 253, 0.1) 0%,
                            transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
  animation: waveEffect 2s infinite;
}

@keyframes waveEffect {
  0% {
      transform: scale(0.95);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(0.95);
  }
}

/* Efeito de destaque nos features */
.feature-item {
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(75, 123, 253, 0.2);
  background: linear-gradient(135deg, 
                            rgba(248, 249, 250, 0.9),
                            rgba(255, 255, 255, 0.9));
  transform: translateX(10px);
}

/* Efeito de foco acessível */
.service-card:focus-within {
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-blue);
}

/* Animação do CTA */
.service-cta .btn {
  position: relative;
  overflow: hidden;
}

.service-cta .btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
  );
  transform: rotate(45deg);
  animation: buttonShine 3s infinite;
}

@keyframes buttonShine {
  0% {
      transform: translateX(-100%) rotate(45deg);
  }
  100% {
      transform: translateX(100%) rotate(45deg);
  }
}

@keyframes reformPulse {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

.service-card[data-aos-delay="200"] .icon-background {
  animation: reformPulse 3s ease-in-out infinite;
}

/* Animações para seção de contato */
.contact-form-container {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-container.animate {
  opacity: 1;
  transform: scale(1);
}

.form-group input,
.form-group textarea {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Efeitos de hover nos botões */
.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Scroll reveal animation */
[data-scroll] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll="fade-up"] {
  transform: translateY(30px);
}

[data-scroll="fade-right"] {
  transform: translateX(-30px);
}

[data-scroll="fade-left"] {
  transform: translateX(30px);
}

[data-scroll="scale"] {
  transform: scale(0.95);
}

[data-scroll].in-view {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Animações do Card de Prensa */
@keyframes pressAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gearRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3);
  }
}

.highlight-card .premium-badge {
  animation: badgePulse 2s ease-in-out infinite;
}

.highlight-card .gear {
  animation: gearRotate 4s linear infinite;
}

.highlight-card:hover .press-animation::before {
  animation: pressAnimation 2s ease-in-out infinite;
}

/* Efeito de Partículas */
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(75, 123, 253, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-card:hover::before {
  opacity: 1;
}

/* Animação do gradiente de fundo */