/* Estilos específicos para el contacto */
.contact-section {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-radius: 8px;
  max-width: 30rem;
  text-align: center;
  margin: 2rem auto;
  font-family: Arial, sans-serif;
}

.contact-section h3 {
  font-size: 1.8rem;
  color: #006600;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.contact-form {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-size: 1rem;
  color: #333;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 0;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #006600;
  box-shadow: 0 0 5px rgba(0, 102, 0, 0.3);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  background-color: #d32f2f;
  color: white;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #b71c1c;
}

/* Media Queries para Responsividad */
@media (max-width: 480px) {
  .contact-section {
    padding: 1.5rem;
    margin: 1rem auto;
  }

  .contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .contact-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 0.95rem;
    padding: 0.7rem;
  }

  .contact-form textarea {
    min-height: 80px;
  }
}
