/* ================================
   PÁGINA COMING SOON - PANEL EMPRESARIAL
================================= */
.coming-soon-section {
  min-height: 100vh;
  padding: 140px 32px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Decorative background elements */
.coming-soon-section::before,
.coming-soon-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.05) 0%, rgba(233, 30, 99, 0.05) 100%);
  z-index: 0;
}

.coming-soon-section::before {
  width: 500px;
  height: 500px;
  top: -250px;
  right: -150px;
}

.coming-soon-section::after {
  width: 400px;
  height: 400px;
  bottom: -200px;
  left: -100px;
}

.coming-soon-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.coming-soon-content {
  text-align: center;
}

/* Icon */
.coming-soon-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff1744 0%, #e91e63 100%);
  border-radius: 30px;
  box-shadow: 0 12px 40px rgba(255, 23, 68, 0.3);
  animation: float 3s ease-in-out infinite;
}

.coming-soon-icon svg {
  width: 60px;
  height: 60px;
  color: #fff;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Badge */
.coming-soon-badge {
  display: inline-block;
  background: rgba(255, 23, 68, 0.1);
  color: #ff1744;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 2px solid rgba(255, 23, 68, 0.2);
}

/* Title */
.coming-soon-title {
  font-size: 64px;
  font-weight: 700;
  color: #111;
  margin: 0 0 24px 0;
  line-height: 1.1;
  background: linear-gradient(135deg, #ff1744 0%, #e91e63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-subtitle {
  font-size: 20px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 80px;
  line-height: 1.6;
}

/* Features Grid */
.coming-soon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  background: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 23, 68, 0.15);
  border-color: rgba(255, 23, 68, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(255, 23, 68, 0.1) 0%, rgba(233, 30, 99, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #ff1744 0%, #e91e63 100%);
  transform: scale(1.1);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: #ff1744;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon svg {
  color: #fff;
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.feature-item p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Notify Form */
.notify-form {
  max-width: 700px;
  margin: 0 auto 60px;
  background: #fff;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(255, 23, 68, 0.12);
  border: 2px solid rgba(255, 23, 68, 0.1);
}

.notify-form h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.notify-form > p {
  font-size: 16px;
  color: #666;
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.notify-form-container {
  display: flex;
  gap: 12px;
}

.notify-input {
  flex: 1;
  padding: 16px 24px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
}

.notify-input:focus {
  border-color: #ff1744;
  box-shadow: 0 0 0 4px rgba(255, 23, 68, 0.1);
}

.notify-button {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ff1744 0%, #e91e63 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 23, 68, 0.3);
  white-space: nowrap;
}

.notify-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 23, 68, 0.4);
}

.notify-button:active {
  transform: translateY(0);
}

/* Contact Info */
.contact-info {
  font-size: 16px;
  color: #666;
  line-height: 2;
}

.contact-info a {
  color: #ff1744;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}

.contact-info a:hover {
  border-bottom-color: #ff1744;
}

/* ================================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .coming-soon-section {
    padding: 100px 20px 60px;
  }

  .coming-soon-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
  }

  .coming-soon-icon svg {
    width: 50px;
    height: 50px;
  }

  .coming-soon-badge {
    font-size: 12px;
    padding: 8px 20px;
    margin-bottom: 20px;
  }

  .coming-soon-title {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .coming-soon-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .coming-soon-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .feature-item {
    padding: 32px 24px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature-item h3 {
    font-size: 18px;
  }

  .feature-item p {
    font-size: 14px;
  }

  .notify-form {
    padding: 32px 24px;
    margin-bottom: 40px;
  }

  .notify-form h2 {
    font-size: 24px;
  }

  .notify-form > p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .notify-form-container {
    flex-direction: column;
    gap: 12px;
  }

  .notify-input,
  .notify-button {
    padding: 14px 24px;
    font-size: 15px;
  }

  .contact-info {
    font-size: 14px;
  }

  .coming-soon-section::before {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
  }

  .coming-soon-section::after {
    width: 250px;
    height: 250px;
    bottom: -125px;
    left: -75px;
  }
}
