/* These styles are generated from project.scss. */

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

/* Custom styles */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.feature-icon-wrapper {
  background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  color: white;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: bold;
}

.connection-line {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background: #e9ecef;
  width: 80%;
  z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .connection-line {
      display: none;
  }
}

/* Añade esto a tu project.css */
.hero-section {
  position: relative;
  overflow: hidden;
}

.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

.feature-icon-wrapper {
  background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  color: white;
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.connection-line {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background: #e9ecef;
  width: 80%;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .connection-line {
      display: none;
  }

  .hero-section {
      text-align: center;
  }

  .hero-section .btn-group {
      justify-content: center;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Modal customization */
.modal-content {
  border-radius: 1rem;
}

.modal-header {
  border-bottom: none;
}

.modal-footer {
  border-top: none;
}

/* New classes to replace inline styles */
.hero-gradient-bg {
  background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
}

.logo-height-40 {
  height: 40px;
}

.dashboard-max-height {
  max-height: 300px;
}

.connection-line-60 {
  width: 60%;
}

.integration-logo-height {
  height: 50px;
}

.cta-gradient-bg {
  background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
}
