/* App Section Enhancements */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* App Download Section */
#app-download {
  animation: fadeInUp 0.8s ease-out;
}

#app-download h2 {
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
}

#app-download .col-lg-6:first-child {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

#app-download .col-lg-6:last-child {
  animation: slideInRight 0.8s ease-out 0.2s both;
}

#app-download .fa-mobile-alt {
  animation: float 3s ease-in-out infinite;
}

/* Community Section */
#comunidade {
  animation: fadeInUp 0.8s ease-out;
}

#comunidade .col-lg-4 {
  animation: fadeInUp 0.8s ease-out;
}

#comunidade .col-lg-4:nth-child(1) {
  animation-delay: 0.2s;
}

#comunidade .col-lg-4:nth-child(2) {
  animation-delay: 0.4s;
}

#comunidade .col-lg-4:nth-child(3) {
  animation-delay: 0.6s;
}

#comunidade p {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Events Section */
#eventos {
  animation: fadeInUp 0.8s ease-out;
}

#eventos .col-lg-4 {
  animation: fadeInUp 0.8s ease-out;
}

#eventos .col-lg-4:nth-child(1) {
  animation-delay: 0.1s;
}

#eventos .col-lg-4:nth-child(2) {
  animation-delay: 0.2s;
}

#eventos .col-lg-4:nth-child(3) {
  animation-delay: 0.3s;
}

/* Button Improvements */
.btn-empresa, .btn-outline-empresa {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-empresa:hover, .btn-outline-empresa:hover {
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}

/* Typography */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #app-download h2 {
    font-size: 32px;
  }

  #comunidade h2 {
    font-size: 28px;
  }

  #eventos h2 {
    font-size: 28px;
  }

  #app-download .col-lg-6:first-child,
  #app-download .col-lg-6:last-child {
    animation-delay: 0s !important;
  }
}
