/* Mobile y tablet: ancho completo */
.btn-submit-feedback {
    inline-size: 100%;
    margin-block-start: var(--size-6);
    margin-bottom: 2rem;
  }
  
  .btn-submit-feedback .btn {
    inline-size: 100%;
    max-inline-size: 100%;
    cursor: grab;
  }
  
/* Feedback Page Layout */
.feedback-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Info Section */
.feedback-info-section {
  margin-bottom: 3rem;
  text-align: center;
}

.feedback-info-content {
  max-width: 800px;
  margin: 0 auto;
}

.feedback-info-icon {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.feedback-info-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.feedback-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}

.feedback-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--rounded-lg);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Estilo específico para el tercer card */
.feedback-info-card:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
}

.feedback-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feedback-info-card-icon {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.feedback-info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.feedback-info-card p {
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Form Section */
.feedback-form-section {
  background: var(--color-surface);
  border-radius: var(--rounded-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.feedback-form-container {
  text-align: center;
}

.feedback-form-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.feedback-form-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* Create turbo stream style */
.create-feedback-container {
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.create-feedback-container h2 {
  font-size: 1.7rem;
}

.create-feedback-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Media Queries */
@media screen and (min-width: 834px) and (min-height: 1194px) {
  #feedback_container {
    margin: 5rem auto;
  }
}

@media (min-width: 64rem) {
  .btn-submit-feedback {
    display: flex;
    justify-content: center;
    margin-inline: var(--size-10);
  }

  .btn-submit-feedback .btn {
    inline-size: 24rem;
    max-inline-size: 100%;
  }
}

@media screen and (min-width: 920px) {
  .create-feedback-container h2 {
    font-size: 2rem;
  }

  .create-feedback-container p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}

@media screen and (min-height: 900px) {
  .create-feedback-container {
    min-height: 61vh;
  }
  
  .create-feedback-container h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .create-feedback-container p {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .feedback-page {
    padding: 1rem;
  }

  .feedback-info-cards {
    grid-template-columns: 1fr;
  }

  .feedback-info-card:nth-child(3) {
    max-width: none;
  }

  .feedback-form-section {
    padding: 1.5rem;
  }
}