/* ========================================
   Landing Page Styles
   ======================================== */

.hero-section {
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

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

.features-section {
  background: white;
}

.feature-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  border-color: #e67e22;
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(230, 126, 34, 0.2);
}

.feature-icon {
  color: #e67e22;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.pricing-card {
  transition: all 0.3s ease;
  border-radius: 20px;
  overflow: hidden;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.cta-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.mvp-section .card {
  border: none;
  border-radius: 15px;
}

/* Responsividade */
@media (max-width: 992px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-image-container {
    height: 300px;
  }
  
  .floating-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
}
