/* ============================================
   PÁGINA DE COMUNIDAD / CHAT
   ============================================ */

.comunidad-container {
  max-width: 1200px;
  margin: 90px auto 0;
  padding: 40px 20px;
}

.comunidad-hero {
  text-align: center;
  margin-bottom: 60px;
}

.comunidad-hero h1 {
  font-size: 3rem;
  color: #2d5016;
  margin-bottom: 20px;
}

.comunidad-hero p {
  font-size: 1.3rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Coming Soon Section */
.coming-soon {
  background: linear-gradient(135deg, #f5f5f5, #e8f5e9);
  padding: 80px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.coming-soon-icon {
  font-size: 8rem;
  margin-bottom: 30px;
  animation: bounce 2s infinite;
}

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

.coming-soon h2 {
  font-size: 2.5rem;
  color: #2d5016;
  margin-bottom: 20px;
}

.coming-soon p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
  margin: 20px auto;
  line-height: 1.8;
}

/* Features Preview Grid */
.features-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-preview {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-preview-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.feature-preview h3 {
  color: #2d5016;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.feature-preview p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Notify Form */
.notify-form {
  max-width: 500px;
  margin: 60px auto 0;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.notify-form h3 {
  color: #2d5016;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.notify-description {
  color: #666;
  margin-bottom: 25px;
}

.notify-form .form-group {
  margin-bottom: 20px;
}

.notify-form .form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
}

.notify-form .form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.notify-form .form-group input:focus {
  outline: none;
  border-color: #4CAF50;
}

.btn-notify {
  width: 100%;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-notify:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.notify-message {
  margin-top: 20px;
  color: #4CAF50;
  display: none;
  font-weight: 600;
}

.notify-message.show {
  display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .comunidad-hero h1 {
    font-size: 2rem;
  }
  
  .comunidad-hero p {
    font-size: 1.1rem;
  }
  
  .coming-soon {
    padding: 60px 20px;
  }
  
  .coming-soon-icon {
    font-size: 5rem;
  }
  
  .coming-soon h2 {
    font-size: 1.8rem;
  }
  
  .coming-soon p {
    font-size: 1rem;
  }
  
  .features-preview {
    grid-template-columns: 1fr;
  }
  
  .notify-form {
    padding: 30px 20px;
  }
}